Fix the chart and add basic tests

This commit is contained in:
Nikolai Rodionov 2023-10-23 07:51:38 +02:00
parent 22338d31aa
commit caba35b2ce
No known key found for this signature in database
GPG Key ID: 19DB54039EBF8F10
4 changed files with 224 additions and 19 deletions

View File

@ -3,8 +3,8 @@ apiVersion: v2
name: openvpn name: openvpn
description: A Helm chart for deploying OpenVPN description: A Helm chart for deploying OpenVPN
type: application type: application
version: 1.0.6 version: 1.0.7
appVersion: "2.6.5" appVersion: 2.6.5
sources: sources:
- https://git.badhouseplants.net/allanger/container-openvpn-xor - https://git.badhouseplants.net/allanger/container-openvpn-xor

View File

@ -39,7 +39,6 @@ spec:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
volumeMounts: volumeMounts:
@ -48,8 +47,10 @@ spec:
- mountPath: /scripts - mountPath: /scripts
name: pki-scripts name: pki-scripts
env: env:
- name: OVPN_SERVER - name: OVPN_SERVER
value: "{{ .Values.openvpn.proto }}://{{ .Values.openvpn.host }}:{{ .Values.openvpn.port }}" value: "{{ .Values.openvpn.proto }}://{{ .Values.openvpn.host }}:{{ .Values.openvpn.port }}"
- name: OPENVPN
value: "/etc/openvpn"
securityContext: securityContext:
capabilities: capabilities:
add: add:
@ -60,6 +61,7 @@ spec:
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
- name: 0-ovpn-genconfig - name: 0-ovpn-genconfig
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
volumeMounts: volumeMounts:
- mountPath: "/etc/openvpn" - mountPath: "/etc/openvpn"
name: pvc-openvpn name: pvc-openvpn
@ -67,7 +69,9 @@ spec:
- name: OVPN_SERVER_URL - name: OVPN_SERVER_URL
value: "{{ .Values.openvpn.proto }}://{{ .Values.openvpn.host }}:{{ .Values.openvpn.port }}" value: "{{ .Values.openvpn.proto }}://{{ .Values.openvpn.host }}:{{ .Values.openvpn.port }}"
- name: OVPN_DATA - name: OVPN_DATA
value: "/etc/openvpn" value: "/etc/openvpn"
- name: OPENVPN
value: "/etc/openvpn"
command: command:
- sh - sh
- -c - -c
@ -76,6 +80,8 @@ spec:
env: env:
- name: OVPN_DATA - name: OVPN_DATA
value: /etc/openvpn value: /etc/openvpn
- name: OPENVPN
value: "/etc/openvpn"
- name: EASYRSA_REQ_CN - name: EASYRSA_REQ_CN
value: {{ .Values.easyrsa.cn }} value: {{ .Values.easyrsa.cn }}
- name: EASYRSA_REQ_COUNTRY - name: EASYRSA_REQ_COUNTRY
@ -104,6 +110,7 @@ spec:
- mountPath: /scripts - mountPath: /scripts
name: pki-scripts name: pki-scripts
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: command:
- bash - bash
- /scripts/init_pki.sh - /scripts/init_pki.sh

View File

