Skip to content

Commit d9f06bb

Browse files
fix: extraENVs should be an array not object
1 parent 21132c6 commit d9f06bb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

charts/ecr-cleanup/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ type: application
2020
# This is the chart version. This version number should be incremented each time you make changes
2121
# to the chart and its templates, including the app version.
2222
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23-
version: 0.3.0
23+
version: 0.3.1
2424

2525
# This is the version number of the application being deployed. This version number should be
2626
# incremented each time you make changes to the application. Versions are not expected to
2727
# follow Semantic Versioning. They should reflect the version the application is using.
2828
# It is recommended to use it with quotes.
29-
appVersion: "0.3.0"
29+
appVersion: "0.3.1"

charts/ecr-cleanup/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Deploys a job that cleans up an ECR repo based on the following rules.
66
3. Has the container been tagged with the word `keep`
77
4. Is the container the only tag in the ECR repository
88

9-
![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)
9+
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.1](https://img.shields.io/badge/AppVersion-0.3.1-informational?style=flat-square)
1010

1111
## Values
1212

@@ -15,7 +15,7 @@ Deploys a job that cleans up an ECR repo based on the following rules.
1515
| awsRegistryId | string | `""` | ECR Registry ID to override picking the default |
1616
| command | list | `["/code/main.py"]` | Command being run by the cronjob |
1717
| dryRun | bool | `false` | Should the tool run in dryrun |
18-
| extraEnvs | object | `{}` | |
18+
| extraEnvs | list | `[]` | |
1919
| fullnameOverride | string | `""` | Override fullname |
2020
| image.pullPolicy | string | `"IfNotPresent"` | Pull Policy for images in cronjob |
2121
| image.registry | string | `"ghcr.io"` | Image Registry |

charts/ecr-cleanup/values.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"extraEnvs": {
1818
"type": [
19-
"object",
19+
"array",
2020
"null"
2121
]
2222
},

charts/ecr-cleanup/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ resources:
7575
# memory: 128Mi
7676

7777
## -- ENV variables to pass to cronjob
78-
extraEnvs: {}
78+
extraEnvs: []

0 commit comments

Comments
 (0)