-
Notifications
You must be signed in to change notification settings - Fork 15
docs(security): add opt-in Manual installPlanApproval overlays (FIND-010) #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pinikomarov
merged 1 commit into
openstack-k8s-operators:main
from
pinikomarov:glasswing/find-010-manual-subscription-note
Jul 13, 2026
+77
−0
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
components/secrets/external-secrets-operator/manual-approval/kustomization.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| --- | ||
| # Opt-in overlay: switch the ESO subscription to Manual installPlanApproval. | ||
| # | ||
| # Include this component AFTER the base ESO component (community or redhat) | ||
| # to override installPlanApproval from Automatic to Manual and pin a | ||
| # specific startingCSV. | ||
| # | ||
| # Manual approval means OLM will not install a new operator version until | ||
| # an administrator (or automation) explicitly approves the InstallPlan. | ||
| # This provides change-control over operator upgrades at the cost of | ||
| # requiring an approval step on every new version. | ||
| # | ||
| # NOTE: When using Manual approval you must ensure InstallPlans are approved | ||
| # before the operator can install or upgrade. Options: | ||
| # - Approve manually: oc patch installplan <name> -n <ns> --type merge | ||
| # -p '{"spec":{"approved":true}}' | ||
| # - Or implement an automated approval Job (see the pattern in | ||
| # components/utilities/approve-installplan for the openstack-operator). | ||
| # | ||
| # Usage in a consumer kustomization: | ||
| # components: | ||
| # - https://github.com/openstack-k8s-operators/gitops/components/secrets/external-secrets-operator/redhat?ref=<tag> | ||
| # - https://github.com/openstack-k8s-operators/gitops/components/secrets/external-secrets-operator/manual-approval?ref=<tag> | ||
| # | ||
| # Remember to update startingCSV to the version currently running in your | ||
| # cluster before switching to Manual. Query with: | ||
| # oc get subscription openshift-external-secrets-operator -n external-secrets-operator \ | ||
| # -o jsonpath='{.status.currentCSV}' | ||
|
|
||
| # ---- EXAMPLE — uncomment and fill in before using ---- | ||
| # | ||
| # apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
| # kind: Component | ||
| # patches: | ||
| # - target: | ||
| # kind: Subscription | ||
| # name: external-secrets-operator | ||
| # patch: |- | ||
| # - op: replace | ||
| # path: /spec/installPlanApproval | ||
| # value: Manual | ||
| # - op: add | ||
| # path: /spec/startingCSV | ||
| # value: openshift-external-secrets-operator.v<VERSION> # replace with current CSV |
33 changes: 33 additions & 0 deletions
33
components/secrets/vault-secrets-operator/manual-approval/kustomization.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| --- | ||
| # Opt-in overlay: switch the VSO subscription to Manual installPlanApproval. | ||
| # | ||
| # Include this component AFTER the base VSO component to override | ||
| # installPlanApproval from Automatic to Manual and pin a specific startingCSV. | ||
| # | ||
| # See components/secrets/external-secrets-operator/manual-approval/kustomization.yaml | ||
| # for full usage notes and approval options. | ||
| # | ||
| # Query your currently installed CSV: | ||
| # oc get subscription vault-secrets-operator -n openshift-operators \ | ||
| # -o jsonpath='{.status.currentCSV}' | ||
| # | ||
| # Usage in a consumer kustomization: | ||
| # components: | ||
| # - https://github.com/openstack-k8s-operators/gitops/components/secrets/vault-secrets-operator?ref=<tag> | ||
| # - https://github.com/openstack-k8s-operators/gitops/components/secrets/vault-secrets-operator/manual-approval?ref=<tag> | ||
|
|
||
| # ---- EXAMPLE — uncomment and fill in before using ---- | ||
| # | ||
| # apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
| # kind: Component | ||
| # patches: | ||
| # - target: | ||
| # kind: Subscription | ||
| # name: vault-secrets-operator | ||
| # patch: |- | ||
| # - op: replace | ||
| # path: /spec/installPlanApproval | ||
| # value: Manual | ||
| # - op: add | ||
| # path: /spec/startingCSV | ||
| # value: vault-secrets-operator.v<VERSION> # replace with current CSV | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.