Observability
Starting with CSM 1.12, all deployments will use images from quay.io by default. New release images will be available on Docker Hub until CSM 1.14 (May 2025), and existing releases will remain on Docker Hub.
The CSM Observability module for supported Dell CSI Drivers can be installed via the Dell CSM Operator. Dell CSM Operator will deploy CSM Observability, including topology service, Otel collector, and metrics services.
Prerequisites
-
Create a namespace
karavi
kubectl create namespace karavi
-
Enable Observability module and components in sample manifests. If cert-manager has already been installed, don’t enable it.
-
To use Observablity with CSM Authorization, the Authorization Proxy Server should be installed and configured first. Then, enable the Authorization module along with the Observability module in the sample manifest.
-
Observability will deploy with self-signed certificates by default. If you want to have custom certificates created instead, please generate certificates and private keys, encode them in base64, and insert them into the sample file as shown below for whichever components you are enabling:
# observability: allows to configure observability
- name: observability
...
components:
- name: topology
...
# certificate: base64-encoded certificate for cert/private-key pair -- add cert here to use custom certificates
# for self-signed certs, leave empty string
# Allowed values: string
certificate: "<INSERT BASE64-ENCODED TOPOLOGY CERTIFICATE HERE>"
# privateKey: base64-encoded private key for cert/private-key pair -- add private key here to use custom certificates
# for self-signed certs, leave empty string
# Allowed values: string
privateKey: "<INSERT BASE64-ENCODED TOPOLOGY PRIVATE KEY HERE>"
...
- name: otel-collector
...
# certificate: base64-encoded certificate for cert/private-key pair -- add cert here to use custom certificates
# for self-signed certs, leave empty string
# Allowed values: string
certificate: "<INSERT BASE64-ENCODED OTEL-COLLECTOR CERTIFICATE HERE>"
# privateKey: base64-encoded private key for cert/private-key pair -- add private key here to use custom certificates
# for self-signed certs, leave empty string
# Allowed values: string
privateKey: "<INSERT BASE64-ENCODED OTEL-COLLECTOR PRIVATE KEY HERE>"
...
- Notes:
- If you enable
metrics-powerscale
ormetrics-powerflex
, you must enableotel-collector
as well. - otel-collector cannot be enabled without a metrics component also enabled.
- If you are deploying multiple drivers, only enable topology, otel-collector, and cert-manager in the first driver. For subsequent drivers, only enable the metrics component. When deleting the deployment, the driver that was created first must be deleted last.
- If you enable
Install Observability
- Once you have prepared the sample file(s) (one per driver being installed), deploy by running
kubectl apply -f <SAMPLE FILE>
on the sample file.
How to enable this module using minimal CR
Alternatively, you can use the minimal sample files provided here.
Upgrade Observability
The Observability module installed by the Dell CSM Operator can be updated like any Kubernetes resource.
-
Modifying the existing driver and module installation directly via
kubectl edit
kubectl get <driver-object> -n <driver-namespace>
For example - If the CSI PowerScale driver is installed then run this command to get the object name
# Replace driver-namespace with the namespace where the CSI PowerScale driver is installed $ kubectl get csm -n <driver-namespace>
use the object name in
kubectl edit
command.kubectl edit csm <driver-object>/<object-name> -n <driver-namespace>
For example - If the object name is isilon then use the name as isilon
# Replace object-name with the isilon kubectl edit csm isilon -n <driver-namespace>
-
Modify the installation
- Update the driver config version and image tag
- Update the Observability config version, csm-topology image and the driver metrics images(e.g. for CSI PowerScale driver, the metrics driver image would be
csm-metrics-powerscale
)
NOTE:
- In observability module upgrade, only
n-1
ton
upgrade is supported, e.g. if the current observability version isv1.7.x
, it can be upgraded to1.8.x
. - Upgrade to csm-operator and csi-driver first which support the corresponding observability module version.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.