aboutsummaryrefslogtreecommitdiff
path: root/grumpy/znc/templates
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2020-03-05 20:58:34 -0800
committerMax Resnick <max@ofmax.li>2020-03-05 20:58:34 -0800
commit745347bc347406a48c9e7cf20c17b8c3f1d8e961 (patch)
treea3965704264190fdede6007800ec5fabcb28482c /grumpy/znc/templates
parent109fad80f323567d6751c9f51e20dd41582d43bf (diff)
downloadgrumpy-charts-745347bc347406a48c9e7cf20c17b8c3f1d8e961.tar.gz
add znc
Diffstat (limited to 'grumpy/znc/templates')
-rw-r--r--grumpy/znc/templates/NOTES.txt21
-rw-r--r--grumpy/znc/templates/_helpers.tpl56
-rw-r--r--grumpy/znc/templates/deployment.yaml56
-rw-r--r--grumpy/znc/templates/ingress.yaml37
-rw-r--r--grumpy/znc/templates/secrets.yaml14
-rw-r--r--grumpy/znc/templates/service.yaml16
-rw-r--r--grumpy/znc/templates/serviceaccount.yaml8
-rw-r--r--grumpy/znc/templates/tests/test-connection.yaml15
8 files changed, 223 insertions, 0 deletions
diff --git a/grumpy/znc/templates/NOTES.txt b/grumpy/znc/templates/NOTES.txt
new file mode 100644
index 0000000..0d8515f
--- /dev/null
+++ b/grumpy/znc/templates/NOTES.txt
@@ -0,0 +1,21 @@
+1. Get the application URL by running these commands:
+{{- if .Values.ingress.enabled }}
+{{- range $host := .Values.ingress.hosts }}
+ {{- range .paths }}
+ http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }}
+ {{- end }}
+{{- end }}
+{{- else if contains "NodePort" .Values.service.type }}
+ export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "znc.fullname" . }})
+ export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
+ echo http://$NODE_IP:$NODE_PORT
+{{- else if contains "LoadBalancer" .Values.service.type }}
+ NOTE: It may take a few minutes for the LoadBalancer IP to be available.
+ You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "znc.fullname" . }}'
+ export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "znc.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
+ echo http://$SERVICE_IP:{{ .Values.service.port }}
+{{- else if contains "ClusterIP" .Values.service.type }}
+ export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "znc.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
+ echo "Visit http://127.0.0.1:8080 to use your application"
+ kubectl port-forward $POD_NAME 8080:80
+{{- end }}
diff --git a/grumpy/znc/templates/_helpers.tpl b/grumpy/znc/templates/_helpers.tpl
new file mode 100644
index 0000000..c1801c6
--- /dev/null
+++ b/grumpy/znc/templates/_helpers.tpl
@@ -0,0 +1,56 @@
+{{/* vim: set filetype=mustache: */}}
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "znc.name" -}}
+{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+
+{{/*
+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).
+If release name contains chart name it will be used as a full name.
+*/}}
+{{- define "znc.fullname" -}}
+{{- if .Values.fullnameOverride -}}
+{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
+{{- else -}}
+{{- $name := default .Chart.Name .Values.nameOverride -}}
+{{- if contains $name .Release.Name -}}
+{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
+{{- else -}}
+{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+{{- end -}}
+{{- end -}}
+
+{{/*
+Create chart name and version as used by the chart label.
+*/}}
+{{- define "znc.chart" -}}
+{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+
+{{/*
+Common labels
+*/}}
+{{- define "znc.labels" -}}
+app.kubernetes.io/name: {{ include "znc.name" . }}
+helm.sh/chart: {{ include "znc.chart" . }}
+app.kubernetes.io/instance: {{ .Release.Name }}
+{{- if .Chart.AppVersion }}
+app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
+{{- end }}
+app.kubernetes.io/managed-by: {{ .Release.Service }}
+{{- end -}}
+
+{{/*
+Create the name of the service account to use
+*/}}
+{{- define "znc.serviceAccountName" -}}
+{{- if .Values.serviceAccount.create -}}
+ {{ default (include "znc.fullname" .) .Values.serviceAccount.name }}
+{{- else -}}
+ {{ default "default" .Values.serviceAccount.name }}
+{{- end -}}
+{{- end -}}
diff --git a/grumpy/znc/templates/deployment.yaml b/grumpy/znc/templates/deployment.yaml
new file mode 100644
index 0000000..e33b6ac
--- /dev/null
+++ b/grumpy/znc/templates/deployment.yaml
@@ -0,0 +1,56 @@
+{{- $fullName := include "znc.fullname" . -}}
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: {{ $fullName }}
+ labels:
+{{ include "znc.labels" . | indent 4 }}
+spec:
+ replicas: {{ .Values.replicaCount }}
+ selector:
+ matchLabels:
+ app.kubernetes.io/name: {{ include "znc.name" . }}
+ app.kubernetes.io/instance: {{ .Release.Name }}
+ template:
+ metadata:
+ labels:
+ app.kubernetes.io/name: {{ include "znc.name" . }}
+ app.kubernetes.io/instance: {{ .Release.Name }}
+ spec:
+ {{- with .Values.imagePullSecrets }}
+ imagePullSecrets:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
+ serviceAccountName: {{ template "znc.serviceAccountName" . }}
+ securityContext:
+ runAsUser: 1000
+ runAsGroup: 1000
+ fsGroup: 1000
+ containers:
+ - name: {{ .Chart.Name }}
+ image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+ imagePullPolicy: {{ .Values.image.pullPolicy }}
+ resources:
+ {{- toYaml .Values.resources | nindent 12 }}
+ volumeMounts:
+ - name: zncconf
+ mountPath: "/mnt/config"
+ volumes:
+ - name: zncconf
+ secret:
+ secretName: {{ $fullName }}-confs
+ items:
+ - key: znc
+ path: znc.tar.gz
+ {{- with .Values.nodeSelector }}
+ nodeSelector:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
+ {{- with .Values.affinity }}
+ affinity:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
+ {{- with .Values.tolerations }}
+ tolerations:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
diff --git a/grumpy/znc/templates/ingress.yaml b/grumpy/znc/templates/ingress.yaml
new file mode 100644
index 0000000..d307bf1
--- /dev/null
+++ b/grumpy/znc/templates/ingress.yaml
@@ -0,0 +1,37 @@
+{{- if .Values.ingress.enabled -}}
+{{- $fullName := include "znc.fullname" . -}}
+{{- $svcPort := .Values.service.port -}}
+apiVersion: extensions/v1beta1
+kind: Ingress
+metadata:
+ name: {{ $fullName }}
+ labels:
+{{ include "znc.labels" . | indent 4 }}
+ {{- with .Values.ingress.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+spec:
+{{- if .Values.ingress.tls }}
+ tls:
+ {{- range .Values.ingress.tls }}
+ - hosts:
+ {{- range .hosts }}
+ - {{ . | quote }}
+ {{- end }}
+ secretName: {{ .secretName }}
+ {{- end }}
+{{- end }}
+ rules:
+ {{- range .Values.ingress.hosts }}
+ - host: {{ .host | quote }}
+ http:
+ paths:
+ {{- range .paths }}
+ - path: {{ . }}
+ backend:
+ serviceName: {{ $fullName }}
+ servicePort: {{ $svcPort }}
+ {{- end }}
+ {{- end }}
+{{- end }}
diff --git a/grumpy/znc/templates/secrets.yaml b/grumpy/znc/templates/secrets.yaml
new file mode 100644
index 0000000..22b9e9a
--- /dev/null
+++ b/grumpy/znc/templates/secrets.yaml
@@ -0,0 +1,14 @@
+{{- $fullName := include "znc.fullname" . -}}
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{ $fullName }}-confs
+ type: Opaque
+ labels:
+{{ include "znc.labels" . | indent 4 }}
+data:
+{{- range $path, $value := .Values.confs }}
+{{ $path | indent 2 }}: |-
+{{ $value | indent 4 }}
+{{- end }}
+
diff --git a/grumpy/znc/templates/service.yaml b/grumpy/znc/templates/service.yaml
new file mode 100644
index 0000000..77b7f45
--- /dev/null
+++ b/grumpy/znc/templates/service.yaml
@@ -0,0 +1,16 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: {{ include "znc.fullname" . }}
+ labels:
+{{ include "znc.labels" . | indent 4 }}
+spec:
+ type: {{ .Values.service.type }}
+ ports:
+ - port: {{ .Values.service.port }}
+ targetPort: 6555
+ protocol: TCP
+ name: http
+ selector:
+ app.kubernetes.io/name: {{ include "znc.name" . }}
+ app.kubernetes.io/instance: {{ .Release.Name }}
diff --git a/grumpy/znc/templates/serviceaccount.yaml b/grumpy/znc/templates/serviceaccount.yaml
new file mode 100644
index 0000000..f21c536
--- /dev/null
+++ b/grumpy/znc/templates/serviceaccount.yaml
@@ -0,0 +1,8 @@
+{{- if .Values.serviceAccount.create -}}
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+ name: {{ template "znc.serviceAccountName" . }}
+ labels:
+{{ include "znc.labels" . | indent 4 }}
+{{- end -}}
diff --git a/grumpy/znc/templates/tests/test-connection.yaml b/grumpy/znc/templates/tests/test-connection.yaml
new file mode 100644
index 0000000..4abc720
--- /dev/null
+++ b/grumpy/znc/templates/tests/test-connection.yaml
@@ -0,0 +1,15 @@
+apiVersion: v1
+kind: Pod
+metadata:
+ name: "{{ include "znc.fullname" . }}-test-connection"
+ labels:
+{{ include "znc.labels" . | indent 4 }}
+ annotations:
+ "helm.sh/hook": test-success
+spec:
+ containers:
+ - name: wget
+ image: busybox
+ command: ['wget']
+ args: ['{{ include "znc.fullname" . }}:{{ .Values.service.port }}']
+ restartPolicy: Never