Skip to content

Commit 652addb

Browse files
committed
fix helm chart settings
1 parent da461c6 commit 652addb

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

documentation/docs/tech-docs/getting-started.mdx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,15 @@ import dedent from 'ts-dedent'
2727
2828
<CodeBlock language="bash">
2929
{dedent`
30-
helm upgrade in-cloud-web oci://registry-1.docker.io/prorobotech/incloud-web-chart \\
31-
--namespace in-cloud-web \\
32-
--install \\
33-
--set incloud-web-resources.enabled=false \\
34-
--set fullnameOverride=in-cloud-web
30+
helm upgrade in-cloud-web oci://registry-1.docker.io/prorobotech/incloud-web-chart \
31+
--namespace in-cloud-web \
32+
--install \
33+
--set incloud-web-resources.enabled=false \
34+
--set fullnameOverride=in-cloud-web \
35+
--set externalDomain=127.0.0.1 \
36+
--set externalDomainPort=8081 \
37+
--set-json 'service.ports=[{"name":"web-http","port":8080,"targetPort":8080,"protocol":"TCP"},{"name":"nginx-http","port":8081,"targetPort":8081,"protocol":"TCP"},{"name":"bff-http","port":8082,"targetPort":8082,"protocol":"TCP"}]' \
38+
--create-namespace
3539
`}
3640
</CodeBlock>
3741

@@ -59,7 +63,7 @@ import dedent from 'ts-dedent'
5963

6064
<CodeBlock language="bash">
6165
{dedent`
62-
kubectl port-forward svc/in-cloud-web 8081:80 -n in-cloud-web
66+
sudo kubectl port-forward svc/in-cloud-web 80:80 -n in-cloud-web --kubeconfig ~/.kube/config
6367
`}
6468
</CodeBlock>
6569

0 commit comments

Comments
 (0)