Ver código fonte
Stop using deprecated `vars` variable for matrix-dimension
pull/4776/head
Kim Brose
8 meses atrás
committed by
GitHub
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: B5690EEEBB952194
1 arquivos alterados com
1 adições e
1 exclusões
-
roles/custom/matrix-dimension/tasks/validate_config.yml
|
|
|
@@ -39,7 +39,7 @@ |
|
|
|
ansible.builtin.fail: |
|
|
|
msg: >- |
|
|
|
You need to define a required configuration setting (`{{ item }}`). |
|
|
|
when: "vars[item] == ''" |
|
|
|
when: "lookup('vars', item, default='') == ''" |
|
|
|
with_items: |
|
|
|
- matrix_dimension_container_labels_traefik_hostname |
|
|
|
- matrix_dimension_container_labels_traefik_path_prefix |
|
|
|
|