-
So I have multiple targets that should be provisioned with ansible. There are multiple playbooks with different tags for different kinds of clusters. kapitan:
dependencies:
- type: git
output_path: .ansible/a
source: https://git.com/a
ref: ${cluster:a_version}
- type: git
output_path: .ansible/b
source: https://git.com/b
ref: ${cluster:b_version}
- type: git
output_path: .ansible/c
source: https://git.com/c
ref: ${cluster:c_version} During compile --fetch they are downloaded to root .ansible directory.
I don't see messages that some of the files have changed. The log message makes me think that if a file exists, it won't get override even if a file has changed. What actually happens? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Discussed in channel: https://kubernetes.slack.com/archives/C981W2HD3/p1616504004042300 You can force fetch using the
|
Beta Was this translation helpful? Give feedback.
Discussed in channel: https://kubernetes.slack.com/archives/C981W2HD3/p1616504004042300
You can force fetch using the
--fetch
option. Also you can make it a default by changing the.kapitan
file