Skip to content

Commit b0ef50c

Browse files
fix
1 parent 08e0f6c commit b0ef50c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/components/InstallationComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ cd postgresus`,
8686
},
8787
{
8888
label: "Install the Helm chart",
89-
code: `helm install postgresus ./deploy/postgresus -n postgresus --create-namespace`,
89+
code: `helm install postgresus ./deploy/helm -n postgresus --create-namespace`,
9090
},
9191
{
9292
label: "Get the external IP",

app/installation/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ sudo curl -sSL https://raw.githubusercontent.com/RostislavDugin/postgresus/refs/
6363
const helmClone = `git clone https://github.com/RostislavDugin/postgresus.git
6464
cd postgresus`;
6565

66-
const helmInstall = `helm install postgresus ./deploy/postgresus -n postgresus --create-namespace`;
66+
const helmInstall = `helm install postgresus ./deploy/helm -n postgresus --create-namespace`;
6767

6868
const helmGetSvc = `kubectl get svc -n postgresus`;
6969

70-
const helmUpgrade = `helm upgrade postgresus ./deploy/postgresus -n postgresus`;
70+
const helmUpgrade = `helm upgrade postgresus ./deploy/helm -n postgresus`;
7171

7272
return (
7373
<>
@@ -311,7 +311,7 @@ cd postgresus`;
311311
<p>
312312
See the{" "}
313313
<a
314-
href="https://github.com/RostislavDugin/postgresus/tree/main/deploy/postgresus"
314+
href="https://github.com/RostislavDugin/postgresus/tree/main/deploy/helm"
315315
target="_blank"
316316
rel="noopener noreferrer"
317317
className="text-blue-600 hover:text-blue-700"

0 commit comments

Comments
 (0)