workadventure: start v4
This commit is contained in:
parent
79c78161bd
commit
1d45335bf0
14 changed files with 882 additions and 0 deletions
23
apps/workadventure/v4/.helmignore
Normal file
23
apps/workadventure/v4/.helmignore
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
9
apps/workadventure/v4/Chart.yaml
Normal file
9
apps/workadventure/v4/Chart.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
apiVersion: v2
|
||||
name: ungleich-workadventure
|
||||
description: ungleich managed workadventure
|
||||
|
||||
type: application
|
||||
|
||||
version: 0.1.0
|
||||
|
||||
appVersion: "v1.12.7"
|
15
apps/workadventure/v4/README.md
Normal file
15
apps/workadventure/v4/README.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
## Status
|
||||
|
||||
* Coming up, but browser complains about CORS errors
|
||||
* Need to add https probably for at least...
|
||||
* pusher
|
||||
* possible others
|
||||
* Services
|
||||
* wa-front: works
|
||||
* wa-pusher: unclear
|
||||
|
||||
## wa-pusher
|
||||
|
||||
```
|
||||
{"redirectUrl":"http://wa1-front.testnico.svc.p10.k8s.ooo/_/global/maps.workadventu.re/starter/map.json"}% [21:13] bridge:workadventure% curl -v http://wa1-pusher.testnico.svc.p10.k8s.ooo/map?playUri=http://wa1-front.testnico.svc.p10.k8s.ooo/
|
||||
```
|
24
apps/workadventure/v4/nginx/default.conf
Normal file
24
apps/workadventure/v4/nginx/default.conf
Normal file
|
@ -0,0 +1,24 @@
|
|||
upstream php-handler {
|
||||
server localhost:9000;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
server_name {{ tpl .Values.fqdn . }};
|
||||
|
||||
# Use Mozilla's guidelines for SSL/TLS settings
|
||||
# https://mozilla.github.io/server-side-tls/ssl-config-generator/
|
||||
ssl_certificate /etc/letsencrypt/live/{{ tpl .Values.fqdn . }}/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/{{ tpl .Values.fqdn . }}/privkey.pem;
|
||||
|
||||
location = /robots.txt {
|
||||
allow all;
|
||||
log_not_found off;
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_pass http://{{ .Release.Name }}-front.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }};
|
||||
}
|
||||
}
|
69
apps/workadventure/v4/templates/back-deployment.yaml
Normal file
69
apps/workadventure/v4/templates/back-deployment.yaml
Normal file
|
@ -0,0 +1,69 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: back
|
||||
name: {{ .Release.Name }}-back
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: back
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: back
|
||||
spec:
|
||||
containers:
|
||||
- command:
|
||||
- sh
|
||||
- -c
|
||||
- "yarn install && yarn run runprod"
|
||||
env:
|
||||
- name: ADMIN_API_TOKEN
|
||||
- name: ALLOW_ARTILLERY
|
||||
value: "true"
|
||||
- name: DEBUG
|
||||
value: '*'
|
||||
- name: JITSI_ISS
|
||||
- name: JITSI_URL
|
||||
- name: MAX_PER_GROUP
|
||||
value: MAX_PER_GROUP
|
||||
- name: NODE_ENV
|
||||
value: development
|
||||
- name: REDIS_HOST
|
||||
value: {{ .Release.Name}}-redis
|
||||
- name: SECRET_JITSI_KEY
|
||||
- name: SECRET_KEY
|
||||
value: yourSecretKey
|
||||
- name: STORE_VARIABLES_FOR_LOCAL_MAPS
|
||||
value: "true"
|
||||
- name: TURN_STATIC_AUTH_SECRET
|
||||
value: SomeStaticAuthSecret
|
||||
image: thecodingmachine/workadventure-back:{{ .Chart.AppVersion }}
|
||||
name: back
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
restartPolicy: Always
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-back
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: back
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 80
|
||||
name: http
|
||||
selector:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: back
|
390
apps/workadventure/v4/templates/coturn.yaml
Normal file
390
apps/workadventure/v4/templates/coturn.yaml
Normal file
|
@ -0,0 +1,390 @@
|
|||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-coturn
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: coturn
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: coturn
|
||||
spec:
|
||||
containers:
|
||||
- name: coturn
|
||||
image: coturn/coturn:4.5.2-alpine
|
||||
ports:
|
||||
- containerPort: 3478
|
||||
name: port-3478
|
||||
- containerPort: 5349
|
||||
name: port-5349
|
||||
- containerPort: 49160
|
||||
name: port-49160
|
||||
- containerPort: 49161
|
||||
name: port-49161
|
||||
- containerPort: 49162
|
||||
name: port-49162
|
||||
- containerPort: 49163
|
||||
name: port-49163
|
||||
- containerPort: 49164
|
||||
name: port-49164
|
||||
- containerPort: 49165
|
||||
name: port-49165
|
||||
- containerPort: 49166
|
||||
name: port-49166
|
||||
- containerPort: 49167
|
||||
name: port-49167
|
||||
- containerPort: 49168
|
||||
name: port-49168
|
||||
- containerPort: 49169
|
||||
name: port-49169
|
||||
- containerPort: 49170
|
||||
name: port-49170
|
||||
- containerPort: 49171
|
||||
name: port-49171
|
||||
- containerPort: 49172
|
||||
name: port-49172
|
||||
- containerPort: 49173
|
||||
name: port-49173
|
||||
- containerPort: 49174
|
||||
name: port-49174
|
||||
- containerPort: 49175
|
||||
name: port-49175
|
||||
- containerPort: 49176
|
||||
name: port-49176
|
||||
- containerPort: 49177
|
||||
name: port-49177
|
||||
- containerPort: 49178
|
||||
name: port-49178
|
||||
- containerPort: 49179
|
||||
name: port-49179
|
||||
- containerPort: 49180
|
||||
name: port-49180
|
||||
- containerPort: 49181
|
||||
name: port-49181
|
||||
- containerPort: 49182
|
||||
name: port-49182
|
||||
- containerPort: 49183
|
||||
name: port-49183
|
||||
- containerPort: 49184
|
||||
name: port-49184
|
||||
- containerPort: 49185
|
||||
name: port-49185
|
||||
- containerPort: 49186
|
||||
name: port-49186
|
||||
- containerPort: 49187
|
||||
name: port-49187
|
||||
- containerPort: 49188
|
||||
name: port-49188
|
||||
- containerPort: 49189
|
||||
name: port-49189
|
||||
- containerPort: 49190
|
||||
name: port-49190
|
||||
- containerPort: 49191
|
||||
name: port-49191
|
||||
- containerPort: 49192
|
||||
name: port-49192
|
||||
- containerPort: 49193
|
||||
name: port-49193
|
||||
- containerPort: 49194
|
||||
name: port-49194
|
||||
- containerPort: 49195
|
||||
name: port-49195
|
||||
- containerPort: 49196
|
||||
name: port-49196
|
||||
- containerPort: 49197
|
||||
name: port-49197
|
||||
- containerPort: 49198
|
||||
name: port-49198
|
||||
- containerPort: 49199
|
||||
name: port-49199
|
||||
- containerPort: 49200
|
||||
name: port-49200
|
||||
---
|
||||
# for p in 3478 5349 {49160..49200}; do echo " - port: $p"; echo " name: port-$p" ; echo " protocol: TCP"; done
|
||||
# for p in 3478 5349 {49160..49200}; do echo " - port: $p"; echo " name: port-$p-udp" ; echo " protocol: UDP"; done
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-coturn
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: coturn
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 3478
|
||||
name: port-3478
|
||||
protocol: TCP
|
||||
- port: 5349
|
||||
name: port-5349
|
||||
protocol: TCP
|
||||
- port: 49160
|
||||
name: port-49160
|
||||
protocol: TCP
|
||||
- port: 49161
|
||||
name: port-49161
|
||||
protocol: TCP
|
||||
- port: 49162
|
||||
name: port-49162
|
||||
protocol: TCP
|
||||
- port: 49163
|
||||
name: port-49163
|
||||
protocol: TCP
|
||||
- port: 49164
|
||||
name: port-49164
|
||||
protocol: TCP
|
||||
- port: 49165
|
||||
name: port-49165
|
||||
protocol: TCP
|
||||
- port: 49166
|
||||
name: port-49166
|
||||
protocol: TCP
|
||||
- port: 49167
|
||||
name: port-49167
|
||||
protocol: TCP
|
||||
- port: 49168
|
||||
name: port-49168
|
||||
protocol: TCP
|
||||
- port: 49169
|
||||
name: port-49169
|
||||
protocol: TCP
|
||||
- port: 49170
|
||||
name: port-49170
|
||||
protocol: TCP
|
||||
- port: 49171
|
||||
name: port-49171
|
||||
protocol: TCP
|
||||
- port: 49172
|
||||
name: port-49172
|
||||
protocol: TCP
|
||||
- port: 49173
|
||||
name: port-49173
|
||||
protocol: TCP
|
||||
- port: 49174
|
||||
name: port-49174
|
||||
protocol: TCP
|
||||
- port: 49175
|
||||
name: port-49175
|
||||
protocol: TCP
|
||||
- port: 49176
|
||||
name: port-49176
|
||||
protocol: TCP
|
||||
- port: 49177
|
||||
name: port-49177
|
||||
protocol: TCP
|
||||
- port: 49178
|
||||
name: port-49178
|
||||
protocol: TCP
|
||||
- port: 49179
|
||||
name: port-49179
|
||||
protocol: TCP
|
||||
- port: 49180
|
||||
name: port-49180
|
||||
protocol: TCP
|
||||
- port: 49181
|
||||
name: port-49181
|
||||
protocol: TCP
|
||||
- port: 49182
|
||||
name: port-49182
|
||||
protocol: TCP
|
||||
- port: 49183
|
||||
name: port-49183
|
||||
protocol: TCP
|
||||
- port: 49184
|
||||
name: port-49184
|
||||
protocol: TCP
|
||||
- port: 49185
|
||||
name: port-49185
|
||||
protocol: TCP
|
||||
- port: 49186
|
||||
name: port-49186
|
||||
protocol: TCP
|
||||
- port: 49187
|
||||
name: port-49187
|
||||
protocol: TCP
|
||||
- port: 49188
|
||||
name: port-49188
|
||||
protocol: TCP
|
||||
- port: 49189
|
||||
name: port-49189
|
||||
protocol: TCP
|
||||
- port: 49190
|
||||
name: port-49190
|
||||
protocol: TCP
|
||||
- port: 49191
|
||||
name: port-49191
|
||||
protocol: TCP
|
||||
- port: 49192
|
||||
name: port-49192
|
||||
protocol: TCP
|
||||
- port: 49193
|
||||
name: port-49193
|
||||
protocol: TCP
|
||||
- port: 49194
|
||||
name: port-49194
|
||||
protocol: TCP
|
||||
- port: 49195
|
||||
name: port-49195
|
||||
protocol: TCP
|
||||
- port: 49196
|
||||
name: port-49196
|
||||
protocol: TCP
|
||||
- port: 49197
|
||||
name: port-49197
|
||||
protocol: TCP
|
||||
- port: 49198
|
||||
name: port-49198
|
||||
protocol: TCP
|
||||
- port: 49199
|
||||
name: port-49199
|
||||
protocol: TCP
|
||||
- port: 49200
|
||||
name: port-49200
|
||||
protocol: TCP
|
||||
- port: 3478
|
||||
name: port-3478-udp
|
||||
protocol: UDP
|
||||
- port: 5349
|
||||
name: port-5349-udp
|
||||
protocol: UDP
|
||||
- port: 49160
|
||||
name: port-49160-udp
|
||||
protocol: UDP
|
||||
- port: 49161
|
||||
name: port-49161-udp
|
||||
protocol: UDP
|
||||
- port: 49162
|
||||
name: port-49162-udp
|
||||
protocol: UDP
|
||||
- port: 49163
|
||||
name: port-49163-udp
|
||||
protocol: UDP
|
||||
- port: 49164
|
||||
name: port-49164-udp
|
||||
protocol: UDP
|
||||
- port: 49165
|
||||
name: port-49165-udp
|
||||
protocol: UDP
|
||||
- port: 49166
|
||||
name: port-49166-udp
|
||||
protocol: UDP
|
||||
- port: 49167
|
||||
name: port-49167-udp
|
||||
protocol: UDP
|
||||
- port: 49168
|
||||
name: port-49168-udp
|
||||
protocol: UDP
|
||||
- port: 49169
|
||||
name: port-49169-udp
|
||||
protocol: UDP
|
||||
- port: 49170
|
||||
name: port-49170-udp
|
||||
protocol: UDP
|
||||
- port: 49171
|
||||
name: port-49171-udp
|
||||
protocol: UDP
|
||||
- port: 49172
|
||||
name: port-49172-udp
|
||||
protocol: UDP
|
||||
- port: 49173
|
||||
name: port-49173-udp
|
||||
protocol: UDP
|
||||
- port: 49174
|
||||
name: port-49174-udp
|
||||
protocol: UDP
|
||||
- port: 49175
|
||||
name: port-49175-udp
|
||||
protocol: UDP
|
||||
- port: 49176
|
||||
name: port-49176-udp
|
||||
protocol: UDP
|
||||
- port: 49177
|
||||
name: port-49177-udp
|
||||
protocol: UDP
|
||||
- port: 49178
|
||||
name: port-49178-udp
|
||||
protocol: UDP
|
||||
- port: 49179
|
||||
name: port-49179-udp
|
||||
protocol: UDP
|
||||
- port: 49180
|
||||
name: port-49180-udp
|
||||
protocol: UDP
|
||||
- port: 49181
|
||||
name: port-49181-udp
|
||||
protocol: UDP
|
||||
- port: 49182
|
||||
name: port-49182-udp
|
||||
protocol: UDP
|
||||
- port: 49183
|
||||
name: port-49183-udp
|
||||
protocol: UDP
|
||||
- port: 49184
|
||||
name: port-49184-udp
|
||||
protocol: UDP
|
||||
- port: 49185
|
||||
name: port-49185-udp
|
||||
protocol: UDP
|
||||
- port: 49186
|
||||
name: port-49186-udp
|
||||
protocol: UDP
|
||||
- port: 49187
|
||||
name: port-49187-udp
|
||||
protocol: UDP
|
||||
- port: 49188
|
||||
name: port-49188-udp
|
||||
protocol: UDP
|
||||
- port: 49189
|
||||
name: port-49189-udp
|
||||
protocol: UDP
|
||||
- port: 49190
|
||||
name: port-49190-udp
|
||||
protocol: UDP
|
||||
- port: 49191
|
||||
name: port-49191-udp
|
||||
protocol: UDP
|
||||
- port: 49192
|
||||
name: port-49192-udp
|
||||
protocol: UDP
|
||||
- port: 49193
|
||||
name: port-49193-udp
|
||||
protocol: UDP
|
||||
- port: 49194
|
||||
name: port-49194-udp
|
||||
protocol: UDP
|
||||
- port: 49195
|
||||
name: port-49195-udp
|
||||
protocol: UDP
|
||||
- port: 49196
|
||||
name: port-49196-udp
|
||||
protocol: UDP
|
||||
- port: 49197
|
||||
name: port-49197-udp
|
||||
protocol: UDP
|
||||
- port: 49198
|
||||
name: port-49198-udp
|
||||
protocol: UDP
|
||||
- port: 49199
|
||||
name: port-49199-udp
|
||||
protocol: UDP
|
||||
- port: 49200
|
||||
name: port-49200-udp
|
||||
protocol: UDP
|
||||
selector:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: coturn
|
||||
# See https://hub.docker.com/r/coturn/coturn
|
||||
# tcp ports:
|
||||
#
|
||||
# Both tcp/udp:
|
||||
# 3478 5349
|
||||
# udp: {49160..49200}
|
||||
#
|
||||
# Generate using:
|
||||
# for p in 3478 5349 {49160..49200}; do echo " - containerPort: $p"; echo " name: port-$p" ; done
|
90
apps/workadventure/v4/templates/front-deployment.yaml
Normal file
90
apps/workadventure/v4/templates/front-deployment.yaml
Normal file
|
@ -0,0 +1,90 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ .Release.Name}}-front
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: front
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: front
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/waconf.yaml") . | sha256sum }}
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: DEBUG_MODE
|
||||
value: "true"
|
||||
- name: DISABLE_ANONYMOUS
|
||||
value: "false"
|
||||
- name: DISABLE_NOTIFICATIONS
|
||||
value: "false"
|
||||
- name: HOST
|
||||
value: 0.0.0.0
|
||||
- name: JITSI_PRIVATE_MODE
|
||||
value: "false"
|
||||
- name: JITSI_URL
|
||||
value: "meet.jit.si"
|
||||
- name: LIVE_RELOAD
|
||||
value: "true"
|
||||
- name: ENABLE_FEATURE_MAP_EDITOR
|
||||
value: "false"
|
||||
- name: MAX_PER_GROUP
|
||||
value: "4"
|
||||
- name: MAX_USERNAME_LENGTH
|
||||
value: "10"
|
||||
- name: NODE_ENV
|
||||
value: development
|
||||
- name: OPID_LOGIN_SCREEN_PROVIDER
|
||||
- name: ICON_URL
|
||||
value: http://{{ tpl .Values.iconFQDN . }}
|
||||
- name: SKIP_RENDER_OPTIMIZATIONS
|
||||
value: "false"
|
||||
- name: START_ROOM_URL
|
||||
- name: STUN_SERVER
|
||||
value: "stun:stun.l.google.com:19302"
|
||||
- name: TURN_SERVER
|
||||
value: turn:{{ .Release.Name }}-coturn:3478,turns:{{ .Release.Name }}-coturn:5349
|
||||
- name: TURN_USER
|
||||
- name: TURN_PASSWORD
|
||||
- name: UPLOADER_URL
|
||||
value: http://{{ tpl .Values.uploaderFQDN . }}
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: {{ .Release.Name }}-wa-con
|
||||
ports:
|
||||
- containerPort: 80
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
image: thecodingmachine/workadventure-front:{{ .Chart.AppVersion }}
|
||||
name: front
|
||||
# command:
|
||||
# - sh
|
||||
# - -c
|
||||
# - "./templater.sh; yarn install; node /usr/local/bin/enable_apache_mods.js | bash; node /usr/local/bin/startup_commands.js | bash ; /usr/local/bin/apache-expose-envvars.sh; apache2-foreground"
|
||||
resources: {}
|
||||
restartPolicy: Always
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-front
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: front
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 80
|
||||
name: http
|
||||
selector:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: front
|
38
apps/workadventure/v4/templates/icon-deployment.yaml
Normal file
38
apps/workadventure/v4/templates/icon-deployment.yaml
Normal file
|
@ -0,0 +1,38 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
name: {{ .Release.Name }}-icon
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: icon
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: icon
|
||||
spec:
|
||||
containers:
|
||||
- image: matthiasluedtke/iconserver:v3.13.0
|
||||
name: icon
|
||||
ports:
|
||||
- containerPort: 80
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-icon
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: icon
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 80
|
||||
name: http
|
||||
selector:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: icon
|
78
apps/workadventure/v4/templates/nginx.yaml
Normal file
78
apps/workadventure/v4/templates/nginx.yaml
Normal file
|
@ -0,0 +1,78 @@
|
|||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-nginx
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: nginx
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: nginx
|
||||
spec:
|
||||
containers:
|
||||
- name: nginx
|
||||
image: ungleich/ungleich-certbot:1.1.3
|
||||
ports:
|
||||
- containerPort: 443
|
||||
name: https
|
||||
- containerPort: 80
|
||||
name: http
|
||||
env:
|
||||
- name: DOMAIN
|
||||
value: "{{ tpl .Values.fqdn . }}"
|
||||
- name: EMAIL
|
||||
value: "{{ .Values.email }}"
|
||||
- name: NGINX
|
||||
value: "yes"
|
||||
{{ if eq .Values.letsencryptStaging "no" }}
|
||||
- name: STAGING
|
||||
value: "no"
|
||||
{{ end }}
|
||||
volumeMounts:
|
||||
- name: nginx-config
|
||||
mountPath: "/etc/nginx/conf.d/"
|
||||
- name: etcletsencrypt
|
||||
mountPath: "/etc/letsencrypt"
|
||||
volumes:
|
||||
- name: etcletsencrypt
|
||||
persistentVolumeClaim:
|
||||
claimName: {{ .Release.Name }}-letsencrypt-certs
|
||||
- name: nginx-config
|
||||
configMap:
|
||||
name: {{ .Release.Name }}-nginx-config
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: nginx
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 80
|
||||
name: http
|
||||
- port: 443
|
||||
name: https
|
||||
selector:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: nginx
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-letsencrypt-certs
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: {{ .Values.storage.letsencrypt.size }}
|
||||
storageClassName: {{ .Values.storage.letsencrypt.storageClass }}
|
7
apps/workadventure/v4/templates/nginxconf.yaml
Normal file
7
apps/workadventure/v4/templates/nginxconf.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-nginx-config
|
||||
data:
|
||||
{{ tpl (.Files.Glob "nginx/*").AsConfig . | indent 2 }}
|
74
apps/workadventure/v4/templates/pusher-deployment.yaml
Normal file
74
apps/workadventure/v4/templates/pusher-deployment.yaml
Normal file
|
@ -0,0 +1,74 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
name: {{ .Release.Name}}-pusher
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: pusher
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: pusher
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/waconf.yaml") . | sha256sum }}
|
||||
spec:
|
||||
containers:
|
||||
- command:
|
||||
- yarn
|
||||
- run
|
||||
- runprod
|
||||
env:
|
||||
- name: ADMIN_API_TOKEN
|
||||
- name: API_URL
|
||||
value: {{ .Release.Name}}-back:50051
|
||||
- name: DEBUG
|
||||
value: socket:*
|
||||
- name: DISABLE_ANONYMOUS
|
||||
- name: JITSI_ISS
|
||||
- name: JITSI_URL
|
||||
- name: OPID_CLIENT_ID
|
||||
- name: OPID_CLIENT_ISSUER
|
||||
- name: OPID_CLIENT_REDIRECT_URL
|
||||
- name: OPID_CLIENT_SECRET
|
||||
- name: OPID_PROFILE_SCREEN_PROVIDER
|
||||
- name: SECRET_JITSI_KEY
|
||||
- name: SECRET_KEY
|
||||
value: yourSecretKey
|
||||
- name: STARTUP_COMMAND_1
|
||||
value: yarn install
|
||||
- name: STARTUP_COMMAND_2
|
||||
value: while [ ! -f /usr/src/app/src/Messages/generated/messages_pb.js ]; do sleep 1; done
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: {{ .Release.Name }}-wa-con
|
||||
image: thecodingmachine/workadventure-pusher:{{ .Chart.AppVersion }}
|
||||
name: pusher
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
restartPolicy: Always
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-pusher
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: pusher
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 80
|
||||
name: http
|
||||
targetPort: 8080
|
||||
selector:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: pusher
|
36
apps/workadventure/v4/templates/redis-deployment.yaml
Normal file
36
apps/workadventure/v4/templates/redis-deployment.yaml
Normal file
|
@ -0,0 +1,36 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-redis
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: redis
|
||||
strategy: {}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: redis
|
||||
spec:
|
||||
containers:
|
||||
- image: redis:6.2.6-alpine
|
||||
name: redis
|
||||
ports:
|
||||
- containerPort: 6379
|
||||
restartPolicy: Always
|
||||
status: {}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-redis
|
||||
spec:
|
||||
ports:
|
||||
- port: 6379
|
||||
protocol: TCP
|
||||
selector:
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/component: redis
|
8
apps/workadventure/v4/templates/waconf.yaml
Normal file
8
apps/workadventure/v4/templates/waconf.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-wa-con
|
||||
data:
|
||||
PUSHER_URL: http://{{ tpl .Values.pusherFQDN . }}
|
||||
FRONT_URL: http://{{ tpl .Values.frontFQDN . }}
|
21
apps/workadventure/v4/values.yaml
Normal file
21
apps/workadventure/v4/values.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
clusterDomain: p10.k8s.ooo
|
||||
email: technik@ungleich.ch
|
||||
letsencryptStaging: "yes"
|
||||
|
||||
fqdn: "{{ .Release.Name }}.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}"
|
||||
pusherFQDN: "{{ .Release.Name }}-pusher.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}"
|
||||
iconFQDN: "{{ .Release.Name }}-icon.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}"
|
||||
uploaderFQDN: "{{ .Release.Name }}-uploader.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}"
|
||||
frontFQDN: "{{ .Release.Name }}-front.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}"
|
||||
|
||||
|
||||
storage:
|
||||
data:
|
||||
size: 20Gi
|
||||
storageClass: rook-ceph-block-hdd
|
||||
db:
|
||||
size: 1Gi
|
||||
storageClass: rook-ceph-block-ssd
|
||||
letsencrypt:
|
||||
size: 50Mi
|
||||
storageClass: rook-ceph-block-hdd
|
Loading…
Reference in a new issue