18 lines
414 B
YAML
18 lines
414 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "rdp-web-gateway.fullname" . }}-config
|
|
labels:
|
|
{{- include "rdp-web-gateway.labels" . | nindent 4 }}
|
|
data:
|
|
config.json: |
|
|
{
|
|
"rdpBroker": {
|
|
"host": "{{ .Values.config.rdpBroker.host }}",
|
|
"port": {{ .Values.config.rdpBroker.port }}
|
|
},
|
|
"server": {
|
|
"port": {{ .Values.config.server.port }}
|
|
}
|
|
}
|