Fix image ref

Signed-off-by: maksim.nabokikh <max.nabokih@gmail.com>
This commit is contained in:
maksim.nabokikh 2025-03-04 07:57:06 +01:00
parent a097cd35fa
commit 02ff04d069
3 changed files with 6 additions and 6 deletions

View File

@ -23,10 +23,10 @@ Kubernetes: `>=1.14.0-0`
| Key | Type | Default | Description | | Key | Type | Default | Description |
|-----|------|---------|-------------| |-----|------|---------|-------------|
| domain | string | `"changeme"` | | | domain | string | `"changeme"` | |
| ovpnAdmin.image | string | `"changeme"` | | | ovpnAdmin.repo | string | `"ghcr.io/palark/ovpn-admin/ovpn-admin"` | |
| ovpnAdmin.basicAuth.user | string | `"admin"` | | | ovpnAdmin.basicAuth.user | string | `"admin"` | |
| ovpnAdmin.basicAuth.password | string | `"changeme"` | | | ovpnAdmin.basicAuth.password | string | `"changeme"` | |
| openvpn.repo | string | `"ghcr.io/palark/ovpn-admin"` | | | openvpn.repo | string | `"ghcr.io/palark/ovpn-admin/openvpn"` | |
| openvpn.subnet | string | `"172.16.200.0/255.255.255.0"` | | | openvpn.subnet | string | `"172.16.200.0/255.255.255.0"` | |
| openvpn.inlet | string | `"HostPort"` | | | openvpn.inlet | string | `"HostPort"` | |
| openvpn.hostPort | int | `1194` | | | openvpn.hostPort | int | `1194` | |

View File

@ -24,7 +24,7 @@ spec:
serviceAccountName: openvpn serviceAccountName: openvpn
containers: containers:
- name: ovpn-admin - name: ovpn-admin
image: {{ .Values.ovpnAdmin.repo }}/ovpn-admin:master image: {{ .Values.ovpnAdmin.repo }}:master
command: command:
- /bin/sh - /bin/sh
- -c - -c
@ -60,7 +60,7 @@ spec:
- name: ccd - name: ccd
mountPath: /mnt/ccd mountPath: /mnt/ccd
- name: openvpn - name: openvpn
image: {{ .Values.ovpnAdmin.repo }}/openvpn:master image: {{ .Values.ovpnAdmin.repo }}:master
command: [ '/entrypoint.sh' ] command: [ '/entrypoint.sh' ]
# imagePullPolicy: Always # imagePullPolicy: Always
securityContext: securityContext:

View File

@ -1,11 +1,11 @@
domain: changeme domain: changeme
ovpnAdmin: ovpnAdmin:
image: changeme repo: ghcr.io/palark/ovpn-admin/ovpn-admin
basicAuth: basicAuth:
user: admin user: admin
password: changeme password: changeme
openvpn: openvpn:
repo: ghcr.io/palark/ovpn-admin repo: ghcr.io/palark/ovpn-admin/openvpn
subnet: 172.16.200.0/255.255.255.0 subnet: 172.16.200.0/255.255.255.0
# LoadBalancer or ExternalIP or HostPort # LoadBalancer or ExternalIP or HostPort
inlet: HostPort inlet: HostPort