From d6618b20b81df3e5e8e720b3bd1cedff83d6d93e Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Wed, 11 Dec 2024 11:36:03 +1000 Subject: [PATCH] review-stats - rename yml templates to .j2 Signed-off-by: Ryan Lerch --- playbooks/openshift-apps/review-stats.yml | 8 ++++---- .../templates/{buildconfig.yml => buildconfig.yml.j2} | 0 .../templates/{configmap.yml => configmap.yml.j2} | 0 .../review-stats/templates/{cron.yml => cron.yml.j2} | 0 .../review-stats/templates/{pvc.yml => pvc.yml.j2} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename roles/openshift-apps/review-stats/templates/{buildconfig.yml => buildconfig.yml.j2} (100%) rename roles/openshift-apps/review-stats/templates/{configmap.yml => configmap.yml.j2} (100%) rename roles/openshift-apps/review-stats/templates/{cron.yml => cron.yml.j2} (100%) rename roles/openshift-apps/review-stats/templates/{pvc.yml => pvc.yml.j2} (100%) diff --git a/playbooks/openshift-apps/review-stats.yml b/playbooks/openshift-apps/review-stats.yml index 7bd6602e16..b8d97bb9ae 100644 --- a/playbooks/openshift-apps/review-stats.yml +++ b/playbooks/openshift-apps/review-stats.yml @@ -24,14 +24,14 @@ - role: openshift/object object_app: review-stats object_objectname: buildconfig.yml - object_template: buildconfig.yml + object_template: buildconfig.yml.j2 - role: openshift/object object_app: review-stats - object_template: configmap.yml + object_template: configmap.yml.j2 object_objectname: configmap.yml - role: openshift/object object_app: review-stats - object_template: pvc.yml + object_template: pvc.yml.j2 object_objectname: pvc.yml - role: openshift/start-build start_build_app: review-stats @@ -41,7 +41,7 @@ - build - role: openshift/object object_app: review-stats - object_template: cron.yml + object_template: cron.yml.j2 object_objectname: cron.yml tags: - deploy-cronjob diff --git a/roles/openshift-apps/review-stats/templates/buildconfig.yml b/roles/openshift-apps/review-stats/templates/buildconfig.yml.j2 similarity index 100% rename from roles/openshift-apps/review-stats/templates/buildconfig.yml rename to roles/openshift-apps/review-stats/templates/buildconfig.yml.j2 diff --git a/roles/openshift-apps/review-stats/templates/configmap.yml b/roles/openshift-apps/review-stats/templates/configmap.yml.j2 similarity index 100% rename from roles/openshift-apps/review-stats/templates/configmap.yml rename to roles/openshift-apps/review-stats/templates/configmap.yml.j2 diff --git a/roles/openshift-apps/review-stats/templates/cron.yml b/roles/openshift-apps/review-stats/templates/cron.yml.j2 similarity index 100% rename from roles/openshift-apps/review-stats/templates/cron.yml rename to roles/openshift-apps/review-stats/templates/cron.yml.j2 diff --git a/roles/openshift-apps/review-stats/templates/pvc.yml b/roles/openshift-apps/review-stats/templates/pvc.yml.j2 similarity index 100% rename from roles/openshift-apps/review-stats/templates/pvc.yml rename to roles/openshift-apps/review-stats/templates/pvc.yml.j2