You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
373 B

  1. ---
  2. - name: "Pre-upgrade | copy /var/lib/cni from kubelet"
  3. command: docker cp kubelet:/var/lib/cni /var/lib/cni
  4. args:
  5. creates: "/var/lib/cni"
  6. failed_when: false
  7. - name: "Pre-upgrade | ensure kubelet container is stopped if using host deployment"
  8. command: docker stop kubelet
  9. failed_when: false
  10. changed_when: false
  11. when: kubelet_deployment_type == 'host'