@ -1,15 +1,200 @@
{{- $version := semver .Capabilities.KubeVersion.Version }}
{{- if .Values.tests.enabled }}
# ---------------------------------------------------------------------
# -- Test that CRDs are installed
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "openvpn-chart.fullname" . }}-test-script
labels:
{{- include "openvpn-chart.selectorLabels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
{{- if .Values.tests.cleanup }}
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
{{- end }}
"helm.sh/hook-weight": "6"
data:
get_config.sh: |-
#!/bin/bash
kubectl rollout status deployment/{{ include "openvpn-chart.fullname" . }}
kubectl exec deployment/{{ include "openvpn-chart.fullname" . }} -- ovpn_genclientcert test nopass
kubectl exec deployment/{{ include "openvpn-chart.fullname" . }} -- ovpn_getclient test > /data/test.ovpn
test_connection.sh : |-
sed -i "s/127.0.0.1/{{ include "openvpn-chart.fullname" . }}/g" /data/test.ovpn
mkdir -p /dev/net
mknod /dev/net/tun c 10 200
chmod 600 /dev/net/tun
openvpn --config /data/test.ovpn --daemon --log-append /tmp/ovpnlog
tail -n0 -f /tmp/ovpnlog | sed '/Initialization Sequence Completed/ q'
---
# ---------------------------------------------------------------------
# -- Prepare roles and bindings to access k8s resources from the test
# ---------------------------------------------------------------------
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: {{ include "openvpn-chart.fullname" . }}-test-role
labels:
{{- include "openvpn-chart.selectorLabels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
{{- if .Values.tests.cleanup }}
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
{{- end }}
"helm.sh/hook-weight": "1"
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "openvpn-chart.fullname" . }}-gsql-dbin-sa
labels:
{{- include "openvpn-chart.selectorLabels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
{{- if .Values.tests.cleanup }}
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
{{- end }}
"helm.sh/hook-weight": "1"
automountServiceAccountToken: true
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: {{ include "openvpn-chart.fullname" . }}-gsql-dbin-rb
labels:
{{- include "openvpn-chart.selectorLabels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
{{- if .Values.tests.cleanup }}
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
{{- end }}
"helm.sh/hook-weight": "1"
subjects:
- kind: ServiceAccount
name: {{ include "openvpn-chart.fullname" . }}-gsql-dbin-sa
namespace: {{ .Release.Namespace }}
roleRef:
kind: ClusterRole
name: {{ include "openvpn-chart.fullname" . }}-test-role
apiGroup: rbac.authorization.k8s.io
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: {{ include "openvpn-chart.fullname" . }}-test
annotations:
"helm.sh/hook": test
{{- if .Values.tests.cleanup }}
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
{{- end }}
"helm.sh/hook-weight": "7"
labels:
{{- include "openvpn-chart.labels" . | nindent 4 }}
spec:
storageClassName: {{ .Values.storage.class }}
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 512Mi
---
apiVersion: v1 apiVersion: v1
kind: Pod kind: Pod
metadata: metadata:
name: "{{ include "openvpn-chart.fullname" . }}-test-connection" name: {{ include "openvpn-chart.fullname" . }}-test
labels: labels:
{{- include "openvpn-chart.labels" . | nindent 4 }} {{- include "openvpn-chart.selectorLabels" . | nindent 4 }}
annotations: annotations:
"helm.sh/hook": test "helm.sh/hook": test
{{- if .Values.tests.cleanup }}
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
{{- end }}
"helm.sh/hook-weight": "7"
spec: spec:
serviceAccountName: {{ include "openvpn-chart.fullname" . }}-gsql-dbin-sa
automountServiceAccountToken: true
volumes:
- name: test-script
configMap:
name: {{ include "openvpn-chart.fullname" . }}-test-script
- name: data
persistentVolumeClaim:
claimName: {{ include "openvpn-chart.fullname" . }}-test
containers: containers:
- name: wget - name: tester
image: busybox image: alpine/k8s:{{ $version.Major }}.{{ $version.Minor }}.{{ $version.Patch }}
command: ['wget'] volumeMounts:
args: ['{{ include "openvpn-chart.fullname" . }}:{{ .Values.service.port }}'] - name: test-script
readOnly: true
mountPath: /get_config.sh
subPath: get_config.sh
- name: data
readOnly: false
mountPath: /data
command:
- bash
args:
- -e
- /get_config.sh
restartPolicy: Never restartPolicy: Never
---
apiVersion: v1
kind: Pod
metadata:
name: {{ include "openvpn-chart.fullname" . }}-test-connection
labels:
{{- include "openvpn-chart.selectorLabels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
{{- if .Values.tests.cleanup }}
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
{{- end }}
"helm.sh/hook-weight": "7"
spec:
serviceAccountName: {{ include "openvpn-chart.fullname" . }}-gsql-dbin-sa
automountServiceAccountToken: true
volumes:
- name: data
persistentVolumeClaim:
claimName: {{ include "openvpn-chart.fullname" . }}-test
- name: test-script
configMap:
name: {{ include "openvpn-chart.fullname" . }}-test-script
containers:
- name: tester
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
volumeMounts:
- name: data
readOnly: false
mountPath: /data
- name: test-script
readOnly: true
mountPath: /test_connection.sh
subPath: test_connection.sh
command:
- bash
args:
- -e
- /test_connection.sh
securityContext:
capabilities:
add:
- NET_ADMIN
restartPolicy: Never
{{- end }}

View File

@ -1,19 +1,27 @@
# Default values for openvpn-chart. # Default values for openvpn-chart.
image: image:
repository: git.badhouseplants.net/allanger/container-openvpn # repository: git.badhouseplants.net/allanger/container-openvpn
pullPolicy: IfNotPresent repository: openvpn
pullPolicy: Never
# ------------------------------------------- # -------------------------------------------
# -- TODO: Switch to proper versions # -- TODO: Switch to proper versions
# ------------------------------------------- # -------------------------------------------
tag: v2.6.6 # tag: v2.6.6
tag: latest
# ----------------------------- # -----------------------------
# -- Open VPN configuration # -- Open VPN configuration
# ----------------------------- # -----------------------------
openvpn: openvpn:
proto: udp proto: tcp
host: 127.0.0.1 host: 127.0.0.1
port: 1194 port: 1194
# ---------------------------------------
# -- Deploy OpenVPN admin
# -- https://github.com/flant/ovpn-admin
# ---------------------------------------
openvpn_admin:
enabled: true
# ----------------------------- # -----------------------------
# -- Easy RSA configuration # -- Easy RSA configuration
# ----------------------------- # -----------------------------
@ -35,7 +43,7 @@ imagePullSecrets: []
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""
storage: storage:
class: microk8s-hostpath class: local-path
size: 1Gi size: 1Gi
serviceAccount: serviceAccount:
# Specifies whether a service account should be created # Specifies whether a service account should be created
@ -60,8 +68,9 @@ securityContext: {}
# runAsUser: 1000 # runAsUser: 1000
service: service:
type: LoadBalancer type: ClusterIP
port: 1194 port: 1194
protocol: TCP
resources: {} resources: {}
@ -74,7 +83,7 @@ resources: {}
# memory: 128Mi # memory: 128Mi
# requests: # requests:
# cpu: 100m # cpu: 100m
# memory: 128Mi # memory: 128Mi
autoscaling: autoscaling:
enabled: false enabled: false
@ -88,3 +97,7 @@ nodeSelector: {}
tolerations: [] tolerations: []
affinity: {} affinity: {}
tests:
enabled: true
cleanup: true