Compare commits
No commits in common. "35fbb3534e07647b9da69a0db3497898f983d7db" and "3cd24668166d012552d7067790a12b4df5f3eeb3" have entirely different histories.
35fbb3534e
...
3cd2466816
@ -1,6 +1,5 @@
|
|||||||
# next
|
# next
|
||||||
- added env.TZ to default to Europe/Stockholm
|
- added env.TZ to default to Europe/Stockholm
|
||||||
- added deployment type
|
|
||||||
|
|
||||||
# v1.0.0
|
# v1.0.0
|
||||||
- first version
|
- first version
|
||||||
|
@ -3,7 +3,7 @@ apiVersion: v2
|
|||||||
name: lib
|
name: lib
|
||||||
description: Common functions for my helm charts at home
|
description: Common functions for my helm charts at home
|
||||||
type: library
|
type: library
|
||||||
version: 1.0.0
|
version: 1.0.1
|
||||||
kubeVersion: ">=1.27.0"
|
kubeVersion: ">=1.27.0"
|
||||||
home: git.rre.nu
|
home: git.rre.nu
|
||||||
sources:
|
sources:
|
||||||
|
@ -22,9 +22,6 @@ The following table lists the configurable parameters of the Lib chart and their
|
|||||||
| `controller.enabled` | should the main workload be included or not | `true` |
|
| `controller.enabled` | should the main workload be included or not | `true` |
|
||||||
| `controller.type` | valid options are deployment, statefulset, job | `"deployment"` |
|
| `controller.type` | valid options are deployment, statefulset, job | `"deployment"` |
|
||||||
| `controller.replicas` | number of replicas | `1` |
|
| `controller.replicas` | number of replicas | `1` |
|
||||||
| `controller.lifecycle` | Define postStart and preStop handlers | `{}` |
|
|
||||||
| `controller.command` | override the containers entrypoint | `null` |
|
|
||||||
| `controller.args` | add argument to the override command | `[]` |
|
|
||||||
| `image.repository` | container image name | `null` |
|
| `image.repository` | container image name | `null` |
|
||||||
| `image.pullPolicy` | kubernetes pull policy | `"IfNotPresent"` |
|
| `image.pullPolicy` | kubernetes pull policy | `"IfNotPresent"` |
|
||||||
| `image.tag` | Overrides the image tag whose default is the chart appVersion. | `""` |
|
| `image.tag` | Overrides the image tag whose default is the chart appVersion. | `""` |
|
||||||
@ -48,7 +45,6 @@ The following table lists the configurable parameters of the Lib chart and their
|
|||||||
| `autoscaling.targetCPUUtilizationPercentage` | | `80` |
|
| `autoscaling.targetCPUUtilizationPercentage` | | `80` |
|
||||||
| `secrets` | Secrets that needs to be created | `{}` |
|
| `secrets` | Secrets that needs to be created | `{}` |
|
||||||
| `configs` | ConfigMaps that needs to be created | `{}` |
|
| `configs` | ConfigMaps that needs to be created | `{}` |
|
||||||
| `envFrom` | mount environment variables from secrets or configMaps | `[]` |
|
|
||||||
| `env.TZ` | | `"Europe/Stockholm"` |
|
| `env.TZ` | | `"Europe/Stockholm"` |
|
||||||
| `volumes` | | `[]` |
|
| `volumes` | | `[]` |
|
||||||
| `volumeMounts` | | `[]` |
|
| `volumeMounts` | | `[]` |
|
||||||
|
@ -15,8 +15,8 @@ Main entrypoint for the common library chart. It will render all underlying temp
|
|||||||
{{ if .Values.controller.enabled }}
|
{{ if .Values.controller.enabled }}
|
||||||
{{ if eq .Values.controller.type "statefulset" }}
|
{{ if eq .Values.controller.type "statefulset" }}
|
||||||
{{- include "lib.statefulset" . | nindent 0}}
|
{{- include "lib.statefulset" . | nindent 0}}
|
||||||
{{ else if eq .Values.controller.type "deployment" }}
|
|
||||||
{{- include "lib.deployment" . | nindent 0 }}
|
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{{- define "lib.configs" -}}
|
{{- define "lib.configs" -}}
|
||||||
{{- $fullName := include "lib.fullname" . -}}
|
{{- $fullName := include "lib.fullname" . -}}
|
||||||
{{- $namespace := .Values.namespace | default "default" -}}
|
{{- $namespace := .Values.namespace -}}
|
||||||
{{- $commonLabels := include "lib.labels" . }}
|
{{- $commonLabels := include "lib.labels" . }}
|
||||||
{{- range $name, $values := .Values.configs }}
|
{{- range $name, $values := .Values.configs }}
|
||||||
{{- if $values.enabled -}}
|
{{- if $values.enabled -}}
|
||||||
|
@ -1,53 +0,0 @@
|
|||||||
{{- define "lib.deployment" -}}
|
|
||||||
---
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ include "lib.fullname" . }}
|
|
||||||
labels:
|
|
||||||
{{- include "lib.labels" . | nindent 4 }}
|
|
||||||
spec:
|
|
||||||
{{- if not .Values.autoscaling.enabled }}
|
|
||||||
replicas: {{ .Values.replicaCount }}
|
|
||||||
{{- end }}
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
{{- include "lib.selectorLabels" . | nindent 6 }}
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
{{- with .Values.podAnnotations }}
|
|
||||||
annotations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
{{- include "lib.labels" . | nindent 8 }}
|
|
||||||
{{- with .Values.controller.labels }}
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
{{- with .Values.imagePullSecrets }}
|
|
||||||
imagePullSecrets:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
serviceAccountName: {{ include "lib.serviceAccountName" . }}
|
|
||||||
securityContext:
|
|
||||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
|
||||||
containers:
|
|
||||||
{{- include "lib.parts.container" . | nindent 8 -}}
|
|
||||||
{{- with .Values.volumes }}
|
|
||||||
volumes:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
@ -72,3 +72,54 @@ Merge the local chart values and the library chart defaults
|
|||||||
{{- $_ := set . "Values" (deepCopy $mergedValues) -}}
|
{{- $_ := set . "Values" (deepCopy $mergedValues) -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Get all environment variables and
|
||||||
|
secrets that should be mounted as environment variables
|
||||||
|
*/}}
|
||||||
|
{{- define "lib.environmentVariables" -}}
|
||||||
|
{{- $envIncluded := "false" -}}
|
||||||
|
{{- $fullName := include "lib.fullname" . -}}
|
||||||
|
{{- range $name, $settings := .Values.secrets -}}
|
||||||
|
{{- if $settings.enabled -}}
|
||||||
|
{{- if $settings.env -}}
|
||||||
|
{{- $envIncluded := "true" -}}
|
||||||
|
{{- range $key, $value := $settings.data }}
|
||||||
|
- name: {{ $key }}
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ $fullName }}-{{ $name }}
|
||||||
|
key: {{ $key }}
|
||||||
|
{{- end -}}
|
||||||
|
{{- range $key, $value := $settings.stringData }}
|
||||||
|
- name: {{ $key }}
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ $fullName }}-{{ $name }}
|
||||||
|
key: {{ $key }}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- range $name, $settings := .Values.configs -}}
|
||||||
|
{{- if $settings.enabled -}}
|
||||||
|
{{- if $settings.env -}}
|
||||||
|
{{- $envIncluded := "true" -}}
|
||||||
|
{{- range $key, $value := $settings.data }}
|
||||||
|
- name: {{ $key }}
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: {{ $fullName }}-{{ $name }}
|
||||||
|
key: {{ $key }}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- if $envIncluded = "true" -}}
|
||||||
|
{{- if .Values.env -}}
|
||||||
|
{{- toYaml .Values.env | nindent 0 -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- toYaml .Values.env | nindent 0 -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}
|
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
---
|
|
||||||
{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}}
|
{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}}
|
||||||
apiVersion: networking.k8s.io/v1
|
apiVersion: networking.k8s.io/v1
|
||||||
{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
|
{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
|
||||||
@ -21,7 +20,8 @@ metadata:
|
|||||||
namespace: {{ .Values.namespace }}
|
namespace: {{ .Values.namespace }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "lib.labels" . | nindent 4 }}
|
{{- include "lib.labels" . | nindent 4 }}
|
||||||
{{- with .Values.ingress.annotations }}
|
{{- with .Values.ingressingresstservicePort }}
|
||||||
|
{{- $svcName := .Values.ingress.service -}}
|
||||||
annotations:
|
annotations:
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@ -52,7 +52,7 @@ spec:
|
|||||||
backend:
|
backend:
|
||||||
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
|
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
|
||||||
service:
|
service:
|
||||||
name: {{ $fullName }}-{{ $svcName }}
|
name: {{ $fullName }}-${{ $svcName }}
|
||||||
port:
|
port:
|
||||||
number: {{ $svcPort }}
|
number: {{ $svcPort }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{{- define "lib.secrets" -}}
|
{{- define "lib.secrets" -}}
|
||||||
{{- $fullName := include "lib.fullname" . -}}
|
{{- $fullName := include "lib.fullname" . -}}
|
||||||
{{- $namespace := .Values.namespace | default "default" -}}
|
{{- $namespace := .Values.namespace -}}
|
||||||
{{- $commonLabels := include "lib.labels" . }}
|
{{- $commonLabels := include "lib.labels" . }}
|
||||||
{{- range $name, $values := .Values.secrets }}
|
{{- range $name, $values := .Values.secrets }}
|
||||||
{{- if $values.enabled -}}
|
{{- if $values.enabled -}}
|
||||||
|
@ -14,12 +14,12 @@ metadata:
|
|||||||
labels:
|
labels:
|
||||||
{{- $labels | nindent 4 }}
|
{{- $labels | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
type: {{ default "ClusterIP" $values.type }}
|
type: {{ $values.type }}
|
||||||
ports:
|
ports:
|
||||||
{{- range $k, $v := $values.ports }}
|
{{- range $k, $v := $values.ports }}
|
||||||
- port: {{ $v.port }}
|
- port: {{ $v.port }}
|
||||||
targetPort: {{ default $v.port $v.targetPort }}
|
targetPort: {{ default $v.targetPort $v.port }}
|
||||||
protocol: {{ default "TCP" $v.protocol }}
|
protocol: {{ $v.protocol }}
|
||||||
name: {{ $k }}
|
name: {{ $k }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
selector:
|
selector:
|
||||||
|
@ -35,7 +35,34 @@ spec:
|
|||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.controller.podSecurityContext | nindent 8 }}
|
{{- toYaml .Values.controller.podSecurityContext | nindent 8 }}
|
||||||
containers:
|
containers:
|
||||||
{{- include "lib.parts.container" . | nindent 8 -}}
|
- name: {{ .Chart.Name }}
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.controller.securityContext | nindent 12 }}
|
||||||
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||||
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
|
ports:
|
||||||
|
{{- range $name, $values := .Values.service -}}
|
||||||
|
{{- if $values.enabled -}}
|
||||||
|
{{- range $k, $v := $values.ports }}
|
||||||
|
- name: {{ $k }}
|
||||||
|
containerPort: {{ $v.targetPort | default $v.port }}
|
||||||
|
protocol: {{ $v.protocol }}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end }}
|
||||||
|
env:
|
||||||
|
{{- include "lib.environmentVariables" . | default "[]" | nindent 12 }}
|
||||||
|
livenessProbe:
|
||||||
|
{{- toYaml .Values.livenessProbe | nindent 12 }}
|
||||||
|
readinessProbe:
|
||||||
|
{{- toYaml .Values.readinessProbe | nindent 12 }}
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
|
volumeMounts:
|
||||||
|
{{- range $i, $values := .Values.volumeClaimTemplates }}
|
||||||
|
- name: {{ $values.name }}
|
||||||
|
mountPath: {{ $values.mountPath }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
{{- define "lib.parts.container" -}}
|
|
||||||
{{/*
|
|
||||||
create the environment varable list
|
|
||||||
*/}}
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
securityContext:
|
|
||||||
{{- toYaml .Values.securityContext | nindent 4 }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
{{- with .Values.controller.command }}
|
|
||||||
command: {{ toYaml . | nindent 4}}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.controller.args }}
|
|
||||||
args: {{ toYaml . | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.controller.lifecycle }}
|
|
||||||
lifecycle:
|
|
||||||
{{- toYaml . | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
ports:
|
|
||||||
{{- range $name, $values := .Values.service -}}
|
|
||||||
{{- if $values.enabled -}}
|
|
||||||
{{- range $k, $v := $values.ports }}
|
|
||||||
- name: {{ $k }}
|
|
||||||
containerPort: {{ default $v.port $v.targetPort }}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end }}
|
|
||||||
env:
|
|
||||||
{{- include "lib.parts.env" . | nindent 4 -}}
|
|
||||||
{{- with .Values.livenessProbe }}
|
|
||||||
livenessProbe:
|
|
||||||
{{- toYaml . | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.readinessProbe }}
|
|
||||||
readinessProbe:
|
|
||||||
{{- toYaml . | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.resources }}
|
|
||||||
resources:
|
|
||||||
{{- toYaml . | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.volumeMounts }}
|
|
||||||
volumeMounts:
|
|
||||||
{{- toYaml . | nindent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
@ -1,26 +0,0 @@
|
|||||||
{{/*
|
|
||||||
Get all environment variables configMaps and
|
|
||||||
secrets that should be mounted as environment variables
|
|
||||||
*/}}
|
|
||||||
{{- define "lib.parts.env" -}}
|
|
||||||
{{/*
|
|
||||||
environment variables from .Values.env
|
|
||||||
*/}}
|
|
||||||
{{- range $name, $value := .Values.env -}}
|
|
||||||
{{- printf "- name: %s" $name | nindent 0 }}
|
|
||||||
{{- printf "value: %s" $value | nindent 2 }}
|
|
||||||
{{- end -}}
|
|
||||||
{{/*
|
|
||||||
environment variables from configMaps
|
|
||||||
*/}}
|
|
||||||
{{- range $cfgName, $settings := .Values.configs -}}
|
|
||||||
{{- if and $settings.enabled $settings.env -}}
|
|
||||||
{{- range $key, $value := $settings.data -}}
|
|
||||||
{{- printf "- name: %s" $key | nindent 0 }}
|
|
||||||
{{- printf "valueFrom:" | nindent 2 }}
|
|
||||||
{{- printf "configMapKeyRef:" | nindent 4 }}
|
|
||||||
{{- printf "name: %s" $key | nindent 5 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
13
values.yaml
13
values.yaml
@ -4,9 +4,6 @@ controller: # main workload
|
|||||||
enabled: true # should the main workload be included or not
|
enabled: true # should the main workload be included or not
|
||||||
type: deployment # valid options are deployment, statefulset, job
|
type: deployment # valid options are deployment, statefulset, job
|
||||||
replicas: 1 # number of replicas
|
replicas: 1 # number of replicas
|
||||||
lifecycle: {} # Define postStart and preStop handlers
|
|
||||||
command: # override the containers entrypoint
|
|
||||||
args: [] # add argument to the override command
|
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: # container image name
|
repository: # container image name
|
||||||
@ -88,27 +85,21 @@ secrets: {} # Secrets that needs to be created
|
|||||||
# type: #default Opaque
|
# type: #default Opaque
|
||||||
# annotations: {}
|
# annotations: {}
|
||||||
# labels: {}
|
# labels: {}
|
||||||
|
# env: false #should template load each key in the seacret as
|
||||||
# data:
|
# data:
|
||||||
# KEY: VALUE
|
# KEY: VALUE
|
||||||
|
|
||||||
configs: {} # ConfigMaps that needs to be created
|
configs: {} # ConfigMaps that needs to be created
|
||||||
# configs:
|
# configs:
|
||||||
# <name>:
|
# <name>:
|
||||||
# enabled: false # should the configMap be created or not
|
|
||||||
# annotations: {}
|
# annotations: {}
|
||||||
# labels: {}
|
# labels: {}
|
||||||
|
# env: false #should template load each key in the seacret as
|
||||||
# data:
|
# data:
|
||||||
# KEY: VALUE
|
# KEY: VALUE
|
||||||
|
|
||||||
envFrom: [] # mount environment variables from secrets or configMaps
|
|
||||||
# - configMapRef:
|
|
||||||
# name: config-map-name
|
|
||||||
# - secretRef:
|
|
||||||
# name: secret-name
|
|
||||||
|
|
||||||
env: # environment variables the controller should have
|
env: # environment variables the controller should have
|
||||||
TZ: Europe/Stockholm
|
TZ: Europe/Stockholm
|
||||||
|
|
||||||
# Additional volumes on the output Deployment definition.
|
# Additional volumes on the output Deployment definition.
|
||||||
volumes: []
|
volumes: []
|
||||||
# - name: foo
|
# - name: foo
|
||||||
|
Loading…
Reference in New Issue
Block a user