Skip to content

Commit

Permalink
restructure directories
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchv85 authored Jul 30, 2024
1 parent 04811d7 commit 03cd9b6
Show file tree
Hide file tree
Showing 177 changed files with 12,335 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* text=auto eol=lf
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf
9 changes: 0 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
# ignore avd generated files
**/documentation/**
**/intended/**
**/reports/**
**/config_backup/**
# ignore secrets
**.tok**
# ignore domain act topos
**/lab_topology/**
# ignore act directory
**/act/*inventory.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

# Placeholder
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

# Placeholder
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

# Placeholder
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

# Placeholder
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

# Placeholder
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

# Placeholder
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
45 changes: 45 additions & 0 deletions tech-library/datacenter/evpnvxlan/zbackend-infra/clab/ansible.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[defaults]

# Disable host key checking by the underlying tools Ansible uses to connect to target hosts
host_key_checking = False

# Location of inventory file containing target hosts
inventory = ./inventory/inventory.yml

# Only gather Ansible facts if explicity directed to in a given play
gathering = explicit

# Disable the creation of .retry files if a playbook fails
retry_files_enabled = False

# Path(s) to search for installed Ansible Galaxy Collections
collections_paths = ~/.ansible/collections

# Enable additional Jinja2 Extensions (https://jinja.palletsprojects.com/en/3.1.x/extensions/)
jinja2_extensions = jinja2.ext.loopcontrols,jinja2.ext.do,jinja2.ext.i18n

# Enable the YAML callback plugin, providing much easier to read terminal output. (https://docs.ansible.com/ansible/latest/plugins/callback.html#callback-plugins)
# stdout_callback = yaml

# Permit the use of callback plugins when running ad-hoc commands
bin_ansible_callbacks = True

# List of enabled callbacks. Many callbacks shipped with Ansible are not enabled by default
callbacks_enabled = profile_roles, profile_tasks, timer

# Maximum number of forks that Ansible will use to execute tasks on target hosts
forks = 15

# Disable cowsay (Why?)
nocows = True

[paramiko_connection]
# Automatically add the keys of target hosts to known hosts
host_key_auto_add = True

[persistent_connection]
# Set the amount of time, in seconds, to wait for response from remote device before timing out persistent connection.
command_timeout = 60

# Set the amount of time, in seconds, that a persistent connection will remain idle before it is destroyed.
connect_timeout = 60
Loading

0 comments on commit 03cd9b6

Please sign in to comment.