File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed
Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : wireguard
33description : A Helm chart for managing a wireguard vpn in kubernetes
44type : application
5- version : 0.21 .0
5+ version : 0.22 .0
66appVersion : " 0.0.0"
77maintainers :
88 - name : bryopsida
Original file line number Diff line number Diff line change 11# wireguard
22
3- ![ Version: 0.21 .0] ( https://img.shields.io/badge/Version-0.21 .0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.0.0] ( https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square )
3+ ![ Version: 0.22 .0] ( https://img.shields.io/badge/Version-0.22 .0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.0.0] ( https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square )
44
55A Helm chart for managing a wireguard vpn in kubernetes
66
@@ -110,6 +110,7 @@ A Helm chart for managing a wireguard vpn in kubernetes
110110| securityContext.readOnlyRootFilesystem | bool | ` true ` | |
111111| securityContext.runAsNonRoot | bool | ` true ` | |
112112| securityContext.runAsUser | int | ` 1000 ` | |
113+ | service.annotations | object | ` {} ` | Annotations |
113114| service.enabled | bool | ` true ` | Whether the service will be created or not |
114115| service.externalTrafficPolicy | string | ` "" ` | External Traffic Policy for the service |
115116| service.loadBalancerIP | string | ` "" ` | IP to assign to the LoadBalancer service |
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ metadata:
55 name : " {{ .Release.Name }}-wireguard"
66 labels :
77 app : " {{ .Release.Name }}-wireguard"
8+ {{- if .Values.service.annotations }}
9+ annotations :
10+ {{- toYaml .Values.service.annotations | nindent 4 }}
11+ {{- end }}
812spec :
913 type : {{ .Values.service.type }}
1014 ports :
Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ service:
7070 externalTrafficPolicy : " "
7171 # -- IP to assign to the LoadBalancer service
7272 loadBalancerIP : " "
73+ # -- Annotations
74+ annotations : {}
7375# -- Name of a secret with a wireguard private key on key privatekey, if not provided on first install a hook generates one.
7476secretName : ~
7577replicaCount : 3
You can’t perform that action at this time.
0 commit comments