Example YAML configurations

Serviceability, Default Configuration

apiVersion: elm.ibm.com/v1
kind: Serviceability
metadata:
  name: serviceability
  namespace: example
spec:
  gatherApplicationLogs: false
  gatherApplicationSettings: false
  gatherCRDs: false
  gatherCertificatesAndConfigMaps: false
  gatherPodLogs: false
  gatherResources: false
  obfuscateSensitiveData: false

Serviceability, Selective Gathering

...
spec:
  gatherApplicationLogs: true
  gatherApplicationSettings: true
  gatherCRDs: false
  gatherCertificatesAndConfigMaps: false
  gatherPodLogs: true
  gatherResources: false
  obfuscateSensitiveData: true
...

Serviceability, Mask Sensitive Data

...
spec:
  obfuscateSensitiveData: true
...