
* Chart Grooming - Changed the default `workflow-controller` installation to use the `ServiceAccount` that is created and bound. - Customized the instanceID logic: - No longer defaults to installed (this was very difficult to see/understand when coming from starter tutorials) - Kept logic to allow for release name or explicit mappings but changed structure a bit - Added in optional configuration for: - CRD Install hook's ServiceAccount to allow clean install if your default roles aren't privledged - Optional Pod and Service annotations - Controller logging level configuration - Minio Customizations - Changed the Secret configuration to properly represent the path of a secret instead of the actual contents - Changed the names of the secret and service that are represented to mirror that of the underlying chart * Adding in role bindings for minio secrets if installed
30 lines
961 B
YAML
30 lines
961 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ .Release.Name }}-{{ .Values.ui.name}}
|
|
labels:
|
|
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
namspace: {{ .Release.Namespace }}
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: {{ .Release.Name }}-{{ .Values.ui.name}}
|
|
release: {{ .Release.Name }}
|
|
{{- if .Values.ui.podAnnotations }}
|
|
annotations:
|
|
{{ toYaml .Values.ui.podAnnotations | indent 8}}{{- end }}
|
|
spec:
|
|
serviceAccountName: {{ .Values.ui.serviceAccount | quote }}
|
|
containers:
|
|
- name: ui
|
|
image: "{{ .Values.images.namespace }}/{{ .Values.images.ui }}:{{ .Values.images.tag }}"
|
|
env:
|
|
- name: IN_CLUSTER
|
|
value: "true"
|
|
{{- if .Values.ui.enableWebConsole }}
|
|
- name: ENABLE_WEB_CONSOLE
|
|
value: "true"
|
|
{{- end }}
|