We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/controlplaneio-fluxcd/flux-operator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ARG VERSION
FROM --platform=${BUILDPLATFORM} ghcr.io/controlplaneio-fluxcd/flux-operator:${VERSION} AS distroless
FROM --platform=${BUILDPLATFORM} registry.access.redhat.com/ubi8/ubi-minimal
### Required OpenShift Labels
LABEL name="flux-operator" \
vendor="ControlPlane" \
version="${VERSION}" \
release="1" \
summary="This is the flux-operator image." \
description="This image contains the operator of ControlPlane Enterprise for Flux."
WORKDIR /
# Copy the license.
COPY LICENSE /licenses/LICENSE.txt
# Copy the manifests data.
COPY config/data/ /data/
# Copy the operator binary.
COPY --from=distroless flux-operator .
# Run the operator as the default user.
ENTRYPOINT ["/flux-operator"]