-
Notifications
You must be signed in to change notification settings - Fork 0
/
helmrelease.yaml
79 lines (73 loc) · 1.85 KB
/
helmrelease.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
75
76
77
78
79
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: ascii-movie
namespace: ascii-movie
spec:
chart:
spec:
chart: ascii-movie
version: 0.16.3
reconcileStrategy: ChartVersion
sourceRef:
kind: HelmRepository
namespace: flux-system
name: gabe565
interval: 1h
driftDetection:
mode: enabled
valuesFrom:
- kind: Secret
name: ascii-movie-values
values:
env:
TZ: America/Chicago
ASCII_MOVIE_CONCURRENT_STREAMS: "5"
podLabels:
policy.gabe565.com/ingress-prometheus: "true"
policy.gabe565.com/ingress-world: "true"
ingress:
main:
enabled: true
annotations:
nginx.ingress.kubernetes.io/temporal-redirect: https://github.com/gabe565/ascii-movie
hosts:
- host: starwarstel.net
paths: &paths
- path: /
- host: "*.starwarstel.net"
paths: *paths
- host: movie.gabe565.com
paths: *paths
tls: &tls
- secretName: starwarstel.net-tls
hosts:
- starwarstel.net
- "*.starwarstel.net"
- secretName: gabe565.com-tls
hosts:
- movie.gabe565.com
health:
enabled: true
hosts:
- host: starwarstel.net
paths:
- path: /health
service:
name: ascii-movie-api
port: 1977
pathType: Exact
tls: *tls
securityContext:
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
capabilities: { drop: [ALL] }
podSecurityContext:
runAsNonRoot: true
seccompProfile: { type: RuntimeDefault }
service:
main:
ipFamilyPolicy: PreferDualStack
serviceMonitor:
main:
enabled: true