mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 18:59:09 +00:00
Rename Helm chart and Docker image and move to GHCR (#233)
This change does a few things, none of these are breaking. It changes the registry from Docker Hub to GHCR, as we dont have the same rate limiting issues with unauthenticated pulls. It changes the release process to push the Helm chart as an OCI artifact removing the need for GH pages. It renames both the image and chart from kubernetes-operator to netbird-operator. This name is cleaner and easier for people to understand in a sea of Helm charts. Funnily enough this is not a breaking change as the release name is used and not the chart name. So in place upgrades just work. Fixes #207 Signed-off-by: Philip Laine <philip.laine@gmail.com>
This commit is contained in:
+3
-3
@@ -2,10 +2,10 @@ FROM gcr.io/distroless/static:nonroot
|
||||
ARG TARGETOS
|
||||
ARG TARGETARCH
|
||||
LABEL org.opencontainers.image.title="NetBird Operator" \
|
||||
org.opencontainers.image.description="Kubernetes operator for NetBird." \
|
||||
org.opencontainers.image.description="Kubernetes operator for NetBird" \
|
||||
org.opencontainers.image.source="https://github.com/netbirdio/kubernetes-operator" \
|
||||
org.opencontainers.image.vendor="NetBird" \
|
||||
org.opencontainers.image.licenses="BSD-3-Clause"
|
||||
COPY bin/${TARGETOS}-${TARGETARCH}/netbird-operator .
|
||||
COPY bin/${TARGETOS}-${TARGETARCH}/netbird-operator /usr/local/bin/
|
||||
USER 65532:65532
|
||||
ENTRYPOINT ["/netbird-operator"]
|
||||
ENTRYPOINT ["netbird-operator"]
|
||||
|
||||
Reference in New Issue
Block a user