scaleup.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. ---
  2. - name: create new nodes
  3. hosts: localhost
  4. connection: local
  5. tasks:
  6. - import_tasks: ssh_bastion.yml
  7. - import_tasks: get_machinesets.yml
  8. - include_tasks: create_machineset.yml
  9. loop: "{{ machineset.resources }}"
  10. when:
  11. - item.status.replicas is defined
  12. - item.status.replicas != 0
  13. - name: wait for nodes to become available
  14. hosts: new_workers
  15. gather_facts: false
  16. tasks:
  17. - wait_for_connection: {}
  18. - setup: {}
  19. - name: Copy ops-mirror.pem
  20. copy:
  21. src: ../../inventory/dynamic/injected/ops-mirror.pem
  22. dest: /var/lib/yum/ops-mirror.pem
  23. owner: root
  24. group: root
  25. mode: 0644
  26. - name: Initialize openshift repos
  27. import_tasks: additional_repos.yml
  28. - import_playbook: ../../playbooks/scaleup.yml
  29. vars:
  30. openshift_kubeconfig_path: "{{ kubeconfig_path }}"
  31. - name: wait for nodes to join
  32. hosts: new_workers
  33. tasks:
  34. - name: HACK disable selinux
  35. selinux:
  36. policy: targeted
  37. state: permissive
  38. - name: Create core user for storage tests to pass
  39. user:
  40. name: core
  41. group: wheel
  42. - name: Make sure core user has ssh config directory
  43. file:
  44. name: /home/core/.ssh
  45. state: directory
  46. owner: core
  47. group: wheel
  48. mode: 0700
  49. - name: Install nfs-utils for storage tests
  50. package:
  51. name: nfs-utils
  52. state: present
  53. - name: Wait for new nodes to be ready
  54. k8s_facts:
  55. kubeconfig: "{{ kubeconfig_path }}"
  56. kind: Node
  57. name: "{{ node_name }}"
  58. delegate_to: localhost
  59. register: new_machine
  60. until:
  61. - new_machine.resources is defined
  62. - new_machine.resources | length > 0
  63. - new_machine.resources[0].status is defined
  64. - new_machine.resources[0].status.conditions is defined
  65. - new_machine.resources[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  66. # Give the node three minutes to come back online.
  67. retries: 48
  68. delay: 30
  69. ignore_errors: true
  70. - when: new_machine is failed
  71. block:
  72. - name: Collect a list of containers
  73. command: crictl ps -a -q
  74. register: crictl_ps_output
  75. - name: Collect container logs
  76. command: "crictl logs {{ item }}"
  77. register: crictl_logs_output
  78. with_items: "{{ crictl_ps_output.stdout_lines }}"
  79. ignore_errors: true
  80. - name: Get crio logs
  81. command: journalctl --no-pager -u cri-o
  82. register: crio_logs
  83. ignore_errors: true
  84. - name: Get kubelet logs
  85. command: journalctl --no-pager -u kubelet
  86. register: kubelet_logs
  87. ignore_errors: tru
  88. - debug:
  89. var: crictl_logs_output
  90. - debug:
  91. msg: "{{ kubelet_logs.stdout_lines }}"
  92. - debug:
  93. msg: "{{ crio_logs.stdout_lines }}"
  94. - fail:
  95. msg: Node failed to become Ready
  96. - name: Remove CoreOS nodes
  97. hosts: localhost
  98. connection: local
  99. tasks:
  100. - name: Mark CoreOS nodes as unschedulable
  101. command: >
  102. oc adm cordon {{ item | lower }}
  103. --config={{ kubeconfig_path }}
  104. with_items: "{{ pre_scaleup_workers_name }}"
  105. - name: Drain CoreOS nodes
  106. command: >
  107. oc adm drain {{ item | lower }}
  108. --config={{ kubeconfig_path }}
  109. --force --delete-local-data --ignore-daemonsets
  110. --timeout=0s
  111. with_items: "{{ pre_scaleup_workers_name }}"
  112. - name: remove existing machinesets
  113. k8s:
  114. api_version: machine.openshift.io/v1beta1
  115. kubeconfig: "{{ kubeconfig_path }}"
  116. namespace: openshift-machine-api
  117. kind: MachineSet
  118. name: "{{ item }}"
  119. state: absent
  120. with_items: "{{ pre_scaleup_machineset_names }}"
  121. - name: Delete CoreOS nodes
  122. k8s:
  123. kubeconfig: "{{ kubeconfig_path }}"
  124. kind: Node
  125. name: "{{ item }}"
  126. state: absent
  127. with_items: "{{ pre_scaleup_workers_name }}"