From 9073eba405ff4ac6d03b736983cd847efb3f9d90 Mon Sep 17 00:00:00 2001 From: John Dewey Date: Wed, 1 Mar 2017 11:02:18 -0800 Subject: [PATCH 1/2] Added host_vars to gitignore Since inventory ships with kargo, the ability to change functionality without having a dirty git index is nice. An example, we wish to change is the version of docker deployed to our CentOS systems. Due to an issue with tiller and docker 1.13, we wish to deploy docker 1.12. Since this change does not belong in Kargo, we wish to locally override the docker version, until the issue is sorted. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b9b150a3d..6ddaff5a1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.retry inventory/vagrant_ansible_inventory inventory/group_vars/fake_hosts.yml +inventory/host_vars/k8s-0*/ temp .idea .tox From e771d0ea39fd087b1b3922f1c56118f5b82b3e17 Mon Sep 17 00:00:00 2001 From: John Dewey Date: Wed, 1 Mar 2017 12:45:24 -0800 Subject: [PATCH 2/2] Updated gitignore pattern per review --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6ddaff5a1..e7bbe0bea 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ *.retry inventory/vagrant_ansible_inventory inventory/group_vars/fake_hosts.yml -inventory/host_vars/k8s-0*/ +inventory/host_vars/ temp .idea .tox