WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit aab3a02

Browse files
authored
fix(json-schema): update extraArgs definition (#483)
The "examples" and "type" definition of the extraArgs property seems to have been swapped with the extraAnnotations definition. This was causing certain workflows that rely on the JSON-Schema correctness to fail. Bump chart version to v5.18.2 Signed-off-by: Gaston Festari <[email protected]>
1 parent 6637864 commit aab3a02

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

charts/atlantis/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: v1
33
appVersion: v0.35.1
44
description: A Helm chart for Atlantis https://www.runatlantis.io
55
name: atlantis
6-
version: 5.18.1
6+
version: 5.18.2
77
keywords:
88
- terraform
99
home: https://www.runatlantis.io

charts/atlantis/values.schema.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,26 +1159,25 @@
11591159
},
11601160
"extraAnnotations": {
11611161
"type": "object",
1162-
"description": "Add additional annotations to all ",
1162+
"description": "These annotations will be added to all the resources",
11631163
"items": {
11641164
"type": "object"
11651165
},
1166-
"examples": [
1167-
[
1168-
"--disable-autoplan",
1169-
"--disable-repo-locking"
1170-
]
1171-
]
1166+
"examples": {
1167+
"team": "example"
1168+
}
11721169
},
11731170
"extraArgs": {
11741171
"type": "array",
1175-
"description": "These annotations will be added to all the resources",
1172+
"description": "Optionally specify extra arguments for the Atlantis pod.",
11761173
"items": {
11771174
"type": "string"
11781175
},
1179-
"examples": {
1180-
"team": "example"
1181-
}
1176+
"default": [],
1177+
"examples": [
1178+
"--disable-autoplan",
1179+
"--disable-repo-locking"
1180+
]
11821181
},
11831182
"extraContainers": {
11841183
"description": "Additional containers to use and depends of use cases.",

0 commit comments

Comments
 (0)