-
Notifications
You must be signed in to change notification settings - Fork 3
/
values.yaml
151 lines (144 loc) · 3.27 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Custom values for default-resources.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
---
namespaces:
create: false
config:
- name: my-namespace
labels: {}
annotations: {}
quotas:
create: false
config:
- name: my-quota
namespace: my-namespace
labels: {}
annotations: {}
spec:
requests.cpu: "1"
requests.memory: 1Gi
limits.cpu: "2"
limits.memory: 2Gi
configmaps: "1"
persistentvolumeclaims: "2"
pods: "0"
replicationcontrollers: "6"
resourcequotas: "2"
services: "2"
services.loadbalancers: "4"
services.nodeports: "4"
secrets: "1"
secrets:
create: false
config:
- name: my-secret
namespace: my-namespace
labels: {}
annotations: {}
type: Opaque
data:
- name: data-name
value: data-value
serviceAccounts:
create: false
config:
- name: my-sa
namespace: my-namespace
labels: {}
annotations: {}
automountServiceAccountToken: false
volumeSnapshotClass:
create: false
config:
- name: my-volume-snapshot-class
labels: {}
annotations: {}
driver: my-driver
deletionPolicy: Retain
parameters:
tags: 'foo=aaa,bar=bbb'
storageClass:
create: false
config:
- name: azuredisk-csi-zrs
labels: {}
annotations: {}
provisioner: disk.csi.azure.com
parameters:
skuname: Premium_ZRS
allowVolumeExpansion: true
reclaimPolicy: Delete
mountOptions:
- debug
volumeBindingMode: WaitForFirstConsumer
allowedTopologies:
- matchLabelExpressions:
- key: failure-domain.beta.kubernetes.io/zone
values:
- us-central-1a
- us-central-1b
limitRange:
create: false
config:
- name: my-limit-range
namespace: my-namespace
labels: {}
annotations: {}
spec:
- type: "Pod"
max:
cpu: "2"
memory: "1Gi"
min:
cpu: "200m"
memory: "6Mi"
- type: "Container"
max:
cpu: "2"
memory: "1Gi"
min:
cpu: "100m"
memory: "4Mi"
default:
cpu: "300m"
memory: "200Mi"
defaultRequest:
cpu: "200m"
memory: "100Mi"
networkPolicies:
create: false
config:
- name: my-netpol
namespace: my-namespace
labels: {}
annotations: {}
spec:
podSelector:
matchLabels:
role: db
policyTypes:
- Ingress
- Egress
ingress:
- from:
- ipBlock:
cidr: 172.17.0.0/16
except:
- 172.17.1.0/24
- namespaceSelector:
matchLabels:
project: myproject
- podSelector:
matchLabels:
role: frontend
ports:
- protocol: TCP
port: 6379
egress:
- to:
- ipBlock:
cidr: 10.0.0.0/24
ports:
- protocol: TCP
port: 5978