From 05493fded0380dc494e2dd0b59d755ccafd8bbee Mon Sep 17 00:00:00 2001 From: Dominik Kaminski Date: Sun, 30 Jul 2023 16:14:13 +0200 Subject: [PATCH] chore(helmfile): Move environment sample files to .sample file ending --- .gitignore | 4 ++-- helmfile/environments/dev/values.yaml.sample | 6 ++++++ helmfile/environments/prod/values.yaml.sample | 6 ++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 helmfile/environments/dev/values.yaml.sample create mode 100644 helmfile/environments/prod/values.yaml.sample diff --git a/.gitignore b/.gitignore index e0f547d7..0658efdb 100755 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,5 @@ .idea # Ignore changes to sample environments -helmfile/environments/dev/ -helmfile/environments/prod/ +helmfile/environments/dev/values.yaml +helmfile/environments/prod/values.yaml diff --git a/helmfile/environments/dev/values.yaml.sample b/helmfile/environments/dev/values.yaml.sample new file mode 100644 index 00000000..c1a20286 --- /dev/null +++ b/helmfile/environments/dev/values.yaml.sample @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS" +# SPDX-License-Identifier: Apache-2.0 +--- +# This a sample file and could be filled with proper variable overload. +sample: true +... diff --git a/helmfile/environments/prod/values.yaml.sample b/helmfile/environments/prod/values.yaml.sample new file mode 100644 index 00000000..c1a20286 --- /dev/null +++ b/helmfile/environments/prod/values.yaml.sample @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS" +# SPDX-License-Identifier: Apache-2.0 +--- +# This a sample file and could be filled with proper variable overload. +sample: true +...