Updating helm chart and improving style (#7)
* moved workflow CRD into helpers.tpl * added new values to values.yaml * added UI cluster role and binding * add workflow controller cluster role and binding * added ui service account creator * added workflow controller service account yaml * reformatted values.yaml to group similar items * tweaked files to reflect values.yaml changes * setup minio stuff to match subchart model * changes to reflect minio rework * added README to explain chart a bit * changes made to reflect minio values changes * changes to reflect minio values changes (again) * updating minio to latest version * move the crd definition into it's own tpl file
This commit is contained in:
parent
92599031ec
commit
1fed7f37cf
19 changed files with 213 additions and 43 deletions
|
|
@ -1,17 +1,18 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-{{ .Values.uiName}}
|
||||
name: {{ .Release.Name }}-{{ .Values.ui.name}}
|
||||
labels:
|
||||
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
||||
release: {{ .Release.Name }}
|
||||
heritage: {{ .Release.Service }}
|
||||
namspace: {{ .Release.Namespace }}
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
protocol: TCP
|
||||
targetPort: 8001
|
||||
selector:
|
||||
app: {{ .Release.Name }}-{{ .Values.uiName}}
|
||||
app: {{ .Release.Name }}-{{ .Values.ui.name }}
|
||||
sessionAffinity: None
|
||||
type: {{ .Values.uiServiceType }}
|
||||
type: {{ .Values.ui.serviceType }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue