-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added subject label functionality to external EPGs #320
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@markciecior Please make the suggested changes so that I can approve your PR.
# -*- coding: utf-8 -*- | ||
|
||
# Copyright: (c) 2020, Sudhakar Shet Kudtarkar (@kudtarkar1) | ||
# Copyright: (c) 2020, Shreyas Srish <[email protected]> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove:
# Copyright: (c) 2020, Sudhakar Shet Kudtarkar (@kudtarkar1)
# Copyright: (c) 2020, Shreyas Srish <[email protected]>
description: More information about the internal APIC class B(fvtenant), B(l3extInstP) and B(l3extOut). | ||
link: https://developer.cisco.com/docs/apic-mim-ref/ | ||
author: | ||
- Sudhakar Shet Kudtarkar (@kudtarkar1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the following and add your name:
- Sudhakar Shet Kudtarkar (@kudtarkar1)
- Shreyas Srish (@shrsr)
@@ -4,6 +4,7 @@ lh-dmz1-pod3-sim-v42 ansible_host=173.36.219.68 aci_hostname=173.36.219.68 | |||
lh-dmz1-pod3-sim-v51 ansible_host=173.36.219.129 aci_hostname=173.36.219.129 | |||
aws_cloud ansible_host=52.52.20.121 aci_hostname=52.52.20.121 aci_password="sJ94G92#8dq2hx*K4qh" cloud_type=aws region=us-east-1 region_2=us-west-1 availability_zone=us-west-1a | |||
azure_cloud ansible_host=104.42.26.226 aci_hostname=104.42.26.226 aci_password="sJ94G92#8dq2hx*K4qh" cloud_type=azure region=westus region_2=westus2 vnet_gateway=true | |||
sandbox ansible_host=sandboxapicdc.cisco.com aci_hostname=sandboxapicdc.cisco.com aci_username=admin aci_password="!v3G@!4@Y" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove line 7
- name: Verify bind_extepg_consumer_contract | ||
assert: | ||
that: | ||
- bind_extepg_consumer_contract.msg == "state is present but all of the following are missing: contract_type" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- bind_extepg_consumer_contract.msg == "state is present but all of the following are missing: contract_type"
this statement will fail the assertion. Can you please rectify?
@@ -0,0 +1,129 @@ | |||
# Test code for the ACI modules | |||
# Copyright: (c) 2020, Shreyas Srish (@shrsr), Mark Ciecior (@markciecior) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove: # Copyright: (c) 2020, Shreyas Srish (@shrsr),
No description provided.