Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
* [Kubernetes / OpenShift](setup/install-stackstate/kubernetes_openshift/README.md)
* [Kubernetes install](setup/install-stackstate/kubernetes_openshift/kubernetes_install.md)
* [OpenShift install](setup/install-stackstate/kubernetes_openshift/openshift_install.md)
* [Alibaba Cloud ACK install](setup/install-stackstate/kubernetes_openshift/ack.md)
* [Required Permissions](setup/install-stackstate/kubernetes_openshift/required_permissions.md)
* [Override default configuration](setup/install-stackstate/kubernetes_openshift/customize_config.md)
* [Configure storage](setup/install-stackstate/kubernetes_openshift/storage.md)
Expand Down
6 changes: 3 additions & 3 deletions setup/otel/collector.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ docker run \
-p 127.0.0.1:4317:4317 \
-p 127.0.0.1:4318:4318 \
-v $(pwd)/config.yaml:/etc/otelcol-contrib/config.yaml \
otel/opentelemetry-collector-contrib:latest
ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:latest
```

This uses the collector contrib image which includes all contributed components (receivers, processors, etc.). A smaller, more limited version of the image is also available, but it has only a very limited set of components available:
Expand All @@ -215,10 +215,10 @@ docker run \
-p 127.0.0.1:4317:4317 \
-p 127.0.0.1:4318:4318 \
-v $(pwd)/config.yaml:/etc/otelcol/config.yaml \
otel/opentelemetry-collector:latest
ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector:latest
```

Note that the Kubernetes installation defaults to the Kubernetes distribution of the collector image, `otel/opentelemetry-collector-k8s`, which has more components than the basic image, but less than the contrib image. If you run into missing components with that image you can simply switch it to use the contrib image , `otel/opentelemetry-collector-contrib`, instead.
Note that the Kubernetes installation defaults to the Kubernetes distribution of the collector image, `ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-k8s`, which has more components than the basic image, but less than the contrib image. If you run into missing components with that image you can simply switch it to use the contrib image , `ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib`, instead.

# Troubleshooting

Expand Down
4 changes: 2 additions & 2 deletions setup/otel/getting-started/getting-started-k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ extraEnvsFrom:
name: open-telemetry-collector
mode: deployment
image:
# Use the collector container image that has all components important for k8s. In case of missing components the otel/opentelemetry-collector-contrib image can be used which
# Use the collector container image that has all components important for k8s. In case of missing components the ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib image can be used which
# has all components in the contrib repository: https://github.com/open-telemetry/opentelemetry-collector-contrib
repository: "otel/opentelemetry-collector-k8s"
repository: "ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-k8s"
ports:
metrics:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion setup/otel/getting-started/getting-started-lambda.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extraEnvsFrom:
- secretRef:
name: open-telemetry-collector
image:
repository: "otel/opentelemetry-collector-k8s"
repository: "ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-k8s"

config:
receivers:
Expand Down
4 changes: 4 additions & 0 deletions setup/otel/otel-airgapped.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
description: SUSE Observability
---