Skip to content

Commit

Permalink
feat: support extraEnv Variables
Browse files Browse the repository at this point in the history
  • Loading branch information
knechtionscoding committed Apr 6, 2023
1 parent 4b059ff commit 617e058
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/ecr-cleanup/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.10
version: 0.3.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.2.10"
appVersion: "0.3.0"
3 changes: 2 additions & 1 deletion charts/ecr-cleanup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Deploys a job that cleans up an ECR repo based on the following rules.
3. Has the container been tagged with the word `keep`
4. Is the container the only tag in the ECR repository

![Version: 0.2.10](https://img.shields.io/badge/Version-0.2.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.10](https://img.shields.io/badge/AppVersion-0.2.10-informational?style=flat-square)
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.0](https://img.shields.io/badge/AppVersion-0.3.0-informational?style=flat-square)

## Values

Expand All @@ -15,6 +15,7 @@ Deploys a job that cleans up an ECR repo based on the following rules.
| awsRegistryId | string | `""` | ECR Registry ID to override picking the default |
| command | list | `["/code/main.py"]` | Command being run by the cronjob |
| dryRun | bool | `false` | Should the tool run in dryrun |
| extraEnvs | object | `{}` | |
| fullnameOverride | string | `""` | Override fullname |
| image.pullPolicy | string | `"IfNotPresent"` | Pull Policy for images in cronjob |
| image.registry | string | `"ghcr.io"` | Image Registry |
Expand Down
4 changes: 3 additions & 1 deletion charts/ecr-cleanup/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ spec:
- name: DRY_RUN
value: "{{ .Values.dryRun }}"
{{- end }}

{{- with .Values.extraEnvs }}
{{- . | toYaml | nindent 16 }}
{{- end }}
command: {{ .Values.command }}
securityContext:
{{- toYaml .Values.securityContext | nindent 16 }}
Expand Down
6 changes: 6 additions & 0 deletions charts/ecr-cleanup/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
"dryRun": {
"type": "boolean"
},
"extraEnvs": {
"type": [
"object",
"null"
]
},
"image": {
"type": "object",
"properties": {
Expand Down
3 changes: 3 additions & 0 deletions charts/ecr-cleanup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,6 @@ resources:
# requests:
# cpu: 100m
# memory: 128Mi

## -- ENV variables to pass to cronjob
extraEnvs: {}

0 comments on commit 617e058

Please sign in to comment.