From 0930cec1601daf56eac43f291839849e5d1fc40a Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Mon, 10 Aug 2020 10:44:17 +0200 Subject: terraform: Rename generic "playbook.yml" We're about to introduce a second playbook for cluster creation, so let's rename the generic "playbook.yml" to "configure.yml". --- _support/terraform/configure-demo-cluster | 4 ++-- _support/terraform/configure.yml | 20 ++++++++++++++++++++ _support/terraform/playbook.yml | 20 -------------------- 3 files changed, 22 insertions(+), 22 deletions(-) create mode 100644 _support/terraform/configure.yml delete mode 100644 _support/terraform/playbook.yml (limited to '_support/terraform') diff --git a/_support/terraform/configure-demo-cluster b/_support/terraform/configure-demo-cluster index 4471cb7f1..290176ccd 100755 --- a/_support/terraform/configure-demo-cluster +++ b/_support/terraform/configure-demo-cluster @@ -1,2 +1,2 @@ -#!/usr/bin/env sh -exec ansible-playbook -i hosts.ini playbook.yml "$@" +#!/bin/sh +exec ansible-playbook -i hosts.ini configure.yml "$@" diff --git a/_support/terraform/configure.yml b/_support/terraform/configure.yml new file mode 100644 index 000000000..0dceb96a2 --- /dev/null +++ b/_support/terraform/configure.yml @@ -0,0 +1,20 @@ +- name: Gitaly setup + hosts: gitalies + roles: + - common + - gitaly + gather_facts: no + +- name: Praefect setup + hosts: praefects + roles: + - common + - praefect + gather_facts: no + +- name: GitLab Application server setup + hosts: gitlabs + roles: + - common + - gitlab + gather_facts: no diff --git a/_support/terraform/playbook.yml b/_support/terraform/playbook.yml deleted file mode 100644 index 0dceb96a2..000000000 --- a/_support/terraform/playbook.yml +++ /dev/null @@ -1,20 +0,0 @@ -- name: Gitaly setup - hosts: gitalies - roles: - - common - - gitaly - gather_facts: no - -- name: Praefect setup - hosts: praefects - roles: - - common - - praefect - gather_facts: no - -- name: GitLab Application server setup - hosts: gitlabs - roles: - - common - - gitlab - gather_facts: no -- cgit v1.2.3