-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow semantic conventions for OpenTelemetry instruments.
This also uses GlobalOpenTelemetry to reuse the OpenTelemetry instance created by the Java agent.
- Loading branch information
Showing
38 changed files
with
579 additions
and
1,515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 2024 The Cross-Media Measurement Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: Install OpenTelemetry Operator | ||
description: | | ||
Installs OpenTelemetry Kubernetes Operator into a cluster. | ||
Requirements: | ||
* `kubectl` points to cluster | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Install cert-manager | ||
shell: bash | ||
run: | | ||
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/cert-manager.yaml | ||
for deployment in $(kubectl --namespace=cert-manager get deployments -o name); do | ||
kubectl --namespace=cert-manager rollout status "$deployment" --timeout=5m | ||
done | ||
- name: Install OpenTelemetry operator | ||
shell: bash | ||
run: | | ||
kubectl apply -f https://github.com/open-telemetry/opentelemetry-operator/releases/download/v0.99.0/opentelemetry-operator.yaml | ||
for deployment in $(kubectl --namespace=opentelemetry-operator-system get deployments -o name); do | ||
kubectl --namespace=opentelemetry-operator-system rollout status "$deployment" --timeout=5m | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.