| 12345678910111213141516171819202122232425262728293031 |
- apiVersion: v1
- kind: ReplicationController
- metadata:
- name: hue
- spec:
- replicas: {{ .Values.hue.replicas }}
- template:
- metadata:
- labels:
- app: hue
- spec:
- containers:
- - name: hue
- image: {{ .Values.registry }}:{{ .Values.tag }}
- imagePullPolicy: Always
- ports:
- - containerPort: 8888
- volumeMounts:
- - name: config-volume
- mountPath: /usr/share/hue/desktop/conf/z-hue.ini
- subPath: hue-ini
- - name: config-volume-extra
- mountPath: /usr/share/hue/desktop/conf/zz-hue.ini
- subPath: hue-ini
- volumes:
- - name: config-volume
- configMap:
- name: hue-config
- - name: config-volume-extra
- configMap:
- name: hue-config-extra
|