mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
|
---
|
||
|
###########################################
|
||
|
###########################################
|
||
|
#### GitHub Services-Engineering Stack ####
|
||
|
#### ####
|
||
|
#### GHE Primary HA backup-utils ONLY ####
|
||
|
###########################################
|
||
|
###########################################
|
||
|
|
||
|
###############################
|
||
|
# Description of the playbook #
|
||
|
###############################
|
||
|
# description: Builds GHE Primary, HA, and backup-utils.
|
||
|
# detailed_description: Builds GHE Primary, HA, and backup-utils.
|
||
|
|
||
|
######################
|
||
|
## Configure GitHub ##
|
||
|
######################
|
||
|
- hosts: github_primary
|
||
|
vars:
|
||
|
demo_github_initial_user: "{{ hostvars['localhost'].local_user }}"
|
||
|
github_host: "{{ hostvars['github_primary'].ansible_host }}"
|
||
|
probot_server_ip: "{{ hostvars['backup-utils'].ansible_host }}"
|
||
|
roles:
|
||
|
- role: ghe-initialize
|
||
|
|
||
|
##########################################
|
||
|
## Run ghe-config-apply for all changes ##
|
||
|
##########################################
|
||
|
# Due to us hot loading some data into GHE, the final
|
||
|
# run of ghe-config-apply hangs and leaves the system in an odd state
|
||
|
# The simplist option is to run the process
|
||
|
# 1 more time at the end to solve the issue
|
||
|
- hosts: github_primary
|
||
|
tasks:
|
||
|
- block:
|
||
|
- name: GHE-Config-Apply
|
||
|
include_role:
|
||
|
name: ghe-initialize
|
||
|
tasks_from: ghe-config-apply.yml
|
||
|
tags:
|
||
|
- github
|