-
Notifications
You must be signed in to change notification settings - Fork 56
Add monitoring operator in the CVO overrides before the cluster starts #294
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
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
166d961
Temporary: use the nightly release image from the OpenShift CI
guillaumerose 8e809a7
Disable LUKS for 4.7
guillaumerose fe386b2
Add monitoring operator in the CVO overrides before the cluster starts
guillaumerose bff49fc
Disable more operators
guillaumerose fd1efa1
Delete completed pods across all namespaces
guillaumerose 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 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
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,110 @@ | ||
| - op: add | ||
| path: /spec/overrides | ||
| value: | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cluster-monitoring-operator | ||
| namespace: openshift-monitoring | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: monitoring | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: kube-storage-version-migrator-operator | ||
| namespace: openshift-kube-storage-version-migrator-operator | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: kube-storage-version-migrator | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: insights-operator | ||
| namespace: openshift-insights | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: insights | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cloud-credential-operator | ||
| namespace: openshift-cloud-credential-operator | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: cloud-credential | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cluster-storage-operator | ||
| namespace: openshift-cluster-storage-operator | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: storage | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cluster-baremetal-operator | ||
| namespace: openshift-machine-api | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: baremetal | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cluster-autoscaler-operator | ||
| namespace: openshift-machine-api | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: cluster-autoscaler | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: csi-snapshot-controller-operator | ||
| namespace: openshift-cluster-storage-operator | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: csi-snapshot-controller | ||
| namespace: "" | ||
| unmanaged: true | ||
| # only used in bootstrap phase | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: machine-api | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: machine-config | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: machine-config-operator | ||
| namespace: openshift-machine-config-operator | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: machine-api-operator | ||
| namespace: openshift-machine-api | ||
| unmanaged: true | ||
| # required to scale down etcd-quorum-guard | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: etcd-quorum-guard | ||
| namespace: openshift-etcd | ||
| unmanaged: true | ||
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 |
|---|---|---|
| @@ -1,63 +1,82 @@ | ||
| - op: add | ||
| path: /spec/overrides | ||
| value: | ||
| spec: | ||
| overrides: | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cluster-monitoring-operator | ||
| namespace: openshift-monitoring | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: machine-config-operator | ||
| namespace: openshift-machine-config-operator | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: etcd-quorum-guard | ||
| namespace: openshift-machine-config-operator | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: monitoring | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: machine-api-operator | ||
| namespace: openshift-machine-api | ||
| name: kube-storage-version-migrator-operator | ||
| namespace: openshift-kube-storage-version-migrator-operator | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cluster-autoscaler-operator | ||
| namespace: openshift-machine-api | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: kube-storage-version-migrator | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: insights-operator | ||
| namespace: openshift-insights | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: prometheus-k8s | ||
| namespace: openshift-cloud-credential-operator | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: insights | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cloud-credential-operator | ||
| namespace: openshift-cloud-credential-operator | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: cloud-credential | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: csi-snapshot-controller-operator | ||
| name: cluster-storage-operator | ||
| namespace: openshift-cluster-storage-operator | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: storage | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: cluster-storage-operator | ||
| namespace: openshift-cluster-storage-operator | ||
| name: cluster-baremetal-operator | ||
| namespace: openshift-machine-api | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: baremetal | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: kube-storage-version-migrator-operator | ||
| namespace: openshift-kube-storage-version-migrator-operator | ||
| name: cluster-autoscaler-operator | ||
| namespace: openshift-machine-api | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: cluster-autoscaler | ||
| namespace: "" | ||
| unmanaged: true | ||
| - kind: Deployment | ||
| group: apps/v1 | ||
| name: etcd-quorum-guard | ||
| namespace: openshift-etcd | ||
| name: csi-snapshot-controller-operator | ||
| namespace: openshift-cluster-storage-operator | ||
| unmanaged: true | ||
| - kind: ClusterOperator | ||
| group: config.openshift.io/v1 | ||
| name: csi-snapshot-controller | ||
| namespace: "" | ||
| unmanaged: true |
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
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.
@guillaumerose do we need those
ClusterOperatorsaskindin the override list also, doesn't setting up the deployment as unmanagement works?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.
yes it is needed as the installer is waiting for all cluster operators to be ready.