This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Chris Short <[email protected]>
- Loading branch information
1 parent
98b28d8
commit f4c9caf
Showing
3 changed files
with
56 additions
and
74 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,57 @@ | ||
- hosts: master | ||
tasks: | ||
- name: apt-get update | ||
apt: | ||
update_cache: yes | ||
autoclean: yes | ||
autoremove: yes | ||
|
||
- name: Upgrade kubeadm | ||
apt: | ||
name: "{{ item }}" | ||
state: latest | ||
with_items: | ||
- kubeadm | ||
|
||
- name: Determine latest stable version of Kubernetes | ||
shell: curl -sSL https://dl.k8s.io/release/stable.txt | ||
register: stable_ver | ||
|
||
- name: Upgrade cluster with kubeadm | ||
shell: "kubeadm upgrade apply -y {{ stable_ver.stdout }}" | ||
async: 300 | ||
poll: 5 | ||
|
||
- name: Cordon Hosts | ||
shell: "kubectl cordon {{ item }}" | ||
with_items: | ||
- "{{ groups['all'] }}" | ||
tags: cordon | ||
|
||
- name: Drain Hosts | ||
shell: "kubectl drain {{ item }} --ignore-daemonsets" | ||
with_items: | ||
- "{{ groups['all'] }}" | ||
ignore_errors: yes | ||
tags: drain | ||
|
||
- hosts: all | ||
roles: | ||
- upgrade | ||
tasks: | ||
- name: Upgrade Y'all | ||
apt: | ||
name: "{{ item }}" | ||
state: latest | ||
with_items: | ||
- kubelet | ||
- kubectl | ||
tags: | ||
- kubelet | ||
- kubectl | ||
|
||
- hosts: master | ||
tasks: | ||
- name: Uncordon Hosts | ||
shell: "kubectl uncordon {{ item }}" | ||
with_items: | ||
- "{{ groups['all'] }}" | ||
tags: uncordon |