Image Overview: opentelemetry-collector-contrib-fips

Overview: opentelemetry-collector-contrib-fips Chainguard Image

Minimal image with opentelemetry-collector-contrib (FIPS-enabled).

Download this Image

The image is available on cgr.dev:

docker pull cgr.dev/chainguard-private/opentelemetry-collector-contrib-fips:latest

Using this image

Chainguard cgr.dev/chainguard/opentelemetry-collector-contrib-fips is a FIPS-enabled drop in replacement for the upstream image, tested using the the community helm chart.

helm repo add open-telemetry https://open-telemetry.github.io/opentelemetry-helm-charts
helm install my-opentelemetry-collector open-telemetry/opentelemetry-collector \
   --set mode=<daemonset|deployment|statefulset> \
   --set image.repository=cgr.dev/chainguard/opentelemetry-collector-contrib-fips \
   --set image.tag=latest

To use custom configuration it is easier to use a values.yaml file:

mode: daemonset
configMap:
  create: false
image:
  tag: latest
  repository: cgr.dev/chainguard/opentelemetry-collector-contrib-fips
command:
  extraArgs:
    - "--config=/conf/custom-config.yaml"
extraVolumeMounts:
  - name: "custom-vm"
    mountPath: "/conf"
extraVolumes:
  - name: "custom-vm"
    configMap:
      name: "custom"
helm repo add open-telemetry https://open-telemetry.github.io/opentelemetry-helm-charts
helm install open-telemetry opentelemetry/opentelemetry-collector --namespace open-telemetry-custom-config -f values.yaml

Last updated: 2024-04-11 12:38