You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2020/11/18 11:51:13 UTC

[camel-k] 02/03: chore(doc): Document user workload monitoring in OpenShift versions 4.3 to 4.5

This is an automated email from the ASF dual-hosted git repository.

astefanutti pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit f5811162ff33ff1891c4977e5cbd1b9896fb2a39
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Wed Nov 18 09:27:04 2020 +0100

    chore(doc): Document user workload monitoring in OpenShift versions 4.3 to 4.5
---
 docs/modules/ROOT/pages/observability/monitoring.adoc | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/observability/monitoring.adoc b/docs/modules/ROOT/pages/observability/monitoring.adoc
index b990ee2..18e6f2e 100644
--- a/docs/modules/ROOT/pages/observability/monitoring.adoc
+++ b/docs/modules/ROOT/pages/observability/monitoring.adoc
@@ -61,7 +61,7 @@ This needs to be enabled by following these instructions:
 
   $ oc -n openshift-monitoring edit configmap cluster-monitoring-config
 
-. Set the `techPreviewUserWorkload` setting to `true` under `data/config.yaml`:
+. Set the `enableUserWorkload` setting to `true` under `data/config.yaml`:
 +
 [source,yaml]
 ----
@@ -74,6 +74,20 @@ data:
   config.yaml: |
     enableUserWorkload: true
 ----
+Note that, in OpenShift versions from 4.3 to 4.5, the configuration is as following:
++
+[source,yaml]
+----
+apiVersion: v1
+kind: ConfigMap
+metadata:
+  name: cluster-monitoring-config
+  namespace: openshift-monitoring
+data:
+  config.yaml: |
+    techPreviewUserWorkload:
+      enabled: true
+----
 
 On OpenShift versions prior to 4.3, or if you do not want to change your cluster monitoring stack configuration, you can refer to the <<Kubernetes>> section in order to deploy a separate Prometheus Operator instance.