You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/helm-on-gcp/nginx-helm.md
+20-12Lines changed: 20 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,18 @@ my-nginx/
26
26
└── templates/
27
27
```
28
28
29
+
### Clean templates
30
+
31
+
The default Helm chart includes several files that aren't required for a basic Redis deployment. Remove the following files from `my-nginx/templates/` to avoid unnecessary complexity and template errors: ingress.yaml, hpa.yaml, serviceaccount.yaml, tests/, NOTES.txt, and httproute.yaml.
Replace the contents of `my-nginx/values.yaml` with the following to define configurable parameters including the NGINX image, service type, and public port:
@@ -92,21 +104,17 @@ A LoadBalancer provides a public IP required for browser access and is a common
92
104
### Install & Access
93
105
94
106
```console
107
+
cd $HOME/helm-microservices
95
108
helm install nginx ./my-nginx
96
109
```
97
110
98
111
```output
99
112
NAME: nginx
100
-
LAST DEPLOYED: Tue Jan 6 07:55:52 2026
113
+
LAST DEPLOYED: Tue Jan 20 20:07:47 2026
101
114
NAMESPACE: default
102
115
STATUS: deployed
103
116
REVISION: 1
104
-
NOTES:
105
-
1. Get the application URL by running these commands:
106
-
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
107
-
You can watch its status by running 'kubectl get --namespace default svc -w nginx-my-nginx'
108
-
export SERVICE_IP=$(kubectl get svc --namespace default nginx-my-nginx --template "{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}")
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/helm-on-gcp/redis-helm.md
+24-6Lines changed: 24 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,11 +29,11 @@ my-redis/
29
29
30
30
### Clean templates
31
31
32
-
The default Helm chart includes several files that aren't required for a basic Redis deployment. Remove the following files from `my-redis/templates/` to avoid unnecessary complexity and template errors: ingress.yaml, hpa.yaml, serviceaccount.yaml, tests/, and NOTES.txt.
32
+
The default Helm chart includes several files that aren't required for a basic Redis deployment. Remove the following files from `my-redis/templates/` to avoid unnecessary complexity and template errors: ingress.yaml, hpa.yaml, serviceaccount.yaml, tests/, NOTES.txt, and httproute.yaml.
0 commit comments