1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/modules/obfuscating-dvo-data.adoc
Michelle Purcell 35d0154014 HCCDOC-3725 Fix doc bug in Insights Operator DVO task for obfuscating workload names.
fix typo

SME fix

Update modules/obfuscating-dvo-data.adoc

Co-authored-by: Darragh Fitzmaurice <57954076+dfitzmau@users.noreply.github.com>

Update modules/obfuscating-dvo-data.adoc

Co-authored-by: Darragh Fitzmaurice <57954076+dfitzmau@users.noreply.github.com>

Update modules/obfuscating-dvo-data.adoc

Co-authored-by: Darragh Fitzmaurice <57954076+dfitzmau@users.noreply.github.com>

Update obfuscating-dvo-data.adoc
2025-04-10 14:01:42 +00:00

46 lines
1.9 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
By default, when you install the Deployment Validation Operator (DVO), the name and unique identifier (UID) of a resource are included in the data that is captured and processed by the Insights Operator for {product-title}.
If you are a cluster administrator, you can configure the Insights Operator to obfuscate data from the Deployment Validation Operator (DVO).
For example, you can obfuscate workload names in the archive file that is then sent to Red{nbsp}Hat.
To obfuscate the name of resources, you must manually set the `obfuscation` attribute in the `insights-config` `ConfigMap` object to include the `workload_names` value, as outlined in the following procedure.
.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 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`.