|
140 | 140 |
|
141 | 141 | - name: "Next: Create resource modifier ConfigMap" |
142 | 142 | ansible.builtin.debug: |
143 | | - msg: "{{ lookup('file', rendered_dir.path + '/00-resource-modifiers-configmap.yaml') }}" |
| 143 | + msg: "{{ lookup('file', rendered_dir.path + '/00-resource-modifiers-configmap.yaml').splitlines() }}" |
144 | 144 | when: not (auto_ack | bool) |
145 | 145 |
|
146 | 146 | - name: Pause before creating resource modifier ConfigMap |
|
271 | 271 |
|
272 | 272 | - name: "Next: Step 1 - Restore PVCs (CSI Snapshots)" |
273 | 273 | ansible.builtin.debug: |
274 | | - msg: "{{ lookup('file', rendered_dir.path + '/01-restore-order-00-pvcs.yaml') }}" |
| 274 | + msg: "{{ lookup('file', rendered_dir.path + '/01-restore-order-00-pvcs.yaml').splitlines() }}" |
275 | 275 | when: not (auto_ack | bool) |
276 | 276 |
|
277 | 277 | - name: Pause before PVC restore |
|
319 | 319 |
|
320 | 320 | - name: "Next: Step 2 - Restore foundation resources (Secrets, ConfigMaps, NADs)" |
321 | 321 | ansible.builtin.debug: |
322 | | - msg: "{{ lookup('file', rendered_dir.path + '/02-restore-order-10-foundation.yaml') }}" |
| 322 | + msg: "{{ lookup('file', rendered_dir.path + '/02-restore-order-10-foundation.yaml').splitlines() }}" |
323 | 323 | when: not (auto_ack | bool) |
324 | 324 |
|
325 | 325 | - name: Pause after PVC restore |
|
351 | 351 |
|
352 | 352 | - name: "Next: Step 3 - Restore infrastructure CRs (OpenStackVersion, MariaDBAccount, etc.)" |
353 | 353 | ansible.builtin.debug: |
354 | | - msg: "{{ lookup('file', rendered_dir.path + '/03-restore-order-20-infrastructure.yaml') }}" |
| 354 | + msg: "{{ lookup('file', rendered_dir.path + '/03-restore-order-20-infrastructure.yaml').splitlines() }}" |
355 | 355 | when: not (auto_ack | bool) |
356 | 356 |
|
357 | 357 | - name: Pause after foundation restore |
|
383 | 383 |
|
384 | 384 | - name: "Next: Step 4 - Restore OpenStackControlPlane (staged, infrastructure-only)" |
385 | 385 | ansible.builtin.debug: |
386 | | - msg: "{{ lookup('file', rendered_dir.path + '/04-restore-order-30-controlplane.yaml') }}" |
| 386 | + msg: "{{ lookup('file', rendered_dir.path + '/04-restore-order-30-controlplane.yaml').splitlines() }}" |
387 | 387 | when: not (auto_ack | bool) |
388 | 388 |
|
389 | 389 | - name: Pause after infrastructure restore |
|
415 | 415 |
|
416 | 416 | - name: "Next: Step 5 - Restore GaleraBackup CRs" |
417 | 417 | ansible.builtin.debug: |
418 | | - msg: "{{ lookup('file', rendered_dir.path + '/05-restore-order-40-backup-config.yaml') }}" |
| 418 | + msg: "{{ lookup('file', rendered_dir.path + '/05-restore-order-40-backup-config.yaml').splitlines() }}" |
419 | 419 | when: not (auto_ack | bool) |
420 | 420 |
|
421 | 421 | - name: Pause after controlplane restore |
|
559 | 559 | - name: "Next: Step 8 - Restore RabbitMQ user credentials" |
560 | 560 | ansible.builtin.debug: |
561 | 561 | msg: |
562 | | - - "{{ lookup('file', rendered_dir.path + '/06b-resource-modifiers-tmp.yaml') }}" |
| 562 | + - "{{ lookup('file', rendered_dir.path + '/06b-resource-modifiers-tmp.yaml').splitlines() }}" |
563 | 563 | - "---" |
564 | | - - "{{ lookup('file', rendered_dir.path + '/06b-restore-rabbitmq-secrets.yaml') }}" |
| 564 | + - "{{ lookup('file', rendered_dir.path + '/06b-restore-rabbitmq-secrets.yaml').splitlines() }}" |
565 | 565 | when: not (auto_ack | bool) |
566 | 566 |
|
567 | 567 | - name: Pause after database restore |
|
702 | 702 |
|
703 | 703 | - name: "Next: Step 10 - Restore DataPlane resources" |
704 | 704 | ansible.builtin.debug: |
705 | | - msg: "{{ lookup('file', rendered_dir.path + '/07-restore-order-60-dataplane.yaml') }}" |
| 705 | + msg: "{{ lookup('file', rendered_dir.path + '/07-restore-order-60-dataplane.yaml').splitlines() }}" |
706 | 706 | when: not (auto_ack | bool) |
707 | 707 |
|
708 | 708 | - name: Pause after full deployment ready |
|
746 | 746 |
|
747 | 747 | - name: "Next: Step 11 - Run EDPM deployment to resync credentials on dataplane nodes" |
748 | 748 | ansible.builtin.debug: |
749 | | - msg: "{{ lookup('file', rendered_dir.path + '/08-edpm-deployment.yaml') }}" |
| 749 | + msg: "{{ lookup('file', rendered_dir.path + '/08-edpm-deployment.yaml').splitlines() }}" |
750 | 750 | when: not (auto_ack | bool) and nodeset_names.stdout != "" |
751 | 751 |
|
752 | 752 | - name: Pause before EDPM deployment |
|
0 commit comments