소스 검색

Added tasks for moving the new labels files into place

element-call-integration
Backslash 1 년 전
committed by GitHub
부모
커밋
df4bf4a0c9
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일17개의 추가작업 그리고 1개의 파일을 삭제
  1. +17
    -1
      roles/custom/matrix-element-call/tasks/install.yml

+ 17
- 1
roles/custom/matrix-element-call/tasks/install.yml 파일 보기

@@ -52,7 +52,23 @@
- name: Ensure matrix-element-call Docker labels file is in place
ansible.builtin.template:
src: "{{ role_path }}/templates/labels.j2"
dest: "{{ matrix_element_call_base_path }}/config/labels"
dest: "{{ matrix_element_call_base_path }}/config/element-call-labels"
mode: 0640
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"

- name: Ensure LiveKit labels file is in place
ansible.builtin.template:
src: "{{ role_path }}/templates/livekit-labels.j2"
dest: "{{ matrix_element_call_base_path }}/config/livekit-labels"
mode: 0640
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"

- name: Ensure JWT Service labels file is in place
ansible.builtin.template:
src: "{{ role_path }}/templates/jwt-service-labels.j2"
dest: "{{ matrix_element_call_base_path }}/config/jwt-service-labels"
mode: 0640
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"


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