-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
115 lines (96 loc) · 2.34 KB
/
values.yaml
File metadata and controls
115 lines (96 loc) · 2.34 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Default values for flectrahq.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: flectrahq/flectra
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "3.0"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# Automatically mount a ServiceAccount's API credentials?
automount: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: "flectra"
podAnnotations: {}
podLabels: {}
initContainers:
- name: volume-mount-hack
image: busybox
command: ["sh", "-c", "chown -R 1000:1000 /var/lib/flectra/filestore && chown -R 1000:1000 /mnt/flectra-addons && echo 'wait 30s' && sleep 30"]
volumeMounts:
- name: flectra-data
mountPath: "/var/lib/flectra/filestore"
- name: flectra-addons
mountPath: "/mnt/flectra-addons"
podSecurityContext: {}
# fsGroup: 2000
securityContext:
fsGroup: 1000
runAsUser: 1000
runAsGroup: 1000
service:
type: ClusterIP
port: 7073
ingress:
enabled: true
className: ""
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
hosts:
- host: flectra.example.com
paths:
- path: /
pathType: ImplementationSpecific
tls:
- secretName: flectra-tls
hosts:
- flectra.example.com
resources: {}
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
volumes:
- name: flectra-data
size: "10Gi"
persistentVolumeClaim:
claimName: flectra-data
- name: flectra-addons
size: "5Gi"
persistentVolumeClaim:
claimName: flectra-addons
volumeMounts:
- name: flectra-data
mountPath: "/var/lib/flectra/filestore"
- name: flectra-addons
mountPath: "/mnt/flectra-addons"
nodeSelector: {}
tolerations: []
affinity: {}
extraEnv:
- name: HOST
value: flectra-postgresql
- name: PORT
value: 5432
- name: USER
value: flectra
- name: PASSWORD
value: flectra
postgresql:
auth:
postgresPassword: "flectra"
username: "flectra"
password: "flectra"
database: "flectra"
image:
tag: 16