-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathvalues.yaml
More file actions
68 lines (67 loc) · 2.01 KB
/
values.yaml
File metadata and controls
68 lines (67 loc) · 2.01 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
# -- The overall namespace for the application
namespace: nightlydigest
image:
# -- The NGINX image to use
repository: nginx
# -- The tag to use for the NGINX image
tag: 1.29.7
# -- The pull policy on the NGINX image
pullPolicy: IfNotPresent
# -- Service type specification
serviceType: ClusterIP
ports:
# -- Container port for the NGINX service
container: 80
# -- Node port for the NGINX service
node: 30000
ingress:
# -- Hostname for the NGINX ingress
hostname: nightlydigest.local
# -- Path name associated with the NGINX ingress
httpPath: /
# -- Set the Kubernetes path type for the NGINX ingress
pathType: ""
# -- Assign the Ingress class name
className: nginx
# -- Annotations for the NGINX ingress
annotations: {}
# -- Configuration specification for the NGINX service
nginxConfig: |
server {
listen 80;
server_name localhost;
location / {
root /usr/src/frontend;
try_files $uri$args $uri$args/ $uri/ /index.html;
}
}
# -- The list of pull secrets needed for the images.
# If this section is used, each object listed can have the following attributes defined:
# _name_ (The label identifying the pull-secret to use)
imagePullSecrets: []
initContainers:
frontend:
image:
# -- The frontend image to use
repository: lsstts/nightlydigest-frontend
# -- (int) The cycle revision to add to the image tag
tag:
# -- The pull policy to use for the frontend image
pullPolicy: IfNotPresent
staticStore:
# -- Label for the NGINX static store
name: nightlydigest-nginx-static
# -- The storage class to request the disk allocation from
storageClass: local-store
# -- The access mode for the NGINX static store
accessMode: ReadWriteMany
# -- The size of the NGINX static store request
claimSize: 2Gi
# -- Resource specifications for the NGINX pod
resources: {}
# -- Node selection rules for the NGINX pod
nodeSelector: {}
# -- Toleration specifications for the NGINX pod
tolerations: []
# -- Affinity rules for the NGINX pod
affinity: {}