Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/datacenter/acitoolkit
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Smith committed Mar 8, 2017
2 parents 7dc56bb + a3cddfc commit 985cb01
Show file tree
Hide file tree
Showing 17 changed files with 14 additions and 7 deletions.
18 changes: 11 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# VERSION 1.0
FROM ubuntu

MAINTAINER Kevin Corbin, kecorbin@cisco.com
RUN apt-get update
RUN apt-get -y install git python python-pip
RUN apt-get -y install graphviz graphviz-dev pkg-config
WORKDIR /opt
RUN git clone https://github.com/datacenter/acitoolkit
WORKDIR acitoolkit
RUN python setup.py install

RUN apt-get update \
&& apt-get -y install git graphviz-dev pkg-config python python-pip vim-tiny \
&& cd /opt \
&& git clone https://github.com/datacenter/acitoolkit \
&& cd acitoolkit \
&& python setup.py install \
&& apt-get clean
WORKDIR /opt/acitoolkit
CMD ["/bin/bash"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file modified samples/aci-epg-reports-in-yaml.py
100644 → 100755
Empty file.
Empty file modified samples/aci-find-ip.py
100644 → 100755
Empty file.
Empty file modified samples/aci-get-interface-stats-from-nodes.py
100644 → 100755
Empty file.
Empty file modified samples/aci-get-tenantObject-from-json.py
100644 → 100755
Empty file.
Empty file modified samples/aci-raw-class-query.py
100644 → 100755
Empty file.
Empty file modified samples/aci-show-cdp.py
100644 → 100755
Empty file.
Empty file modified samples/aci-show-faults-by-domain.py
100644 → 100755
Empty file.
Empty file modified samples/aci-show-lldp.py
100644 → 100755
Empty file.
Empty file modified samples/aci-show-tenant-faults.py
100644 → 100755
Empty file.
Empty file modified samples/aci-show-tenant-health.py
100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions samples/credentials.py.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
LOGIN = "admin"
PASSWORD = "password"
URL = "https://10.0.0.1"
Empty file modified samples/tutorial.py
100644 → 100755
Empty file.

0 comments on commit 985cb01

Please sign in to comment.