Replies: 1 comment
-
Hey there, @ryebridge! I'm here to help you with any bugs, questions, or contributions. Let's tackle this together while we wait for a human maintainer. The Jaeger 1.61.0.0 Operator is not found because the URL provided in the installation instructions is incorrect. The URL uses a placeholder that is not replaced with the actual version number, leading to a 404 Not Found error. The incorrect command: kubectl create -f https://github.com/jaegertracing/jaeger-operator/releases/download/v1.61.0.0/jaeger-operator.yaml -n observability To fix this, replace kubectl create -f https://github.com/jaegertracing/jaeger-operator/releases/download/v1.61.0/jaeger-operator.yaml -n observability Alternatively, you can follow the updated installation instructions from the Jaeger documentation, which use static URLs for the deployment files: kubectl create namespace observability
kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/main/deploy/crds/jaegertracing.io_jaegers_crd.yaml
kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/main/deploy/service_account.yaml
kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/main/deploy/role.yaml
kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/main/deploy/role_binding.yaml
kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-operator/main/deploy/operator.yaml This method ensures that you are using the correct and up-to-date URLs for the Jaeger Operator installation [1][2][3]. |
Beta Was this translation helpful? Give feedback.
-
I followed the instructions online for installing the operator but it can't find it ?!
kubectl create -f https://github.com/jaegertracing/jaeger-operator/releases/download/v1.61.0.0/jaeger-operator.yaml -n observability
error: unable to read URL "https://github.com/jaegertracing/jaeger-operator/releases/download/v1.61.0.0/jaeger-operator.yaml", server reported 404 Not Found, status code=404
Beta Was this translation helpful? Give feedback.
All reactions