Browse Source

Applied templating in helm chart

master
Gyulai Dániel 4 years ago
parent
commit
66f596f15c
  1. 16
      helm/covidok/templates/_helpers.tpl
  2. 17
      helm/covidok/templates/appsettings.yaml
  3. 10
      helm/covidok/templates/deployment.yaml
  4. 19
      helm/covidok/templates/minio.yaml
  5. 24
      helm/covidok/templates/mysql.yaml
  6. 23
      helm/covidok/templates/redis.yaml
  7. 24
      helm/covidok/values.yaml

16
helm/covidok/templates/_helpers.tpl

@ -5,6 +5,22 @@ Expand the name of the chart.
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }} {{- end }}
{{- define "covidok.minio" -}}
{{ .Release.Name }}-minio
{{- end }}
{{- define "covidok.mysql" -}}
{{ .Release.Name -}}-mysql
{{- end }}
{{- define "covidok.redis" -}}
{{ .Release.Name -}}-redis
{{- end }}
{{- define "covidok.appsettings" -}}
{{- .Release.Name -}}-appsettings
{{- end }}
{{/* {{/*
Create a default fully qualified app name. Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).

17
helm/covidok/templates/appsettings.yaml

@ -0,0 +1,17 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "covidok.appsettings" . }}
data:
appsettings.k8s.json: |
{
"ConnectionStrings": {
"MySQLDatabase": "server={{- include "covidok.mysql" . -}};database={{ .Values.config.mysql.database }};user={{ .Values.config.mysql.user }};password={{ .Values.config.mysql.password }}",
"RedisHost": "{{ include "covidok.redis" . }}:{{ .Values.config.redis.port }}"
},
"MinioSettings": {
"HostName": "{{ include "covidok.minio" . }}",
"AccessKey": "{{ .Values.config.minio.accesskey }}",
"SecretKey": "{{ .Values.config.minio.secretkey }}"
}
}

10
helm/covidok/templates/deployment.yaml

@ -26,7 +26,7 @@ spec:
- name: mysql - name: mysql
image: mysql:8.0 image: mysql:8.0
command: ["/bin/bash"] command: ["/bin/bash"]
args: ["-c", "while ! mysqladmin ping -h mysql --silent; do sleep 1; done"] args: ["-c", "while ! mysqladmin ping -h {{ include "covidok.mysql" . }} --silent; do sleep 1; done"]
containers: containers:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
image: "{{ .Values.images.covidok.name }}:{{ .Values.images.covidok.tag }}" image: "{{ .Values.images.covidok.name }}:{{ .Values.images.covidok.tag }}"
@ -35,6 +35,14 @@ spec:
- name: http - name: http
containerPort: 80 containerPort: 80
protocol: TCP protocol: TCP
volumeMounts:
- name: appsettings
mountPath: /app/settings/appsettings.k8s.json
subPath: appsettings.k8s.json
volumes:
- name: appsettings
configMap:
name: {{- include "covidok.appsettings" . }}
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}
nodeSelector: nodeSelector:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}

19
helm/covidok/templates/minio.yaml

@ -1,36 +1,45 @@
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: minio name: {{ include "covidok.minio" . }}
labels:
{{- include "covidok.labels" . | nindent 4 }}
spec: spec:
ports: ports:
- port: 9000 - port: 9000
selector: selector:
{{- include "covidok.selectorLabels" . | nindent 4 }}
app: minio-covidok app: minio-covidok
--- ---
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
kind: Deployment kind: Deployment
metadata: metadata:
name: minio-covidok name: {{ include "covidok.minio" . }}
spec: spec:
selector: selector:
matchLabels: matchLabels:
{{- include "covidok.selectorLabels" . | nindent 6 }}
app: minio-covidok app: minio-covidok
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels: labels:
{{- include "covidok.selectorLabels" . | nindent 8 }}
app: minio-covidok app: minio-covidok
spec: spec:
containers: containers:
- image: minio/minio - image: "{{ .Values.images.minio.name }}:{{ .Values.images.minio.tag }}"
name: minio name: minio
env: env:
- name: MINIO_ACCESS_KEY - name: MINIO_ACCESS_KEY
value: "secretaccesskey" value: "{{ .Values.config.minio.accesskey }}"
- name: MINIO_SECRET_KEY - name: MINIO_SECRET_KEY
value: "secretsecretkey" value: "{{ .Values.config.minio.secretkey }}"
ports: ports:
- containerPort: 9000 - containerPort: 9000
name: minio name: minio

24
helm/covidok/templates/mysql.yaml

@ -1,42 +1,50 @@
# TODO: Add helm templating
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: mysql name: {{ include "covidok.mysql" . }}
labels:
{{- include "covidok.labels" . | nindent 4 }}
spec: spec:
ports: ports:
- port: 3306 - port: 3306
selector: selector:
{{- include "covidok.selectorLabels" . | nindent 4 }}
app: mysql app: mysql
--- ---
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: mysql name: {{ include "covidok.mysql" . }}
spec: spec:
selector: selector:
matchLabels: matchLabels:
{{- include "covidok.selectorLabels" . | nindent 6 }}
app: mysql app: mysql
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels: labels:
{{- include "covidok.selectorLabels" . | nindent 8 }}
app: mysql app: mysql
spec: spec:
containers: containers:
- image: mysql:8.0 - image: "{{ .Values.images.mysql.name }}:{{ .Values.images.mysql.tag }}"
name: mysql name: mysql
env: env:
# Use secret in real usage # Use secret in real usage
- name: MYSQL_ROOT_PASSWORD - name: MYSQL_ROOT_PASSWORD
value: dev-pass1 value: dev-pass1
- name: MYSQL_DATABASE - name: MYSQL_DATABASE
value: "covidok" value: "{{ .Values.config.mysql.database }}"
- name: MYSQL_USER - name: MYSQL_USER
value: "covidok" value: "{{ .Values.config.mysql.user }}"
- name: MYSQL_PASSWORD - name: MYSQL_PASSWORD
value: "covidok" value: "{{ .Values.config.mysql.password }}"
ports: ports:
- containerPort: 3306 - containerPort: 3306
name: mysql name: mysql

23
helm/covidok/templates/redis.yaml

@ -1,30 +1,39 @@
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: redis name: {{ include "covidok.redis" . }}
labels:
{{- include "covidok.labels" . | nindent 4 }}
spec: spec:
ports: ports:
- port: 6379 - port: 6379
selector: selector:
app: redis-dev {{- include "covidok.selectorLabels" . | nindent 4 }}
app: redis
--- ---
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: redis-dev name: {{ include "covidok.redis" . }}
spec: spec:
selector: selector:
matchLabels: matchLabels:
app: redis-dev {{- include "covidok.selectorLabels" . | nindent 6 }}
app: redis
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels: labels:
app: redis-dev {{- include "covidok.selectorLabels" . | nindent 8 }}
app: redis
spec: spec:
containers: containers:
- image: redis:6 - image: "{{ .Values.images.redis.name }}:{{ .Values.images.redis.tag }}"
name: redis name: redis
ports: ports:
- containerPort: 6379 - containerPort: 6379

24
helm/covidok/values.yaml

@ -9,9 +9,27 @@ images:
mysql: mysql:
name: mysql name: mysql
tag: 8.0 tag: 8.0
minio:
name: minio/minio
tag: latest
redis:
name: redis
tag: 6
pullPolicy: Always pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
config:
minio:
accesskey: "accesskey"
secretkey: "secretkey"
mysql:
database: "covidok"
user: "covdiok"
password: "covidok"
redis:
port: "6379"
imagePullSecrets: [] imagePullSecrets: []
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""
@ -21,9 +39,3 @@ podAnnotations: {}
service: service:
type: ClusterIP type: ClusterIP
port: 80 port: 80
nodeSelector: {}
tolerations: []
affinity: {}

Loading…
Cancel
Save