-
Notifications
You must be signed in to change notification settings - Fork 2
/
values.yaml
74 lines (72 loc) · 1.97 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/common-3.4.0/charts/library/common/values.schema.json
app-template:
controllers:
client:
type: deployment
containers:
main:
image:
repository: ghcr.io/cterence/minecraft-web-client
tag: next
ports:
- name: http
containerPort: 8080
probes:
liveness:
enabled: true
type: HTTP
readiness:
enabled: true
type: HTTP
server:
type: deployment
containers:
main:
image:
repository: stevesloka/kubecraft
tag: latest
ports:
- name: minecraft
containerPort: 25565
probes:
liveness:
enabled: true
type: TCP
readiness:
enabled: true
type: TCP
service:
client:
controller: client
type: ClusterIP
ports:
http:
port: 8080
server:
controller: server
type: ClusterIP
ports:
http:
port: 25565
ingress:
client:
enabled: true
className: "nginx"
annotations:
external-dns.alpha.kubernetes.io/target: home.terence.cloud
cert-manager.io/cluster-issuer: letsencrypt
# nginx.ingress.kubernetes.io/auth-url: "https://$host/oauth2/auth"
# nginx.ingress.kubernetes.io/auth-signin: "https://$host/oauth2/start?rd=$escaped_request_uri"
# nginx.ingress.kubernetes.io/auth-response-headers: X-Auth-Request-User,X-Auth-Request-Email
hosts:
- host: &host minecraft.terence.cloud
paths:
- path: /
pathType: ImplementationSpecific
service:
identifier: client
port: http
tls:
- secretName: minecraft-tls
hosts:
- *host