Hello,
I am working with jenkins-operator helm. For adding System message I performed the following:
- Create user-config.yaml:
apiVersion: v1
kind: ConfigMap
metadata:
name: user-config
data:
1-system-message.yaml: |
jenkins:
systemMessage: ${SYSTEM_MESSAGE}
- Create user-config-secrets.yaml:
---
kind: Secret
apiVersion: v1
type: Opaque
metadata:
name: user-config-secrets
stringData:
SYSTEM_MESSAGE: "Psss Secret value"
- In values.yaml:
---
configuration:
configurationAsCode:
- configMapName: user-config
# content: {}
groovyScripts:
- configMapName: user-config-secrets
# content: {}
- helm update
But I don’t see the System Message.
What I am missing?
Thanks,
Irina Rozalio