Hi!
Have one problem when trying use variables in configMap:
environment: Kubernetes
yml-file with configMap:
apiVersion: v1
kind: ConfigMap
metadata:
name: elk-config
data:
kibana.yml: |-
${KIBANA_CONFIG}
corresponding part of rancher-compose.yml
.catalog
[skipped some]
- variable: "KIBANA_CONFIG"
label: "kibana.yml file used to configure Kibana container"
required: true
type: multiline
default: |-
server.host: '0.0.0.0'
server.port: 5601
elasticsearch.url: 'http://elasticsearch:9200'
Result:
When I launch stack I’ve got only one (first) string in configMap. What I do wrong ?