feat(group_vars/cni): allow overrides of the cni values like any other role
Some checks failed
development / Check commit compliance (push) Successful in 4s
test / Retrieve Credentials (pull_request) Successful in 1s
pull-requests-open / Check commit compliance (pull_request) Successful in 7s
test / end_to_end_vault (vault_default, debian12) (pull_request) Successful in 3m15s
test / end_to_end_vault (vault_default, debian11) (pull_request) Successful in 3m21s
test / end_to_end_vault (vault_default, ubuntu2004) (pull_request) Successful in 3m27s
test / end_to_end_vault (vault_default, ubuntu2204) (pull_request) Successful in 1m41s
test / end_to_end_vault (vault_default, ubuntu2404) (pull_request) Successful in 1m50s
test / end_to_end_vault (vault_with_raft_enabled, debian11) (pull_request) Successful in 1m41s
test / end_to_end_vault (vault_with_raft_enabled, debian12) (pull_request) Successful in 1m28s
test / end_to_end_vault (vault_with_raft_enabled, ubuntu2004) (pull_request) Successful in 1m55s
test / end_to_end_vault (vault_with_raft_enabled, ubuntu2204) (pull_request) Successful in 1m44s
test / end_to_end_vault (vault_with_raft_enabled, ubuntu2404) (pull_request) Successful in 1m44s
build-deploy / Bump version and create changelog with commitizen (push) Has been cancelled
Some checks failed
development / Check commit compliance (push) Successful in 4s
test / Retrieve Credentials (pull_request) Successful in 1s
pull-requests-open / Check commit compliance (pull_request) Successful in 7s
test / end_to_end_vault (vault_default, debian12) (pull_request) Successful in 3m15s
test / end_to_end_vault (vault_default, debian11) (pull_request) Successful in 3m21s
test / end_to_end_vault (vault_default, ubuntu2004) (pull_request) Successful in 3m27s
test / end_to_end_vault (vault_default, ubuntu2204) (pull_request) Successful in 1m41s
test / end_to_end_vault (vault_default, ubuntu2404) (pull_request) Successful in 1m50s
test / end_to_end_vault (vault_with_raft_enabled, debian11) (pull_request) Successful in 1m41s
test / end_to_end_vault (vault_with_raft_enabled, debian12) (pull_request) Successful in 1m28s
test / end_to_end_vault (vault_with_raft_enabled, ubuntu2004) (pull_request) Successful in 1m55s
test / end_to_end_vault (vault_with_raft_enabled, ubuntu2204) (pull_request) Successful in 1m44s
test / end_to_end_vault (vault_with_raft_enabled, ubuntu2404) (pull_request) Successful in 1m44s
build-deploy / Bump version and create changelog with commitizen (push) Has been cancelled
This commit is contained in:
parent
a2a825a1b6
commit
bd36f1f26d
@ -1,4 +1,10 @@
|
||||
---
|
||||
cni_plugins_version: "v1.5.1"
|
||||
cni_plugins_install_path: /opt/cni/bin
|
||||
cni_plugins_install_consul_cni: true
|
||||
###############
|
||||
# cni plugins #
|
||||
###############
|
||||
|
||||
# hashistack_cni_plugins_version:
|
||||
# hashistack_cni_plugins_install_path:
|
||||
# hashistack_cni_plugins_install_consul_cni:
|
||||
# hashistack_cni_user:
|
||||
# hashistack_cni_group:
|
||||
|
19
playbooks/group_vars/all/cni_default.yml
Normal file
19
playbooks/group_vars/all/cni_default.yml
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
###############
|
||||
# cni plugins #
|
||||
###############
|
||||
|
||||
hashistack_default_cni_plugins_version: "v1.5.1"
|
||||
cni_plugins_version: "{{ hashistack_cni_plugins_version | default(hashistack_default_cni_plugins_version) }}"
|
||||
|
||||
hashistack_default_cni_plugins_install_path: /opt/cni/bin
|
||||
cni_plugins_install_path: "{{ hashistack_cni_plugins_install_path | default(hashistack_default_cni_plugins_install_path) }}"
|
||||
|
||||
hashistack_default_cni_plugins_install_consul_cni: true
|
||||
cni_plugins_install_consul_cni: "{{ hashistack_cni_plugins_install_consul_cni | default(hashistack_default_cni_plugins_install_consul_cni) }}"
|
||||
|
||||
hashistack_default_cni_user: nomad
|
||||
cni_user: "{{ hashistack_cni_user | default(hashistack_default_cni_user) }}"
|
||||
|
||||
hashistack_default_cni_group: nomad
|
||||
cni_group: "{{ hashistack_cni_group | default(hashistack_default_cni_group) }}"
|
Loading…
Reference in New Issue
Block a user