Select Git revision
-
Sergio Oliveira Campos authored
There is a new management module placed in the plugins folder: plugins/modules/ipadnszone.py The dnszone module allows to manage DNS zones. Here is the documentation for the module: README-dnszone.md New example playbooks have been added: playbooks/dnszone/disable-zone-forwarders.yml playbooks/dnszone/dnszone-absent.yml playbooks/dnszone/dnszone-all-params.yml playbooks/dnszone/dnszone-disable.yml playbooks/dnszone/dnszone-enable.yml playbooks/dnszone/dnszone-present.yml New tests for the module: tests/dnszone/test_dnszone.yml tests/dnszone/test_dnszone_mod.yml
Sergio Oliveira Campos authoredThere is a new management module placed in the plugins folder: plugins/modules/ipadnszone.py The dnszone module allows to manage DNS zones. Here is the documentation for the module: README-dnszone.md New example playbooks have been added: playbooks/dnszone/disable-zone-forwarders.yml playbooks/dnszone/dnszone-absent.yml playbooks/dnszone/dnszone-all-params.yml playbooks/dnszone/dnszone-disable.yml playbooks/dnszone/dnszone-enable.yml playbooks/dnszone/dnszone-present.yml New tests for the module: tests/dnszone/test_dnszone.yml tests/dnszone/test_dnszone_mod.yml
collection-build-install.sh 543 B
#!/bin/sh -e
export ANSIBLE_COLLECTIONS_PATH="./ansible_collections"
ansible-galaxy collection build --force
ansible-galaxy collection install kubernetes_sigs-kubespray-$(grep "^version:" galaxy.yml | awk '{print $2}').tar.gz
ansible-galaxy collection list $(egrep -i '(name:\s+|namespace:\s+)' galaxy.yml | awk '{print $2}' | tr '\n' '.' | sed 's|\.$||g') | grep "^kubernetes_sigs.kubespray"
test -f ansible_collections/kubernetes_sigs/kubespray/playbooks/cluster.yml
test -f ansible_collections/kubernetes_sigs/kubespray/playbooks/reset.yml