Fix puppet 4 installations
Our old puppet 4 process was to run the install_puppet.sh script to transition from puppet 3 to puppet 4 but this ran after base.yaml which enforces a puppet version. Unfortunately we were enforcing puppet version 3 in the base.yaml playbook via the puppet-install role which meant base would install pupept 3 and our upgrade playbook would install puppet 4 in a loop. Thankfully we run puppet after the upgrade so we were using the puppet version we wanted. To fix this needless reinstall loop we do two things. We move the upgrade playbook before base.yaml so that we upgrade before we enforce a version. Then we update group vars for the puppet4 group to enforce the puppet 4 version. Change-Id: I97ca81ed5331e664f8e2e65b283793f0919f6033
This commit is contained in:
parent
020a022045
commit
c74a4da06e
1
playbooks/group_vars/puppet4.yaml
Normal file
1
playbooks/group_vars/puppet4.yaml
Normal file
@ -0,0 +1 @@
|
|||||||
|
puppet_install_version: 4
|
14
run_all.sh
14
run_all.sh
@ -88,6 +88,15 @@ start_timer
|
|||||||
timeout -k 2m 120m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/bootstrap-k8s-nodes.yaml
|
timeout -k 2m 120m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/bootstrap-k8s-nodes.yaml
|
||||||
send_timer k8s_bootstrap
|
send_timer k8s_bootstrap
|
||||||
|
|
||||||
|
# Update the puppet version
|
||||||
|
# We run this before base because base enforces the specified puppet version
|
||||||
|
# but does not transition from an older version to a newer version.
|
||||||
|
# This playbook will do the transition if necessary then base will enforce
|
||||||
|
# it going forward.
|
||||||
|
start_timer
|
||||||
|
timeout -k 2m 10m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/update_puppet_version.yaml
|
||||||
|
send_timer update_puppet_version
|
||||||
|
|
||||||
# Run the base playbook everywhere
|
# Run the base playbook everywhere
|
||||||
start_timer
|
start_timer
|
||||||
timeout -k 2m 120m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/base.yaml
|
timeout -k 2m 120m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/base.yaml
|
||||||
@ -106,11 +115,6 @@ start_timer
|
|||||||
timeout -k 2m 10m ansible-playbook -f 50 -e @/etc/ansible/hosts/gitea-cluster.yaml ${SYSTEM_CONFIG}/kubernetes/gitea/gitea-playbook.yaml
|
timeout -k 2m 10m ansible-playbook -f 50 -e @/etc/ansible/hosts/gitea-cluster.yaml ${SYSTEM_CONFIG}/kubernetes/gitea/gitea-playbook.yaml
|
||||||
send_timer gitea_gitea
|
send_timer gitea_gitea
|
||||||
|
|
||||||
# Update the puppet version
|
|
||||||
start_timer
|
|
||||||
timeout -k 2m 10m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/update_puppet_version.yaml
|
|
||||||
send_timer update_puppet_version
|
|
||||||
|
|
||||||
# Run the git/gerrit/zuul sequence, since it's important that they all work together
|
# Run the git/gerrit/zuul sequence, since it's important that they all work together
|
||||||
start_timer
|
start_timer
|
||||||
timeout -k 2m 30m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/remote_puppet_git.yaml
|
timeout -k 2m 30m ansible-playbook -f 50 ${ANSIBLE_PLAYBOOKS}/remote_puppet_git.yaml
|
||||||
|
Loading…
Reference in New Issue
Block a user