Skip to content

Commit 77ae8d1

Browse files
FIX (helm): Fix Helm path in readmes
1 parent 2f20845 commit 77ae8d1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ cd postgresus
171171
**Step 2:** Install with Helm:
172172

173173
```bash
174-
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace
174+
helm install postgresus ./deploy/helm -n postgresus --create-namespace
175175
```
176176

177177
**Step 3:** Get the external IP:
@@ -182,7 +182,7 @@ kubectl get svc -n postgresus
182182

183183
Access Postgresus at `http://<EXTERNAL-IP>` (port 80).
184184

185-
To customize the installation (e.g., storage size, NodePort instead of LoadBalancer), see the [Helm chart README](deploy/postgresus/README.md) for all configuration options.
185+
To customize the installation (e.g., storage size, NodePort instead of LoadBalancer), see the [Helm chart README](deploy/helm/README.md) for all configuration options.
186186

187187
---
188188

deploy/helm/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Installation
44

55
```bash
6-
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace
6+
helm install postgresus ./deploy/helm -n postgresus --create-namespace
77
```
88

99
After installation, get the external IP:
@@ -80,7 +80,7 @@ Ingress is disabled by default. The chart uses LoadBalancer service for direct I
8080
Default installation exposes Postgresus via LoadBalancer on port 80:
8181

8282
```bash
83-
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace
83+
helm install postgresus ./deploy/helm -n postgresus --create-namespace
8484
```
8585

8686
Access via `http://<EXTERNAL-IP>`
@@ -99,7 +99,7 @@ service:
9999
```
100100
101101
```bash
102-
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace -f nodeport-values.yaml
102+
helm install postgresus ./deploy/helm -n postgresus --create-namespace -f nodeport-values.yaml
103103
```
104104

105105
Access via `http://<NODE-IP>:30080`
@@ -133,7 +133,7 @@ ingress:
133133
```
134134
135135
```bash
136-
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace -f ingress-values.yaml
136+
helm install postgresus ./deploy/helm -n postgresus --create-namespace -f ingress-values.yaml
137137
```
138138

139139
### Custom Storage Size
@@ -146,5 +146,5 @@ persistence:
146146
```
147147
148148
```bash
149-
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace -f storage-values.yaml
149+
helm install postgresus ./deploy/helm -n postgresus --create-namespace -f storage-values.yaml
150150
```

0 commit comments

Comments
 (0)