-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
106 lines (91 loc) · 2.14 KB
/
values.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
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
# Default values for cxcloud-service.
name: cxcloud
replicaCount: 2
image:
repository: 012345678901.dkr.ecr.eu-west-1.amazonaws.com/cxcloud-service
tag: 0.1.0
pullPolicy: IfNotPresent
restartPolicy: Always
service:
type: ClusterIP
ports:
http:
port: 80
targetPort: 8080
protocol: TCP
# AWS LoadBalancer Controller https://kubernetes-sigs.github.io/aws-load-balancer-controller/
awsLbController:
enabled: true
groupName: cxcloud
groupOrder: 0
# host of the ingress, defaults to empty value where all the hosts are matched by Ingress
host: ""
path: /*
listenPorts:
http: "80"
https: ""
redirectToHTTPSPort: false
targetType: ip
scheme: internal
certificateArn: ""
wafv2AclArn: ""
healthCheck:
path: /
port: 80
successCodes: 200
interval: 10
timeout: 5
healthyThreshold: 2
unhealthyThreshold: 2
# Additional annotations, see https://kubernetes-sigs.github.io/aws-load-balancer-controller/guide/ingress/annotations/
annotations: {}
# Kubernetes health check probes for pods
# Use following schema to add readiness / liveliness probes in values.yaml file for the project
# List of suitable probes can be found in https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
healthChecks: {}
# readinessProbe:
# httpGet:
# path: /
# port: 8080
# initialDelaySeconds: 30
# periodSeconds: 5
# failureThreshold: 2
# livenessProbe:
# httpGet:
# path: /
# port: 8080
# initialDelaySeconds: 60
# periodSeconds: 10
# failureThreshold: 6
# Default rolling update strategy
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
# Environment variables as maps
# Example with DB_USER and DB_PASSWORD
# env:
# DB_USER: cxcloud-db-user
# DB_SECRET:
# valueFrom:
# secretKeyRef:
# key: secret
# name: cxcloud-db-secret
env: {}
resources:
limits:
cpu: 500m
memory: 600Mi
requests:
cpu: 100m
memory: 200Mi
serviceAccount:
create: false
roleArn:
annotations: {}
securityContext:
runAsUser:
runAsGroup:
fsGroup:
nodeSelector: {}
tolerations: []
affinity: {}