From c98170d5f72ef0984172842adefd37fbe12bf017 Mon Sep 17 00:00:00 2001 From: Dale Lemons <69318976+dlemons-redhat@users.noreply.github.com> Date: Thu, 6 Jun 2024 12:43:34 -0400 Subject: [PATCH] variablize chart version via host_vars (#151) --- ansible-navigator.yml | 0 openshift/gitlab.yml | 2 +- openshift/host_vars/localhost.yml | 2 ++ 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 ansible-navigator.yml create mode 100644 openshift/host_vars/localhost.yml diff --git a/ansible-navigator.yml b/ansible-navigator.yml new file mode 100644 index 0000000..e69de29 diff --git a/openshift/gitlab.yml b/openshift/gitlab.yml index 266ac6e..81e271c 100644 --- a/openshift/gitlab.yml +++ b/openshift/gitlab.yml @@ -117,7 +117,7 @@ namespace: gitlab-system spec: chart: - version: "7.6.2" + version: "{{ gitlab_chart_version }}" values: nginx-ingress: enabled: false diff --git a/openshift/host_vars/localhost.yml b/openshift/host_vars/localhost.yml new file mode 100644 index 0000000..662bd88 --- /dev/null +++ b/openshift/host_vars/localhost.yml @@ -0,0 +1,2 @@ +--- +gitlab_chart_version: "8.0.1" \ No newline at end of file