ddffdb63bf
* Remove non-kubeadm deployment * More cleanup * More cleanup * More cleanup * More cleanup * Fix gitlab * Try stop gce first before absent to make the delete process work * More cleanup * Fix bug with checking if kubeadm has already run * Fix bug with checking if kubeadm has already run * More fixes * Fix test * fix * Fix gitlab checkout untill kubespray 2.8 is on quay * Fixed * Add upgrade path from non-kubeadm to kubeadm. Revert ssl path * Readd secret checking * Do gitlab checks from v2.7.0 test upgrade path to 2.8.0 * fix typo * Fix CI jobs to kubeadm again. Fix broken hyperkube path * Fix gitlab * Fix rotate tokens * More fixes * More fixes * Fix tokens
29 lines
887 B
YAML
29 lines
887 B
YAML
---
|
|
- name: "Pre-upgrade | check if kubelet container exists"
|
|
shell: docker ps -af name=kubelet | grep kubelet
|
|
failed_when: false
|
|
changed_when: false
|
|
register: kubelet_container_check
|
|
|
|
- name: "Pre-upgrade | copy /var/lib/cni from kubelet"
|
|
command: docker cp kubelet:/var/lib/cni /var/lib/cni
|
|
args:
|
|
creates: "/var/lib/cni"
|
|
failed_when: false
|
|
when: kubelet_container_check.rc == 0
|
|
|
|
- name: "Pre-upgrade | ensure kubelet container service is stopped if using host deployment"
|
|
service:
|
|
name: kubelet
|
|
state: stopped
|
|
when: kubelet_container_check.rc == 0
|
|
|
|
- name: "Pre-upgrade | ensure kubelet container is removed if using host deployment"
|
|
command: docker rm -fv kubelet
|
|
failed_when: false
|
|
changed_when: false
|
|
register: remove_kubelet_container
|
|
retries: 4
|
|
until: remove_kubelet_container.rc == 0
|
|
delay: 5
|
|
when: kubelet_container_check.rc == 0
|