-
Notifications
You must be signed in to change notification settings - Fork 480
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
Use OTEL collector image from GHCR #732
Conversation
@@ -84,7 +84,7 @@ func main() { | |||
pflag.BoolVar(&enableLeaderElection, "enable-leader-election", false, | |||
"Enable leader election for controller manager. "+ | |||
"Enabling this will ensure there is only one active controller manager.") | |||
pflag.StringVar(&collectorImage, "collector-image", fmt.Sprintf("otel/opentelemetry-collector:%s", v.OpenTelemetryCollector), "The default OpenTelemetry collector image. This image is used when no image is specified in the CustomResource.") | |||
pflag.StringVar(&collectorImage, "collector-image", fmt.Sprintf("ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector:%s", v.OpenTelemetryCollector), "The default OpenTelemetry collector image. This image is used when no image is specified in the CustomResource.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it available?
i tried (podman/docker):
run --rm -it otel/opentelemetry-collector # worked
run --rm -it ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector
Trying to pull ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector:latest...
...
reading manifest latest in ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector: manifest unknown
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR should go in after #719
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Signed-off-by: Pavol Loffay <[email protected]>
73aae4a
to
df6409e
Compare
Signed-off-by: Pavol Loffay <[email protected]>
Signed-off-by: Pavol Loffay [email protected]
Depends on #719