Skip to content

Commit

Permalink
add fullnameOverride, nameOverride and global to values.schema.json (r…
Browse files Browse the repository at this point in the history
  • Loading branch information
roytev authored Nov 14, 2023
1 parent 24e58d0 commit b6fe4af
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/atlantis/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v1
appVersion: v0.26.0
description: A Helm chart for Atlantis https://www.runatlantis.io
name: atlantis
version: 4.17.0
version: 4.17.1
keywords:
- terraform
home: https://www.runatlantis.io
Expand Down
15 changes: 15 additions & 0 deletions charts/atlantis/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@
"type":"object",
"additionalProperties":false,
"properties":{
"global": {
"description": "Global values applied to all charts",
"type": "object",
"additionalProperties": true
},
"fullnameOverride": {
"description": "Provide a name to substitute for the full names of resources",
"type": "string",
"default": ""
},
"nameOverride": {
"description": "Override the name of the chart",
"type": "string",
"default": ""
},
"atlantisUrl":{
"description":"The URL at which Atlantis will be available. This is used to set the webhook URL in GitHub.",
"type":"string",
Expand Down
6 changes: 6 additions & 0 deletions charts/atlantis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# Values to override for your instance.
## -------------------------- ##

# Provide a name to substitute for the full names of resources
fullnameOverride: ""

# Provide a name to substitute for the name of the chart
nameOverride: ""

## An option to override the atlantis url,
## if not using an ingress, set it to the external IP.
# atlantisUrl: http://10.0.0.0
Expand Down

0 comments on commit b6fe4af

Please sign in to comment.