Add namespace to command documentation in NOTES.txt (#13870)

Bump chart version

Signed-off-by: Jim Robinson <jscrobinson@gmail.com>
Signed-off-by: Jim Robinson <jim@croud.co.uk>
This commit is contained in:
James Robinson
2019-05-15 15:11:18 -07:00
committed by Kubernetes Prow Robot
parent c0e04eaba5
commit 99e75356ad
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ description: A Helm chart to install an openvpn server inside a kubernetes clust
generation is also part of the deployment, and this chart will generate client keys
as needed.
name: openvpn
version: 3.12.3
version: 3.12.4
appVersion: 1.1.0
maintainers:
- name: jfelten
+2 -2
View File
@@ -4,11 +4,11 @@ Please be aware that certificate generation is variable and may take some time (
Check pod status with the command:
POD_NAME=$(kubectl get pods --namespace "{{ .Release.Namespace }}" -l app=openvpn -o jsonpath='{ .items[0].metadata.name }') && kubectl logs $POD_NAME --follow
POD_NAME=$(kubectl get pods --namespace "{{ .Release.Namespace }}" -l app=openvpn -o jsonpath='{ .items[0].metadata.name }') && kubectl --namespace "{{ .Release.Namespace }}" logs $POD_NAME --follow
LoadBalancer ingress creation can take some time as well. Check service status with the command:
kubectl get svc
kubectl --namespace "{{ .Release.Namespace }}" get svc
{{ if and (eq "NodePort" .Values.service.type) (hasKey .Values.service "nodePort") }}
You set the service type to NodePort, port {{ .Values.service.nodePort }} will be used on each node.
{{ end }}