Skip to content

Commit fd36469

Browse files
ordaolmayanadamlebaudantoine
authored andcommitted
kubernetes documentation helm path updated
1 parent dc278a6 commit fd36469

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/installation/kubernetes.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ If you haven't run the script **bin/start-kind.sh**, you'll need to manually cre
122122
$ kubectl create namespace meet
123123
```
124124

125-
If you have already run the script, you can skip this step and proceed to the next instruction. NOTE: Before you proceed, and is using the kind method, make sure you download this repo examples/ directory and its contents to the location where you will be executing the helm command. Helm will look for "examples/<name>values.yaml" from based on the path it is being executed.
125+
If you have already run the script, you can skip this step and proceed to the next instruction. NOTE: Before you proceed, and is using the kind method, make sure you download this repo examples/helm directory and its contents to the location where you will be executing the helm command. Helm will look for "examples/helm/<name>values.yaml" from based on the path it is being executed.
126126

127127
```
128128
$ kubectl config set-context --current --namespace=meet
129-
$ helm install keycloak oci://registry-1.docker.io/bitnamicharts/keycloak -f examples/keycloak.values.yaml
129+
$ helm install keycloak oci://registry-1.docker.io/bitnamicharts/keycloak -f examples/helm/keycloak.values.yaml
130130
$ #wait until
131131
$ kubectl get po
132132
NAME READY STATUS RESTARTS AGE
@@ -150,7 +150,7 @@ OIDC_RP_SIGN_ALGO: RS256
150150
OIDC_RP_SCOPES: "openid email"
151151
```
152152

153-
You can find these values in **examples/keycloak.values.yaml**
153+
You can find these values in **examples/helm/keycloak.values.yaml**
154154

155155
### Find livekit server connexion values
156156

@@ -159,7 +159,7 @@ LaSuite Meet use livekit for streaming part so if you have a livekit provider, o
159159
Livekit need a redis (and meet too) so we will start by deploying a redis :
160160

161161
```
162-
$ helm install redis oci://registry-1.docker.io/bitnamicharts/redis -f examples/redis.values.yaml
162+
$ helm install redis oci://registry-1.docker.io/bitnamicharts/redis -f examples/helm/redis.values.yaml
163163
$ kubectl get po
164164
NAME READY STATUS RESTARTS AGE
165165
keycloak-0 1/1 Running 0 26m
@@ -172,7 +172,7 @@ When the redis is ready we can deploy livekit-server.
172172
```
173173
$ helm repo add livekit https://helm.livekit.io
174174
$ helm repo update
175-
$ helm install livekit livekit/livekit-server -f examples/livekit.values.yaml
175+
$ helm install livekit livekit/livekit-server -f examples/helm/livekit.values.yaml
176176
$ kubectl get po
177177
NAME READY STATUS RESTARTS AGE
178178
keycloak-0 1/1 Running 0 30m
@@ -199,7 +199,7 @@ CELERY_RESULT_BACKEND: redis://default:pass@redis-master:6379/1
199199
LaSuite Meet uses a postgresql db as backend so if you have a provider, obtain the necessary information to use it. If you do not have, you can install a postgresql testing environment as follows:
200200

201201
```
202-
$ helm install postgresql oci://registry-1.docker.io/bitnamicharts/postgresql -f examples/postgresql.values.yaml
202+
$ helm install postgresql oci://registry-1.docker.io/bitnamicharts/postgresql -f examples/helm/postgresql.values.yaml
203203
$ kubectl get po
204204
NAME READY STATUS RESTARTS AGE
205205
keycloak-0 1/1 Running 0 45m
@@ -226,7 +226,7 @@ Now you are ready to deploy LaSuite Meet without AI. AI required more dependenci
226226
```
227227
$ helm repo add meet https://suitenumerique.github.io/meet/
228228
$ helm repo update
229-
$ helm install meet meet/meet -f examples/meet.values.yaml
229+
$ helm install meet meet/meet -f examples/helm/meet.values.yaml
230230
```
231231

232232
## Test your deployment

0 commit comments

Comments
 (0)