Disable the "insight" cluster capability by default on OKD-SCOS ? #2058
Replies: 4 comments
-
It is certainly an annoying alert. You could mute the alert, but ideally there should be a way to fine-customize the dashboard and alerts. For example, insights is a bare plugin in the console front-end, but I think it could be a dynamic console-plugin like networking or monitoring. |
Beta Was this translation helpful? Give feedback.
-
@BeardOverflow disabling the insight capability on install (As I do..) solves the problem. |
Beta Was this translation helpful? Give feedback.
-
Oh, good one! The sad part is that it is not possible to disable it on existing clusters or, even, an upgrade would silently enable it. I will reference the docs for other users who could able are reading us: https://docs.okd.io/4.17/installing/overview/cluster-capabilities.html#viewing-cluster-capabilities_cluster-capabilities Also, I found you can create the following ConfigMap to disable alerts related Insights capability (which is better than mute it): apiVersion: v1
kind: ConfigMap
metadata:
name: insights-config
namespace: openshift-insights
data:
config.yaml: |
alerting:
disabled: true
I am not the most appropriate person to answer your question about legal issues, but I understand that the main problem is mixing Red Hat operators in OKD:
But the following issue partially contradicts, at least partially?, the above statement:
Under my knowledge, you must not use Red Hat Operators, but Community Operators so as not to violate the legal terms. In the another side, Insights operator is naturally integrated on OKD ecosystem and, according to the OKD's docs, you can register your Red Hat Hybrid Cloud Console account on it.
As a community user, I think we need a strong statement about the scope of the legal terms, well-documented, updated and easy to consult. |
Beta Was this translation helpful? Give feedback.
-
The product docs are auto-generated from OCP source and as such may have some inaccuracies. We're working to remedy that by sifting through them, but could use more volunteers. If you see something that is questionable, please put in a separate issue labeled as docs. Even better, if you'd like to volunteer for OKD, we could use the help. The legal terms are this: Don't use a Red Hat pull secret. Any operator that doesn't work without a Red Hat pull secret should be considered non-functional on OKD. If you want to see that operator available on OKD, please put in a separate issue labeled as operator request. Even better, if you'd like to volunteer for OKD, we could use the help. You can see what operators are being worked on here: https://github.com/orgs/okd-project/projects/2 |
Beta Was this translation helpful? Give feedback.
-
IMHO the "insight" cluster capability should be disabled on OKD-SCOS clusters as it is not permit to specify a RH pull-secret on installation and the insight capability is directly linked to the cloud OCP console
Ref:
https://docs.okd.io/latest/installing/overview/cluster-capabilities.html
https://docs.okd.io/latest/installing/overview/cluster-capabilities.html#insights-operator_cluster-capabilities
If you let the insight capability enabled without a RH secret, this alert is raised and stays forever:
Beta Was this translation helpful? Give feedback.
All reactions