mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-06 06:46:26 +01:00
Added - New module for Obfuscating DVO data using configmap - Screenshot showing configmap formatting. Changed - All Insights Operator config modules, from using old support secret method to using ConfigMap method.
42 lines
1.6 KiB
Plaintext
42 lines
1.6 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * support/remote_health_monitoring/using-insights-operator.adoc
|
|
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="obfuscating-deployment-validation-operator-data_{context}"]
|
|
= Obfuscating Deployment Validation Operator data
|
|
|
|
Cluster administrators can configure the Insight Operator to obfuscate data from the Deployment Validation Operator (DVO), if the Operator is installed. When the `workload_names` value is added to the *insights-config* `ConfigMap` object, workload names—rather than UIDs—are displayed in Insights for Openshift, making them more recognizable for cluster administrators.
|
|
|
|
.Prerequisites
|
|
|
|
* Remote health reporting is enabled, which is the default.
|
|
* You are logged in to the {product-title} web console with the "cluster-admin" role.
|
|
* The *insights-config* `ConfigMap` object exists in the `openshift-insights` namespace.
|
|
* The cluster is self managed and the Deployment Validation Operator is installed.
|
|
|
|
.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 `obfuscation` attribute with the `workload_names` value.
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
# ...
|
|
data:
|
|
config.yaml: |
|
|
dataReporting:
|
|
obfuscation:
|
|
- workload_names
|
|
# ...
|
|
----
|
|
|
|
. Click *Save*. The *insights-config* config-map details page opens.
|
|
. Verify that the value of the `config.yaml` `obfuscation` attribute is set to `- workload_names`.
|