File tree 4 files changed +8
-1
lines changed
4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ See values.yaml for full documentation
58
58
| ` nodeSelector` | Node selector | ` {}` |
59
59
| ` tolerations` | Tolerations | ` []` |
60
60
| ` affinity` | Affinity or Anti-Affinity | ` {}` |
61
+ | ` topologySpreadConstraints` | Topology Spread Constraints | ` []` |
61
62
| ` configs` | Optional Privatebin configuration file | ` {}` |
62
63
| ` podAnnotations` | Additional annotations to add to the pods | ` {}` |
63
64
| ` additionalLabels` | Additional labels to add to resources | ` {}` |
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ name: privatebin
6
6
home : https://privatebin.info/
7
7
icon : https://raw.githubusercontent.com/PrivateBin/assets/master/images/preview/icon.png
8
8
type : application
9
- version : 0.21.2
9
+ version : 0.22.0
10
10
maintainers :
11
11
- name : bdashrad
12
12
Original file line number Diff line number Diff line change 97
97
{{- with .Values.tolerations }}
98
98
tolerations :
99
99
{{- toYaml . | nindent 8 }}
100
+ {{- end }}
101
+ {{- with .Values.topologySpreadConstraints }}
102
+ topologySpreadConstraints :
103
+ {{- toYaml . | nindent 8 }}
100
104
{{- end }}
101
105
volumes :
102
106
- name : configs
Original file line number Diff line number Diff line change @@ -111,6 +111,8 @@ tolerations: []
111
111
112
112
affinity : {}
113
113
114
+ topologySpreadConstraints : []
115
+
114
116
configs : {}
115
117
# conf.php: |-
116
118
# ; see https://github.com/PrivateBin/PrivateBin/blob/master/cfg/conf.sample.php for config
You can’t perform that action at this time.
0 commit comments