Skip to content

Commit 463e61c

Browse files
author
Barkha Choithani
committed
added usage info in notes.txt
1 parent f3b2d40 commit 463e61c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

charts/templates/NOTES.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Thank you for installing {{ .Chart.Name }}.
2+
3+
Your release is named {{ .Release.Name }}.
4+
5+
To check the status of the release, try:
6+
7+
$ helm status {{ .Release.Name }}
8+
9+
To get all resources of the release, try:
10+
11+
$ helm get all {{ .Release.Name }}
12+
13+
To get the pods in the {{ .Release.Namespace }}, try:
14+
15+
$ kubectl get pods --namespace={{ .Release.Namespace }}
16+
17+
To get all services in the {{ .Release.Namespace }}, try:
18+
19+
$ kubectl get services --namespace=default
20+
21+
To connect to the {{ .Chart.Name }} cluster, use port forwarding:
22+
23+
To access the whole cluster, forward the port to the service:
24+
25+
$ kubectl port-forward svc/{{ include "marklogic.fullname" . }} 8001:8001
26+
27+
To access a pod, forward the port to the pod using:
28+
29+
$ kubectl port-forward {{ include "marklogic.fullname" . }}-0 8001:8001

0 commit comments

Comments
 (0)