Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: add fullnameOverride, nameOverride and global to values.schema.json #333

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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