-
Notifications
You must be signed in to change notification settings - Fork 112
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
[openshift_setup] Add support for overriding dependent operators CatalogSource #2694
Open
lewisdenny
wants to merge
1
commit into
openstack-k8s-operators:main
Choose a base branch
from
lewisdenny:4.17_operators
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+70
−0
Open
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
This file contains 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
This file contains 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
58 changes: 58 additions & 0 deletions
58
roles/openshift_setup/tasks/patch_dependent_operators_source.yml
This file contains 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,58 @@ | ||
--- | ||
# HACK: (Lewis) This taskfile is used to test pre-release OCP versions | ||
# by intalling the previous OCP release's catalog source for the | ||
# dependent operators to use and overriding their subscriptions | ||
|
||
- name: Write catalog source | ||
kubernetes.core.k8s: | ||
kubeconfig: "{{ cifmw_openshift_kubeconfig }}" | ||
state: present | ||
definition: | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: CatalogSource | ||
metadata: | ||
name: "{{ cifmw_openshift_setup_operator_override_catalog_name }}" | ||
namespace: "{{ cifmw_openshift_setup_operator_override_catalog_namespace }}" | ||
spec: | ||
displayName: "{{ cifmw_openshift_setup_operator_override_catalog_name }}" | ||
image: "{{ cifmw_openshift_setup_operator_override_catalog_image }}" | ||
publisher: CI-Framework | ||
sourceType: grpc | ||
updateStrategy: | ||
registryPoll: | ||
interval: 10m | ||
|
||
- name: Patch metallb operator subscription to use custom CatalogSource | ||
kubernetes.core.k8s: | ||
state: patched | ||
kind: Subscription | ||
api_version: operators.coreos.com/v1alpha1 | ||
kubeconfig: "{{ cifmw_openshift_kubeconfig }}" | ||
name: metallb-operator-sub | ||
namespace: metallb-system | ||
definition: | ||
spec: | ||
source: "{{ cifmw_openshift_setup_operator_override_catalog_name }}" | ||
wait: true | ||
wait_timeout: 300 | ||
wait_condition: | ||
type: CatalogSourcesUnhealthy | ||
status: "False" | ||
|
||
- name: Patch nmstate operator subscription to use custom CatalogSource | ||
kubernetes.core.k8s: | ||
state: patched | ||
kind: Subscription | ||
api_version: operators.coreos.com/v1alpha1 | ||
kubeconfig: "{{ cifmw_openshift_kubeconfig }}" | ||
name: kubernetes-nmstate-operator | ||
namespace: openshift-nmstate | ||
definition: | ||
spec: | ||
source: "{{ cifmw_openshift_setup_operator_override_catalog_name }}" | ||
wait_sleep: 10 | ||
wait: true | ||
wait_timeout: 300 | ||
wait_condition: | ||
type: CatalogSourcesUnhealthy | ||
status: "False" |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we really need this call here?
If we follow what's done in that role what I'd expect is just another
include_tasks
at the end withcifmw_openshift_setup_enable_operator_catalog_override
as a conditional and the proper default in the role defaults file.The role runs always and before this one so we should be safe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't validate currently because downstream CI infra is having an outage but my understanding is when the openshift_setup role runs, the subscriptions do not yet exist.
Yes I could create the CatalogSource when openshift_setup runs but I wanted to keep the logic together.
I could also create the subscriptions rather than patching them and maybe OLM wouldn't complain but this is already a nasty hack that I'm trying to minimise the footprint.
I can verify once downstream CI infra is back.