mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
45 lines
1.5 KiB
Plaintext
45 lines
1.5 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * support/remote_health_monitoring/insights-operator-simple-access.adoc
|
|
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="insights-operator-enabling-sca_{context}"]
|
|
= Enabling a previously disabled simple content access import
|
|
|
|
If the importing of simple content access entitlements is disabled, the {insights-operator} does not import simple content access entitlements. You can change this behavior.
|
|
|
|
.Prerequisites
|
|
|
|
* Remote health reporting is enabled, which is the default.
|
|
ifndef::openshift-rosa,openshift-dedicated[]
|
|
* You are logged in to the {product-title} web console as a user with the `cluster-admin` role.
|
|
endif::openshift-rosa,openshift-dedicated[]
|
|
ifdef::openshift-rosa,openshift-dedicated[]
|
|
* You are logged in to the {product-title} web console as a user with the `dedicated-admin` role.
|
|
endif::openshift-rosa,openshift-dedicated[]
|
|
* The *insights-config* `ConfigMap` object exists in the `openshift-insights` namespace.
|
|
|
|
.Procedure
|
|
|
|
. Go to *Workloads* -> *ConfigMaps* and select *Project: openshift-insights*.
|
|
. Click on the *insights-config* `ConfigMap` object to open it.
|
|
. Click *Actions* and select *Edit ConfigMap*.
|
|
. Click the *YAML view* radio button.
|
|
. In the file, set the `sca` attribute to `disabled: false`.
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
# ...
|
|
data:
|
|
config.yaml: |
|
|
sca:
|
|
disabled: false
|
|
# ...
|
|
----
|
|
|
|
. Click *Save*. The *insights-config* config-map details page opens.
|
|
. Verify that the value of the `config.yaml` `sca` attribute is set to `disabled: false`.
|