-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
109 lines (99 loc) · 1.94 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
107
108
109
replicaCount: 1
image:
repository: ecr.aws/example
pullPolicy: Always
tag: "0.0.1"
imagePullSecrets:
- registry
serviceAccount:
create: true
annotations: {}
name: ""
podSecurityContext:
runAsUser: 3000
runAsGroup: 3000
fsGroup: 3000
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: true
runAsUser: 3000
service:
name: app
type: ClusterIP
port: 80
targetPort: 8080
protocol: TCP
ingresses:
_default:
- name: example-api
annotations:
nginx.org/client-max-body-size: "100m"
kubernetes.io/ingress.class: nginx
rules:
hosts:
- host: example.dev-stand.com
paths:
- path: /
service:
name: example
port: 8080
production:
- name: example-api
annotations:
nginx.org/client-max-body-size: "100m"
kubernetes.io/ingress.class: nginx
rules:
hosts:
- host: example.com
paths:
- path: /
service:
name: example
port: 8080
envs:
app:
_default:
FIRST_ENV_APP: value1
SECOND_ENV_APP: value2
production:
FIRST_ENV_APP: value1
SECOND_ENV_APP: value2
alembic:
_default:
FIRST_ENV_ALEMBIC: value1
SECOND_ENV_ALEMBIC: value2
production:
FIRST_ENV_ALEMBIC: value1
SECOND_ENV_ALEMBIC: value2
common:
_default:
FIRST_ENV_COMMON: value1
SECOND_ENV_COMMON: value2
production:
FIRST_ENV_COMMON: value1
SECOND_ENV_COMMON: value2
resources:
_default:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
production:
limits:
cpu: 300m
memory: 512Mi
requests:
cpu: 100m
memory: 128Mi
filebeat:
repository: docker.elastic.co/beats/filebeat
tag: 8.2.3
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 10m
memory: 32Mi