Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[resource] add openshift platform to all supported cloud providers #2985

Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ release.

### Resource

- Extend Cloud Platform Enum with OpenShift entry for all supported cloud providers.
([#2985](https:/open-telemetry/opentelemetry-specification/pull/2985))

### Semantic Conventions

- Add IBM Cloud as a cloud provider.
Expand Down
12 changes: 12 additions & 0 deletions semantic_conventions/resource/cloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ groups:
- id: alibaba_cloud_fc
value: 'alibaba_cloud_fc'
brief: Alibaba Cloud Function Compute
- id: alibaba_cloud_openshift
value: 'alibaba_cloud_openshift'
brief: Red Hat OpenShift on Alibaba Cloud
- id: aws_ec2
value: 'aws_ec2'
brief: AWS Elastic Compute Cloud
Expand All @@ -84,6 +87,9 @@ groups:
- id: aws_app_runner
value: 'aws_app_runner'
brief: AWS App Runner
- id: aws_openshift
value: 'aws_openshift'
brief: Red Hat OpenShift on AWS (ROSA)
- id: azure_vm
value: 'azure_vm'
brief: Azure Virtual Machines
Expand All @@ -99,6 +105,9 @@ groups:
- id: azure_app_service
value: 'azure_app_service'
brief: Azure App Service
- id: azure_openshift
value: 'azure_openshift'
brief: Azure Red Hat OpenShift
- id: gcp_compute_engine
value: 'gcp_compute_engine'
brief: Google Cloud Compute Engine (GCE)
Expand All @@ -114,6 +123,9 @@ groups:
- id: gcp_app_engine
value: 'gcp_app_engine'
brief: Google Cloud App Engine (GAE)
- id: google_cloud_openshift
value: 'google_cloud_openshift'
brief: Red Hat OpenShift on Google Cloud
joaopgrassi marked this conversation as resolved.
Show resolved Hide resolved
- id: ibm_cloud_openshift
value: 'ibm_cloud_openshift'
brief: Red Hat OpenShift on IBM Cloud
Expand Down
4 changes: 4 additions & 0 deletions specification/resource/semantic_conventions/cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,26 @@
|---|---|
| `alibaba_cloud_ecs` | Alibaba Cloud Elastic Compute Service |
| `alibaba_cloud_fc` | Alibaba Cloud Function Compute |
| `alibaba_cloud_openshift` | Red Hat OpenShift on Alibaba Cloud |
| `aws_ec2` | AWS Elastic Compute Cloud |
| `aws_ecs` | AWS Elastic Container Service |
| `aws_eks` | AWS Elastic Kubernetes Service |
| `aws_lambda` | AWS Lambda |
| `aws_elastic_beanstalk` | AWS Elastic Beanstalk |
| `aws_app_runner` | AWS App Runner |
| `aws_openshift` | Red Hat OpenShift on AWS (ROSA) |
| `azure_vm` | Azure Virtual Machines |
| `azure_container_instances` | Azure Container Instances |
| `azure_aks` | Azure Kubernetes Service |
| `azure_functions` | Azure Functions |
| `azure_app_service` | Azure App Service |
| `azure_openshift` | Azure Cloud Red Hat OpenShift |
carlosalberto marked this conversation as resolved.
Show resolved Hide resolved
| `gcp_compute_engine` | Google Cloud Compute Engine (GCE) |
| `gcp_cloud_run` | Google Cloud Run |
| `gcp_kubernetes_engine` | Google Cloud Kubernetes Engine (GKE) |
| `gcp_cloud_functions` | Google Cloud Functions (GCF) |
| `gcp_app_engine` | Google Cloud App Engine (GAE) |
| `google_cloud_openshift` | Red Hat OpenShift on Google Cloud |
| `ibm_cloud_openshift` | Red Hat OpenShift on IBM Cloud |
| `tencent_cloud_cvm` | Tencent Cloud Cloud Virtual Machine (CVM) |
| `tencent_cloud_eks` | Tencent Cloud Elastic Kubernetes Service (EKS) |
Expand Down