-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix(cv_device_v3): reconciled configlets are not treated specially (#667
) * Feat(cv_device_v3): add configuration validation support * Bug(cv_device_v3): reconciled configlets are not treated specially * revert commit from older stale PR * revert old device validation commit * adding molecule test * add fixtures and read vars from it + cleanup * updating condition * Remove reconciled configlet with strict mode Co-authored-by: alexeygorbunov <[email protected]> * Experiment with different method * rewriting the logic Co-authored-by: Claus Holbech <[email protected]> * removing commented experiments * Attempting to fix pylint error --------- Co-authored-by: alexeygorbunov <[email protected]> Co-authored-by: Claus Holbech <[email protected]> Co-authored-by: Sugetha Chandhrasekar <[email protected]>
- Loading branch information
1 parent
d319577
commit f8007d9
Showing
6 changed files
with
216 additions
and
9 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
39 changes: 39 additions & 0 deletions
39
ansible_collections/arista/cvp/molecule/cv_device_v3/reconcile.py
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,39 @@ | ||
#!/usr/bin/env python | ||
# Copyright (c) 2023 Arista Networks, Inc. | ||
# Use of this source code is governed by the Apache License 2.0 | ||
# that can be found in the LICENSE file. | ||
from cvprac.cvp_client import CvpClient | ||
import yaml | ||
import requests.packages.urllib3 | ||
requests.packages.urllib3.disable_warnings() | ||
|
||
# Setting variables | ||
RECONCILE = 'RECONCILE_' # Prefix for the configlet name | ||
fixture_file = 'molecule/fixtures/cv_device_v3.yaml' | ||
|
||
with open(fixture_file, encoding="utf-8") as f: | ||
dut = yaml.safe_load(f) | ||
|
||
# load password from fixtures otherwise assume it's and ATD environemnt and read the password from | ||
# the config file | ||
if len(dut[0]["password"]) > 0: | ||
password = dut[0]["password"] | ||
else: | ||
config_file = "/home/coder/.config/code-server/config.yaml" | ||
with open(config_file, encoding="utf-8") as f: | ||
password = yaml.safe_load(f)["password"] | ||
|
||
# Connect to CloudVision | ||
clnt = CvpClient() | ||
clnt.set_log_level(log_level='WARNING') | ||
clnt.connect([dut[0]["node"]], dut[0]["username"], password) | ||
|
||
# Store device information | ||
device = clnt.api.get_device_by_serial(dut[0]["device"]) | ||
dev_mac = device["systemMacAddress"] | ||
|
||
# Reconcile device configuration | ||
rc = clnt.api.get_device_configuration(dev_mac) | ||
name = RECONCILE + device['serialNumber'] | ||
update = clnt.api.update_reconcile_configlet(dev_mac, rc, "", name, True) | ||
addcfg = clnt.api.apply_configlets_to_device("auto-reconciling", device,[update['data']]) |
126 changes: 126 additions & 0 deletions
126
ansible_collections/arista/cvp/molecule/cv_device_v3/test_reconciled_configlet.yml
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,126 @@ | ||
--- | ||
- name: Test cv_device_v3 | ||
hosts: CloudVision | ||
connection: local | ||
gather_facts: no | ||
vars: | ||
device_name: s1-leaf1 | ||
|
||
cvp_configlets: | ||
configlet1: '! This is first configlet' | ||
configlet2: '! This is second configlet' | ||
configlet3: 'alias shover show version' | ||
|
||
cvp_devices_apply_configlet: | ||
- fqdn: "{{device_name}}" | ||
parentContainerName: "{{cv_facts_v3_result.data.cvp_devices[0].parentContainerName}}" | ||
configlets: | ||
- 'configlet1' | ||
- 'configlet2' | ||
- 'configlet3' | ||
|
||
cvp_devices_detach_configlet: | ||
- fqdn: "{{device_name}}" | ||
parentContainerName: "{{cv_facts_v3_result.data.cvp_devices[0].parentContainerName}}" | ||
configlets: "{{cv_facts_v3_result.data.cvp_devices[0].configlets + ['configlet1', 'configlet2']}}" | ||
|
||
cvp_devices_deploy: | ||
- fqdn: "{{device_name}}" # device must be in undefined container | ||
parentContainerName: "{{cv_facts_v3_result.data.cvp_devices[0].parentContainerName}}" | ||
configlets: "{{cv_facts_v3_result.data.cvp_devices[0].configlets}}" | ||
|
||
test_reconcile_misorder: | ||
- fqdn: "{{device_name}}" | ||
parentContainerName: "{{cv_facts_v3_result.data.cvp_devices[0].parentContainerName}}" | ||
configlets: "{{cv_facts_v3_result.data.cvp_devices[0].configlets + ['configlet1', 'RECONCILE_' + device_name, 'configlet2']}}" | ||
|
||
tasks: | ||
- name: Collect devices facts from {{ inventory_hostname }} | ||
arista.cvp.cv_facts_v3: | ||
facts: | ||
- devices | ||
regexp_filter: "{{ device_name }}" | ||
register: cv_facts_v3_result | ||
|
||
- name: "Push config" | ||
arista.cvp.cv_configlet_v3: | ||
configlets: "{{ cvp_configlets }}" | ||
state: present | ||
|
||
- name: Apply configlet on {{ inventory_hostname }} | ||
arista.cvp.cv_device_v3: | ||
devices: '{{ cvp_devices_apply_configlet }}' | ||
state: present | ||
register: CV_DEVICE_V3_RESULT | ||
|
||
- name: "Check apply_configlet with apply_mode loose" | ||
ansible.builtin.assert: | ||
that: | ||
- CV_DEVICE_V3_RESULT.changed == true | ||
- CV_DEVICE_V3_RESULT.configlets_attached.changed == true | ||
- CV_DEVICE_V3_RESULT.configlets_attached.configlets_attached_count == 3 | ||
- CV_DEVICE_V3_RESULT.configlets_attached.configlets_attached_list == ["s1-leaf1_configlet_attached"] | ||
- CV_DEVICE_V3_RESULT.configlets_attached.success == true | ||
- CV_DEVICE_V3_RESULT.configlets_attached.taskIds != [] | ||
|
||
- name: "Detach configlet from {{ inventory_hostname }}" | ||
arista.cvp.cv_device_v3: | ||
devices: '{{ cvp_devices_detach_configlet }}' | ||
state: present | ||
apply_mode: strict | ||
register: CV_DEVICE_V3_RESULT | ||
|
||
- name: Run Python script to reconcile the device | ||
ansible.builtin.command: python3 molecule/cv_device_v3/reconcile.py | ||
|
||
- name: Execute Task for detach configlet | ||
arista.cvp.cv_task_v3: | ||
tasks: | ||
- "{{ CV_DEVICE_V3_RESULT.taskIds[0] }}" | ||
state: cancelled | ||
|
||
# Regardless of where the user specifies the reconciled configlets position, cv_device_v3 | ||
# will make sure to move to the tail end of the configlet list, which should not trigger | ||
# an empty task. | ||
- name: Testing misordering the reconciled configlet | ||
arista.cvp.cv_device_v3: | ||
devices: '{{ test_reconcile_misorder }}' | ||
state: present | ||
register: reconciled_misorder_result | ||
|
||
- name: Checking that no task was generated | ||
ansible.builtin.assert: | ||
that: | ||
- reconciled_misorder_result.changed == false | ||
- reconciled_misorder_result.configlets_attached.changed == false | ||
- reconciled_misorder_result.configlets_attached.configlets_attached_count == 0 | ||
- reconciled_misorder_result.success == false | ||
- reconciled_misorder_result.configlets_attached.taskIds == [] | ||
|
||
- name: "Resetting original state on device: {{ inventory_hostname }}" | ||
arista.cvp.cv_device_v3: | ||
devices: '{{ cvp_devices_deploy }}' | ||
apply_mode: strict | ||
state: present | ||
register: CV_DEVICE_V3_RESULT | ||
|
||
- name: "Checking if the reset was successful" | ||
ansible.builtin.assert: | ||
that: | ||
- CV_DEVICE_V3_RESULT.changed == true | ||
- CV_DEVICE_V3_RESULT.configlets_attached.changed == true | ||
- CV_DEVICE_V3_RESULT.configlets_attached.configlets_attached_count == 2 | ||
- CV_DEVICE_V3_RESULT.configlets_attached.configlets_attached_list == ["s1-leaf1_configlet_attached"] | ||
- CV_DEVICE_V3_RESULT.configlets_attached.success == true | ||
- CV_DEVICE_V3_RESULT.configlets_attached.taskIds != [] | ||
|
||
- name: "Delete config" | ||
arista.cvp.cv_configlet_v3: | ||
configlets: "{{ cvp_configlets | combine({'RECONCILE_' + device_name: ''}) }}" | ||
state: absent | ||
|
||
- name: Execute the task to reset the device back to its original state | ||
arista.cvp.cv_task_v3: | ||
tasks: | ||
- "{{ CV_DEVICE_V3_RESULT.configlets_attached.taskIds[0] }}" | ||
when: CV_DEVICE_V3_RESULT.success is true |
4 changes: 4 additions & 0 deletions
4
ansible_collections/arista/cvp/molecule/fixtures/cv_device_v3.yaml
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,4 @@ | ||
- node : 192.168.0.5 | ||
username: arista | ||
password: "" | ||
device: s1-leaf1 |
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
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