From f4dd81d6e66aa9f28d4f994f918854f49a33e635 Mon Sep 17 00:00:00 2001 From: Matt Pippitt Date: Wed, 15 Nov 2023 10:49:17 -0700 Subject: [PATCH] Fix: add command to values.schema.json --- charts/atlantis/values.schema.json | 4 ++++ charts/atlantis/values.yaml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/charts/atlantis/values.schema.json b/charts/atlantis/values.schema.json index 25cd4ba4..212803c0 100644 --- a/charts/atlantis/values.schema.json +++ b/charts/atlantis/values.schema.json @@ -350,6 +350,10 @@ "type":"string", "description":"Name of a pre-existing Kubernetes `Secret` containing a `apisecret` key. Use this instead of `api.secret`" }, + "command":{ + "type":"array", + "description":"Override the command field of the Atlantis container" + }, "commonLabels":{ "type":"object", "description":"Add Common Labels to all resources", diff --git a/charts/atlantis/values.yaml b/charts/atlantis/values.yaml index a1324209..c9795ff4 100644 --- a/charts/atlantis/values.yaml +++ b/charts/atlantis/values.yaml @@ -212,6 +212,9 @@ enableDiffMarkdownFormat: false # If managing secrets outside the chart for the API secret, use this variable to reference the secret name # apiSecretName: "myapisecret" +# Override the command field of the Atlantis container +# command: [] + # Common Labels for all resources created by this chart. commonLabels: {}