File tree Expand file tree Collapse file tree 5 files changed +11
-3
lines changed
Expand file tree Collapse file tree 5 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : k8s-image-swapper
33description : Mirror images into your own registry and swap image references automatically.
44type : application
5- version : 1.10.1
5+ version : 1.10.2
66appVersion : 1.5.10
77home : https://github.com/estahn/charts/tree/main/charts/k8s-image-swapper
88keywords :
@@ -15,7 +15,7 @@ maintainers:
1515 name : estahn
1616annotations :
1717 artifacthub.io/changes : |
18- - "Fix bug in values schema "
18+ - "Add ability to specify a priorityClassName for deployment "
1919 artifacthub.io/images : |
2020 - name: k8s-image-webhook
2121 image: ghcr.io/estahn/k8s-image-swapper:1.5.10
Original file line number Diff line number Diff line change 11# k8s-image-swapper
22
3- ![ Version: 1.10.1 ] ( https://img.shields.io/badge/Version-1.10.1 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 1.5.10] ( https://img.shields.io/badge/AppVersion-1.5.10-informational?style=flat-square )
3+ ![ Version: 1.10.2 ] ( https://img.shields.io/badge/Version-1.10.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 1.5.10] ( https://img.shields.io/badge/AppVersion-1.5.10-informational?style=flat-square )
44
55Mirror images into your own registry and swap image references automatically.
66
@@ -38,6 +38,7 @@ Mirror images into your own registry and swap image references automatically.
3838| config.target.aws.region | string | ` "ap-southeast-2" ` | |
3939| containerPort | int | ` 8443 ` | |
4040| deployment.annotations | object | ` {} ` | |
41+ | deployment.priorityClassName | string | ` "" ` | |
4142| dev.enabled | bool | ` false ` | |
4243| dev.webhookURL | string | ` "https://xxx.ngrok.io" ` | |
4344| extraEnv | list | ` [] ` | Additional environment variables to be defined on the container Follows the same syntax as containers.env in a Pod v1 API |
Original file line number Diff line number Diff line change @@ -125,3 +125,6 @@ spec:
125125 tolerations :
126126 {{- toYaml . | nindent 8 }}
127127 {{- end }}
128+ {{- if .Values.deployment.priorityClassName }}
129+ priorityClassName : {{ .Values.deployment.priorityClassName }}
130+ {{- end }}
Original file line number Diff line number Diff line change 114114 "properties" : {
115115 "annotations" : {
116116 "type" : " object"
117+ },
118+ "priorityClassName" : {
119+ "type" : " string"
117120 }
118121 }
119122 },
Original file line number Diff line number Diff line change 3636deployment :
3737 # Annotations to add to the deployment
3838 annotations : {}
39+ priorityClassName : " "
3940
4041# If true, create & use Pod Security Policy resources
4142# https://kubernetes.io/docs/concepts/policy/pod-security-policy/
You can’t perform that action at this time.
0 commit comments