Tell Git to ignore the inventory/mycluster directory (#3900)
The inventory/mycluster directory gets created when someone follows the instructions in README.md, but it should never be committed to the kubespray repo. Ignore it.pull/4176/head
parent
2a92fd2f14
commit
ba5c0fa364
|
@ -1,9 +1,6 @@
|
||||||
.vagrant
|
.vagrant
|
||||||
*.retry
|
*.retry
|
||||||
**/vagrant_ansible_inventory
|
**/vagrant_ansible_inventory
|
||||||
inventory/credentials/
|
|
||||||
inventory/group_vars/fake_hosts.yml
|
|
||||||
inventory/host_vars/
|
|
||||||
temp
|
temp
|
||||||
.idea
|
.idea
|
||||||
.tox
|
.tox
|
||||||
|
@ -17,6 +14,12 @@ contrib/terraform/aws/credentials.tfvars
|
||||||
*~
|
*~
|
||||||
vagrant/
|
vagrant/
|
||||||
|
|
||||||
|
# Ansible inventory
|
||||||
|
inventory/*
|
||||||
|
!inventory/local
|
||||||
|
!inventory/sample
|
||||||
|
inventory/*/artifacts/
|
||||||
|
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
|
@ -24,7 +27,6 @@ __pycache__/
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
.Python
|
.Python
|
||||||
inventory/*/artifacts/
|
|
||||||
env/
|
env/
|
||||||
build/
|
build/
|
||||||
credentials/
|
credentials/
|
||||||
|
|
Loading…
Reference in New Issue