File tree Expand file tree Collapse file tree 6 files changed +33
-19
lines changed Expand file tree Collapse file tree 6 files changed +33
-19
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
22name : azdo-proxy
33description : A Helm chart for azdo-proxy
44type : application
5- version : v0.3.2
6- appVersion : v0.3.2
5+ version : v0.3.3
6+ appVersion : v0.3.3
Original file line number Diff line number Diff line change 5656 volumes :
5757 - name : config
5858 secret :
59- secretName : {{ .Values.configSecretName }}
59+ secretName : {{ include "azdo-proxy.fullname" . }}
6060 {{- with .Values.nodeSelector }}
6161 nodeSelector :
6262 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change 1+ {{- if .Values.networkPolicy.enabled }}
2+ apiVersion : networking.k8s.io/v1
3+ kind : NetworkPolicy
4+ metadata :
5+ name : {{ include "azdo-proxy.fullname" . }}-deny-ingress
6+ labels :
7+ {{- include "azdo-proxy.labels" . | nindent 4 }}
8+ spec :
9+ policyTypes :
10+ - Ingress
11+ - Egress
12+ ingress :
13+ - from :
14+ - podSelector : {}
15+ egress :
16+ - {}
17+ podSelector : {}
18+ {{- end }}
Original file line number Diff line number Diff line change 1+ apiVersion : v1
2+ kind : Secret
3+ metadata :
4+ name : {{ include "azdo-proxy.fullname" . }}
5+ labels :
6+ {{- include "azdo-proxy.labels" . | nindent 4 }}
7+ data :
8+ config.json : {{ required "Config has to be set." .Values.config }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -44,4 +44,7 @@ tolerations: []
4444
4545affinity : {}
4646
47- configSecretName : " "
47+ networkPolicy :
48+ enabled : false
49+
50+ config : " "
You can’t perform that action at this time.
0 commit comments