@@ -32,24 +32,24 @@ ARG GOARCH
3232ARG FIPS_ENABLED
3333RUN echo "FIPS_ENABLED is: $FIPS_ENABLED"
3434RUN if [ "$FIPS_ENABLED" = "true" ]; then \
35- CGO_ENABLED=1 GOEXPERIMENT=boringcrypto GOOS=linux GOARCH=${GOARCH} go build -tags fips -a -ldflags "${LDFLAGS}" -o manager cmd/main.go; \
35+ CGO_ENABLED=1 GOEXPERIMENT=boringcrypto GOOS=linux GOARCH=${GOARCH} go build -tags fips -a -ldflags "${LDFLAGS}" -o manager cmd/main.go; \
3636 else \
37- CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} go build -a -ldflags "${LDFLAGS}" -o manager cmd/main.go; \
37+ CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} go build -a -ldflags "${LDFLAGS}" -o manager cmd/main.go; \
3838 fi
3939
4040RUN CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} go build -a -ldflags "${LDFLAGS}" -o helpers cmd/helpers/main.go
4141RUN CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} go build -a -ldflags "${LDFLAGS}" -o yaml-mapper cmd/yaml-mapper/main.go
4242
43- FROM registry.access.redhat.com/ubi9 /ubi-minimal:latest AS certs
43+ FROM registry.access.redhat.com/ubi10 /ubi-minimal:latest AS certs
4444
45- FROM registry.access.redhat.com/ubi9 /ubi-micro:latest
45+ FROM registry.access.redhat.com/ubi10 /ubi-micro:latest
4646
4747LABEL name="datadog/operator"
4848LABEL vendor="Datadog Inc."
4949LABEL summary="The Datadog Operator aims at providing a new way to deploy the Datadog Agent on Kubernetes"
5050LABEL description="Datadog provides a modern monitoring and analytics platform. Gather \
51- metrics, logs and traces for full observability of your Kubernetes cluster with \
52- Datadog Operator."
51+ metrics, logs and traces for full observability of your Kubernetes cluster with \
52+ Datadog Operator."
5353LABEL maintainer="Datadog Inc."
5454
5555# ubi-micro variant does not have CA certificates installed
0 commit comments