-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelm.values.yml
114 lines (95 loc) · 2.44 KB
/
helm.values.yml
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
replicaCount: 5
image:
repository: reezpatel/devpunk
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: 'latest'
imagePullSecrets: []
nameOverride: ''
fullnameOverride: ''
podAnnotations: {}
podSecurityContext:
{}
# fsGroup: 2000
securityContext:
{}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# service:
# type: ClusterIP
# port: 80
job:
name: 'feed-ingestion'
schedule: "0 */6 * * *"
env: {}
concurrencyPolicy: Forbid
failedJobsHistoryLimit: 3
successfulJobsHistoryLimit: 1
resources: {}
nodeSelector: {}
affinity: {}
tolerations: {}
persistentVolume:
enabled: false
## Server data Persistent Volume access modes
## Must match those of existing PV or dynamic provisioner
accessModes:
- ReadWriteOnce
## Server data Persistent Volume annotations
annotations: {}
## If you'd like to bring your own PVC for persisting state, pass the name of the
## created + ready PVC here. If set, this Chart will not create the default PVC.
## Requires server.persistentVolume.enabled: true
existingClaim: ''
## Server data Persistent Volume mount root path
mountPath: /data
## Server data Persistent Volume size
size: 8Gi
## Server data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
storageClass: 'fast'
## Server data Persistent Volume Binding Mode
## If defined, volumeMode: <volumeMode>
## If empty (the default) or set to null, no volumeBindingMode spec is
## set, choosing the default mode.
volumeMode: ''
service:
type: ClusterIP
port: 3000
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: 'www.devpunk.io'
paths:
- '/'
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources:
limits:
cpu: 200m
memory: 1Gi
requests:
cpu: 200m
memory: 1Gi
nodeSelector: {}
tolerations: []
affinity: {}
env:
MONGODB_DB_NAME: 'devpunk'
MONGODB_AUTH_DB: 'admin'
MONGODB_PORT: '27017'
DATA_DIR: /data
APPLICATION_URL: 'https://www.devpunk.io'