소스 검색

Stop using deprecated `vars` variable for matrix-dimension

pull/4778/head
Kim Brose 3 달 전
committed by Slavi Pantaleev
부모
커밋
caa2e338bc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      roles/custom/matrix-dimension/tasks/validate_config.yml

+ 1
- 1
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


불러오는 중...
취소
저장