Browse Source

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
Earl C. Ruby III 5 years ago
committed by Kubernetes Prow Robot
parent
commit
ba5c0fa364
1 changed files with 6 additions and 4 deletions
  1. 10
      .gitignore

10
.gitignore

@ -1,9 +1,6 @@
.vagrant
*.retry
**/vagrant_ansible_inventory
inventory/credentials/
inventory/group_vars/fake_hosts.yml
inventory/host_vars/
temp
.idea
.tox
@ -17,6 +14,12 @@ contrib/terraform/aws/credentials.tfvars
*~
vagrant/
# Ansible inventory
inventory/*
!inventory/local
!inventory/sample
inventory/*/artifacts/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
@ -24,7 +27,6 @@ __pycache__/
# Distribution / packaging
.Python
inventory/*/artifacts/
env/
build/
credentials/

Loading…
Cancel
Save