mirror of
https://github.com/helm/charts.git
synced 2026-08-19 20:37:05 +00:00
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:
committed by
Kubernetes Prow Robot
parent
c0e04eaba5
commit
99e75356ad
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user