aboutsummaryrefslogtreecommitdiff
path: root/grumpy/znc/templates/NOTES.txt
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2020-03-05 20:58:34 -0800
committerMax Resnick <max@ofmax.li>2020-03-05 20:58:34 -0800
commit745347bc347406a48c9e7cf20c17b8c3f1d8e961 (patch)
treea3965704264190fdede6007800ec5fabcb28482c /grumpy/znc/templates/NOTES.txt
parent109fad80f323567d6751c9f51e20dd41582d43bf (diff)
downloadgrumpy-charts-745347bc347406a48c9e7cf20c17b8c3f1d8e961.tar.gz
add znc
Diffstat (limited to '')
-rw-r--r--grumpy/znc/templates/NOTES.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/grumpy/znc/templates/NOTES.txt b/grumpy/znc/templates/NOTES.txt
new file mode 100644
index 0000000..0d8515f
--- /dev/null
+++ b/grumpy/znc/templates/NOTES.txt
@@ -0,0 +1,21 @@
+1. Get the application URL by running these commands:
+{{- if .Values.ingress.enabled }}
+{{- range $host := .Values.ingress.hosts }}
+ {{- range .paths }}
+ http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }}
+ {{- end }}
+{{- end }}
+{{- else if contains "NodePort" .Values.service.type }}
+ export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "znc.fullname" . }})
+ export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
+ echo http://$NODE_IP:$NODE_PORT
+{{- else if contains "LoadBalancer" .Values.service.type }}
+ NOTE: It may take a few minutes for the LoadBalancer IP to be available.
+ You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "znc.fullname" . }}'
+ export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "znc.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
+ echo http://$SERVICE_IP:{{ .Values.service.port }}
+{{- else if contains "ClusterIP" .Values.service.type }}
+ export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "znc.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
+ echo "Visit http://127.0.0.1:8080 to use your application"
+ kubectl port-forward $POD_NAME 8080:80
+{{- end }}