Giter Site home page Giter Site logo

Comments (4)

michsmit99 avatar michsmit99 commented on July 22, 2024

Hi Daniel, can you post what you are trying to do ? It seems to work for me. The add_context and get_context only work on the local objects. If you want to create config on the APIC, the changes will remain local until you call push_to_apic. Likewise to get the current objects from the APIC, first call Tenant.get_deep(session, <tenant_name>) to load the objects locally and then traverse using get_context, get_children, etc.

from acitoolkit.

daniel-zuckerberg avatar daniel-zuckerberg commented on July 22, 2024

Michael, I must be doing something wrong then. I'm trying to assign a context to a Bridge Domain with the CLI app. Here's what I'm executing:

fabric#
fabric# conf t
fabric(config)# tenant PRODUCTION
Executing create tenant command
fabric(config)# exit
fabric# switchto PRODUCTION
fabric-PRODUCTION# conf t
fabric-PRODUCTION(config)# context AMERICAS
Executing create context command
fabric-PRODUCTION(config-ctx)# exit
fabric-PRODUCTION(config)# bridgedomain VLAN_207
Executing create bridgedomain command
fabric-PRODUCTION(config-bd)# ip address 10.10.207.254/24
Executing create subnet command
fabric-PRODUCTION(config-bd)# context AMERICAS

My context never gets assigned to the Bridge Domain. Looking though the code, I donโ€™t see this built out yet in the BridgeDomainConfigSubMode class in acitoolkitcli.py. So I added the following to do_context() to try to get this working:

def do_context(self, args):
self.bridgedomain.add_context(args[0])
resp = self.apic.push_to_apic(self.tenant.get_url(), self.tenant.get_json())
if not resp.ok:
error_message(resp)
return

But still no luck. And if I go and manually set the context, I notice that "self.bridgedomain.get_context()" is returning โ€œNoneโ€. Even though it is assigned.

from acitoolkit.

michsmit99 avatar michsmit99 commented on July 22, 2024

Ah, makes sense. I was assuming you were writing a script. Yes, the context command implementation is missing in the CLI app. The reason your code isn't working is that the add_context call expects to receive a Context object not a string with the context name. I checked in a fix based on your code. I also added some assertions within the add_context method to check that the context is indeed an instance of the Context class.

from acitoolkit.

daniel-zuckerberg avatar daniel-zuckerberg commented on July 22, 2024

Thanks Mike! It's working now!

from acitoolkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.