-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change RHEL upgrade to use machine config from API
Switch from using bootstrap ignition config to using the worker machine config obtained from the cluster API.
- Loading branch information
Showing
2 changed files
with
80 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
- name: Create temp directory | ||
tempfile: | ||
state: directory | ||
register: temp_dir | ||
|
||
- name: Get machine config | ||
command: > | ||
oc get machineconfig | ||
$(oc get machineconfigpool worker -o jsonpath='{.status.configuration.name}') | ||
--config={{ openshift_node_kubeconfig_path }} | ||
--output=yaml | ||
delegate_to: localhost | ||
register: oc_get | ||
until: | ||
- oc_get.stdout != '' | ||
retries: 36 | ||
delay: 5 | ||
|
||
- name: Write machine config to file | ||
copy: | ||
src: "{{ oc_get.stdout }}" | ||
dest: "{{ temp_dir.path }}/worker_machine_config.yaml" | ||
|
||
- name: Copy pull secret | ||
copy: | ||
src: "{{ openshift_pull_secret_path }}" | ||
dest: "{{ temp_dir.path }}/pull-secret.json" | ||
|
||
- name: Get release image | ||
command: > | ||
oc get clusterversion | ||
--config={{ openshift_node_kubeconfig_path }} | ||
--output=jsonpath='{.items[0].status.desired.image}' | ||
delegate_to: localhost | ||
register: oc_get | ||
until: | ||
- oc_get.stdout != '' | ||
retries: 36 | ||
delay: 5 | ||
|
||
- name: Set openshift_release_image fact | ||
set_fact: | ||
openshift_release_image: "{{ oc_get.stdout }}" | ||
|
||
- name: Pull release image | ||
command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ openshift_release_image }}" | ||
|
||
- name: Get machine controller daemon image from release image | ||
command: "podman run --rm {{ openshift_release_image }} image machine-config-daemon" | ||
register: release_image_mcd | ||
|
||
- block: | ||
- name: Pull MCD image | ||
command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ release_image_mcd.stdout }}" | ||
|
||
- name: Apply machine config | ||
command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}" | ||
vars: | ||
podman_flags: "--privileged --rm -ti {{ release_image_mcd.stdout }}" | ||
podman_mounts: "-v /:/rootfs -v /var/run/dbus:/var/run/dbus -v /run/systemd:/run/systemd" | ||
mcd_command: "start --node-name {{ ansible_hostname }} --once-from {{ temp_dir.path }}/worker_machine_config.yaml --skip-reboot" | ||
|
||
- name: Remove temp directory | ||
file: | ||
path: "{{ temp_dir.path }}" | ||
state: absent | ||
|
||
- name: Reboot the host and wait for it to come back | ||
reboot: | ||
# reboot_timeout: 600 # default, 10 minutes | ||
|
||
rescue: | ||
- fail: | ||
msg: "Machine config apply failed" |
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