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 PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ layout:
plugins:
manifests.sdk.operatorframework.io/v2: {}
scorecard.sdk.operatorframework.io/v2: {}
projectName: external-secrets-operator
projectName: openshift-external-secrets-operator
repo: github.com/openshift/external-secrets-operator
resources:
- api:
Expand Down
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM scratch
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=external-secrets-operator
LABEL operators.operatorframework.io.bundle.package.v1=openshift-external-secrets-operator
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.39.0
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ metadata:
categories: Security
console.openshift.io/disable-operand-delete: "true"
containerImage: openshift.io/external-secrets-operator:latest
createdAt: "2026-01-20T12:25:11Z"
createdAt: "2026-02-05T14:59:58Z"
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
Expand Down Expand Up @@ -252,7 +252,7 @@ metadata:
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
name: external-secrets-operator.v1.1.0
name: openshift-external-secrets-operator.v1.1.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -842,4 +842,5 @@ spec:
name: external-secrets
- image: ghcr.io/external-secrets/bitwarden-sdk-server:v0.5.2
name: bitwarden-sdk-server
replaces: external-secrets-operator.v1.0.0
version: 1.1.0
2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ annotations:
operators.operatorframework.io.bundle.mediatype.v1: registry+v1
operators.operatorframework.io.bundle.manifests.v1: manifests/
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: external-secrets-operator
operators.operatorframework.io.bundle.package.v1: openshift-external-secrets-operator
operators.operatorframework.io.bundle.channels.v1: alpha
operators.operatorframework.io.metrics.builder: operator-sdk-v1.39.0
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ metadata:
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
name: external-secrets-operator.v1.1.0
name: openshift-external-secrets-operator.v1.1.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -240,4 +240,5 @@ spec:
minKubeVersion: 1.32.0
provider:
name: Red Hat, Inc.
replaces: external-secrets-operator.v1.0.0
version: 1.1.0
2 changes: 1 addition & 1 deletion config/manifests/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# These resources constitute the fully configured set of manifests
# used to generate the 'manifests/' directory in a bundle.
resources:
- bases/external-secrets-operator.clusterserviceversion.yaml
- bases/openshift-external-secrets-operator.clusterserviceversion.yaml
- ../default
- ../samples
- ../scorecard
Expand Down
2 changes: 1 addition & 1 deletion hack/check-git-diff-clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o errexit

# Ignore any expected automated changes like the timestamp update in clusterserviceversion file.
ignore_expected_changes() {
csv_filename="bundle/manifests/external-secrets-operator.clusterserviceversion.yaml"
csv_filename="bundle/manifests/openshift-external-secrets-operator.clusterserviceversion.yaml"
if [[ -f "${csv_filename}" ]]; then
diff=$(git diff --no-ext-diff --unified=0 "${csv_filename}" 2>/dev/null | grep -E "^\+" | grep -Ev "createdAt|clusterserviceversion" || true)
if [[ -z "${diff}" ]]; then
Expand Down