01e4c41be4
* nxos_integration_tests: Removing obsolete provider parameter * nxos: removing support for local-nxapi plugin * nxos: removing LocalNxapi plugin implementation * nxos_nxapi: removing local plugin usage * REVERT - nxos: removing LocalNxapi plugin implementation * Addressing yamllint issues * Removing the condition on the debug messages * Restoring changes done to nxos_nxapi* tests * Retaining timeout of 500 on nxos_smoke test * Some cleanup * Addressing latest comments * Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
59 lines
1.9 KiB
YAML
59 lines
1.9 KiB
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_os_install upgrade"
|
|
when: connection is defined
|
|
|
|
- set_fact: image_dir='/Users/mwiebe/Projects/nxos_ansible/images/'
|
|
|
|
- set_fact: checkmode='no'
|
|
- set_fact: issu='desired'
|
|
- set_fact: copy_images=True
|
|
|
|
# Set boot pointers and reload
|
|
- set_fact: force=False
|
|
|
|
- set_fact: delete_files=True
|
|
- set_fact:
|
|
delete_image_list:
|
|
- nxos.7.0.3.I7.2.bin
|
|
- nxos.7.0.3.I7.3.bin
|
|
|
|
#---------------------------------------------------------#
|
|
# Upgrade to 6.0(2)U6(1a) #
|
|
#---------------------------------------------------------#
|
|
|
|
- set_fact: si='n3000-uk9.6.0.2.U6.1a.bin'
|
|
- set_fact: ki='n3000-uk9-kickstart.6.0.2.U6.1a.bin'
|
|
|
|
- name: Upgrade to U6.1a
|
|
include: targets/nxos_install_os/tasks/upgrade/main_os_install.yaml
|
|
|
|
#---------------------------------------------------------#
|
|
# Upgrade to 6.0(2)U6(2a) #
|
|
#---------------------------------------------------------#
|
|
|
|
- set_fact: si='n3000-uk9.6.0.2.U6.2a.bin'
|
|
- set_fact: ki='n3000-uk9-kickstart.6.0.2.U6.2a.bin'
|
|
|
|
- name: Upgrade to U6.2a
|
|
include: targets/nxos_install_os/tasks/upgrade/main_os_install.yaml
|
|
|
|
#---------------------------------------------------------#
|
|
# Upgrade to 6.0(2)U6(3a) #
|
|
#---------------------------------------------------------#
|
|
|
|
- set_fact: si='n3000-s2-dk9.8.0.1.bin'
|
|
- set_fact: ki='n3000-s2-kickstart.8.0.1.bin'
|
|
|
|
- name: Upgrade to U6.3a
|
|
include: targets/nxos_install_os/tasks/upgrade/main_os_install.yaml
|
|
|
|
#---------------------------------------------------------#
|
|
# Upgrade to 7.0(3)I7(2) #
|
|
#---------------------------------------------------------#
|
|
|
|
- set_fact: si='nxos.7.0.3.I7.2.bin'
|
|
|
|
- name: Upgrade to 7.0.3.I7.2
|
|
include: targets/nxos_install_os/tasks/upgrade/main_os_install.yaml
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_os_install upgrade"
|