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
2 changes: 1 addition & 1 deletion Containerfile.external-dns-operator
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest@sha256:f0ed53122215c6ccc
LABEL maintainer="Red Hat, Inc."
LABEL com.redhat.component="external-dns-operator-container"
LABEL name="external-dns-operator"
LABEL version="1.2.3"
LABEL version="1.2.4"
LABEL cpe="cpe:/a:redhat:ext_dns_optr:1.2::el8"
WORKDIR /
COPY --from=builder /workspace/bin/external-dns-operator /
Expand Down
4 changes: 2 additions & 2 deletions Containerfile.external-dns-operator-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ARG FULL_COMMIT
ARG GIT_URL

LABEL name=external-dns-operator-bundle
LABEL version="1.2.3"
LABEL version="1.2.4"
LABEL cpe="cpe:/a:redhat:ext_dns_optr:1.2::el8"
LABEL maintainer='NetworkEdge team <aos-network-edge-staff@redhat.com>'
LABEL io.k8s.display-name='ExternalDNS Operator'
Expand All @@ -53,7 +53,7 @@ LABEL io.openshift.tags='networking,dns'
LABEL io.openshift.build.commit.id=${FULL_COMMIT}
LABEL io.openshift.build.source-location=${GIT_URL}
LABEL io.openshift.build.commit.url=${GIT_URL}/commit/${FULL_COMMIT}
LABEL release="1.2.3"
LABEL release="1.2.4"
LABEL description="Operator bundle for the ExternalDNS Operator"
LABEL distribution-scope=public
LABEL url="https://github.com/openshift/external-dns-operator"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.3
1.2.4
2 changes: 1 addition & 1 deletion bundle-hack/container_digest.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Do not remove comment lines, they are there to reduce conflicts
# Operator
export OPERATOR_IMAGE_PULLSPEC='registry.redhat.io/edo/external-dns-rhel8-operator@sha256:48281ccd048d6a03048fd7486a0fb1988d5ab35194bd683de9c211d076790466'
export OPERATOR_IMAGE_PULLSPEC='registry.redhat.io/edo/external-dns-rhel8-operator@sha256:70a618a7bf0e97328a5d2c759964d5bc71d786a327a29ec8f4c2378a3ea1eca0'
# Controller
export OPERAND_IMAGE_PULLSPEC='registry.redhat.io/edo/external-dns-rhel8@sha256:5834a35c9bb3d10e45c1e02b31ba3c949f0bdca56d4845115f4c5ee1f2259fa4'
# kube-rbac-proxy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ metadata:
features.operators.openshift.io/token-auth-aws: "false"
features.operators.openshift.io/token-auth-azure: "false"
features.operators.openshift.io/token-auth-gcp: "false"
olm.skipRange: <1.2.3
olm.skipRange: <1.2.4
operatorframework.io/suggested-namespace: external-dns-operator
operators.openshift.io/infrastructure-features: '["disconnected","proxy-aware"]'
operators.openshift.io/valid-subscription: '["OpenShift Kubernetes Engine", "OpenShift
Expand All @@ -319,7 +319,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/openshift/external-dns-operator
support: Red Hat, Inc.
name: external-dns-operator.v1.2.3
name: external-dns-operator.v1.2.4
namespace: external-dns-operator
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -598,7 +598,7 @@ spec:
minKubeVersion: 1.22.0
provider:
name: Red Hat, Inc.
version: 1.2.3
version: 1.2.4
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
1 change: 1 addition & 0 deletions hack/sync-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ for containerfile in "${containerfiles[@]}"; do
else
echo "[UPDATE] $(basename "$containerfile"): updating from $current_version to $version"
sed -i "s/version=\"[^\"]*\"/version=\"$version\"/" "$containerfile"
sed -i "s/release=\"[^\"]*\"/release=\"$version\"/" "$containerfile"
any_updated=true
fi
done
Expand Down