FIX (helm): Fix Helm path in readmes

This commit is contained in:
Rostislav Dugin
2025-12-02 17:43:43 +03:00
parent 2f20845b3d
commit 77ae8d1ac7
2 changed files with 7 additions and 7 deletions

View File

@@ -171,7 +171,7 @@ cd postgresus
**Step 2:** Install with Helm:
```bash
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace
helm install postgresus ./deploy/helm -n postgresus --create-namespace
```
**Step 3:** Get the external IP:
@@ -182,7 +182,7 @@ kubectl get svc -n postgresus
Access Postgresus at `http://<EXTERNAL-IP>` (port 80).
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.
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.
---

View File

@@ -3,7 +3,7 @@
## Installation
```bash
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace
helm install postgresus ./deploy/helm -n postgresus --create-namespace
```
After installation, get the external IP:
@@ -80,7 +80,7 @@ Ingress is disabled by default. The chart uses LoadBalancer service for direct I
Default installation exposes Postgresus via LoadBalancer on port 80:
```bash
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace
helm install postgresus ./deploy/helm -n postgresus --create-namespace
```
Access via `http://<EXTERNAL-IP>`
@@ -99,7 +99,7 @@ service:
```
```bash
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace -f nodeport-values.yaml
helm install postgresus ./deploy/helm -n postgresus --create-namespace -f nodeport-values.yaml
```
Access via `http://<NODE-IP>:30080`
@@ -133,7 +133,7 @@ ingress:
```
```bash
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace -f ingress-values.yaml
helm install postgresus ./deploy/helm -n postgresus --create-namespace -f ingress-values.yaml
```
### Custom Storage Size
@@ -146,5 +146,5 @@ persistence:
```
```bash
helm install postgresus ./deploy/postgresus -n postgresus --create-namespace -f storage-values.yaml
helm install postgresus ./deploy/helm -n postgresus --create-namespace -f storage-values.yaml
```