-
Notifications
You must be signed in to change notification settings - Fork 0
/
helmrelease.yaml
51 lines (47 loc) · 1.01 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
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: pictshare
namespace: pictshare
spec:
chart:
spec:
chart: pictshare
version: 0.6.3
reconcileStrategy: ChartVersion
sourceRef:
kind: HelmRepository
namespace: flux-system
name: gabe565
interval: 1h
driftDetection:
mode: enabled
values:
controller:
strategy: Recreate
env:
TZ: America/Chicago
MAX_RESIZED_IMAGES: "2"
UPLOAD_FORM_LOCATION: /
LOG_UPLOADER: "true"
podLabels:
policy.gabe565.com/ingress-ingress: "true"
ingress:
main:
enabled: true
hosts:
- host: ${app_url}
paths:
- path: /
service:
port: 80
tls:
- secretName: ${certificate_name}
hosts:
- ${app_url}
persistence:
data:
enabled: true
storageClass: longhorn-ssd
size: 2Gi
accessMode: ReadWriteOnce