Skip to content

Commit

Permalink
Merge pull request #33 from klauserber/fix/deploy-strategy
Browse files Browse the repository at this point in the history
Fix/deploy strategy
  • Loading branch information
bryopsida authored Dec 13, 2023
2 parents e14819f + 3168597 commit e593659
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/wireguard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: wireguard
description: A Helm chart for managing a wireguard vpn in kubernetes
type: application
version: 0.16.1
version: 0.16.2
appVersion: "0.0.0"
maintainers:
- name: bryopsida
4 changes: 2 additions & 2 deletions helm/wireguard/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# wireguard

![Version: 0.16.1](https://img.shields.io/badge/Version-0.16.1-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)
![Version: 0.16.2](https://img.shields.io/badge/Version-0.16.2-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)

A Helm chart for managing a wireguard vpn in kubernetes

Expand Down Expand Up @@ -109,4 +109,4 @@ A Helm chart for managing a wireguard vpn in kubernetes
| wireguard.serverCidr | string | `"10.34.0.0/24"` | Subnet for your VPN, take care not to clash with cluster POD cidr |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3)
5 changes: 5 additions & 0 deletions helm/wireguard/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ spec:
matchLabels:
app: "{{ .Release.Name }}-wireguard"
{{- if not .Values.daemonSet }}
{{- if eq .Values.deploymentStrategy.type "RollingUpdate" }}
strategy: {{ .Values.deploymentStrategy | toYaml | nindent 4 }}
{{- else }}
strategy:
type: {{ .Values.deploymentStrategy.type }}
{{- end }}
{{- end }}
template:
metadata:
Expand Down

0 comments on commit e593659

Please sign in to comment.