File tree 4 files changed +12
-2
lines changed
deploy/charts/harbor-container-webhook
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.8.1] - 2025-03-17
8
+ ### Fixed
9
+ - Fixed chart pdb rendering
10
+
7
11
## [ 0.8.0] - 2025-03-17
8
12
### Added
9
13
- Add support for topologySpreadConstraints
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : harbor-container-webhook
3
3
description : Webhook to configure pods with harbor proxy cache projects
4
4
type : application
5
- version : 0.8.0
5
+ version : 0.8.1
6
6
appVersion : " 0.8.0"
7
7
kubeVersion : " >= 1.16.0-0"
8
8
home : https://github.com/IndeedEng/harbor-container-webhook
Original file line number Diff line number Diff line change 10
10
selector :
11
11
matchLabels :
12
12
{{- include "harbor-container-webhook.selectorLabels" . | nindent 6 }}
13
- {{- if and .Values.minAvailable (not (hasKey .Values.controller "maxUnavailable")) }}
13
+ {{- if and .Values.minAvailable (not (hasKey .Values "maxUnavailable")) }}
14
14
minAvailable : {{ .Values.minAvailable }}
15
15
{{- else if .Values.maxUnavailable }}
16
16
maxUnavailable : {{ .Values.maxUnavailable }}
Original file line number Diff line number Diff line change @@ -63,6 +63,12 @@ affinity: {}
63
63
64
64
topologySpreadConstraints : {}
65
65
66
+ # only use one of the following two options for the pdb, if replicas > 1:
67
+ # minAvailable: 1
68
+ # maxUnavailable: 1
69
+
70
+ # unhealthyPodEvictionPolicy: ""
71
+
66
72
extraArgs : []
67
73
extraEnv : []
68
74
You can’t perform that action at this time.
0 commit comments