File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -117,8 +117,9 @@ their default values.
117
117
| ` extraEnvVars ` | Additional environment variables to the pod | ` [] ` |
118
118
| ` initContainers ` | Init containers to be created in the pod | ` [] ` |
119
119
| ` garbageCollect.enabled ` | If true, will deploy garbage-collector cronjob | ` false ` |
120
- | ` garbageCollect.deleteUntagged ` | If true, garbage-collector will delete manifests that are not currently referenced via tag | ` true ` | |
121
- | ` garbageCollect.schedule ` | CronTab schedule, please use standard crontab format | ` 0 1 * * * ` | |
120
+ | ` garbageCollect.deleteUntagged ` | If true, garbage-collector will delete manifests that are not currently referenced via tag | ` true ` |
121
+ | ` garbageCollect.schedule ` | CronTab schedule, please use standard crontab format | ` 0 1 * * * ` |
122
+ | ` garbageCollect.resources ` | garbage-collector requested resources | ` {} ` |
122
123
123
124
Specify each parameter using the ` --set key=value[,key=value] ` argument to
124
125
` helm install ` .
Original file line number Diff line number Diff line change 49
49
- garbage-collect
50
50
- --delete-untagged={{ .Values.garbageCollect.deleteUntagged }}
51
51
- /etc/docker/registry/config.yml
52
+ resources : {{ toYaml .Values.garbageCollect.resources | nindent 12 }}
52
53
env : {{ include "docker-registry.envs" . | nindent 16 }}
53
54
{{- if .Values.containerSecurityContext.enabled }}
54
55
securityContext : {{ omit .Values.containerSecurityContext "enabled" | toYaml | nindent 16 }}
Original file line number Diff line number Diff line change @@ -229,3 +229,4 @@ garbageCollect:
229
229
enabled : false
230
230
deleteUntagged : true
231
231
schedule : " 0 1 * * *"
232
+ resources : {}
You can’t perform that action at this time.
0 commit comments