Explorar el Código

Remove some useless variables and rework environment variables variable for livekit-jwt-service

element-call-integration
Slavi Pantaleev hace 11 meses
padre
commit
0215708f79
Se han modificado 4 ficheros con 9 adiciones y 9 borrados
  1. +0
    -3
      roles/custom/matrix-element-call/defaults/main.yml
  2. +8
    -2
      roles/custom/matrix-livekit-jwt-service/defaults/main.yml
  3. +1
    -1
      roles/custom/matrix-livekit-jwt-service/templates/env.j2
  4. +0
    -3
      roles/custom/matrix-livekit-server/defaults/main.yml

+ 0
- 3
roles/custom/matrix-element-call/defaults/main.yml Ver fichero

@@ -77,9 +77,6 @@ matrix_element_call_container_labels_additional_labels: ''
# A list of extra arguments to pass to the container # A list of extra arguments to pass to the container
matrix_element_call_container_extra_arguments: [] matrix_element_call_container_extra_arguments: []


# Additional environment variables for the container
matrix_element_call_environment_variables_additional: {}

# List of systemd services that matrix-element-call.service depends on # List of systemd services that matrix-element-call.service depends on
matrix_element_call_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}" matrix_element_call_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"




+ 8
- 2
roles/custom/matrix-livekit-jwt-service/defaults/main.yml Ver fichero

@@ -80,8 +80,14 @@ matrix_livekit_jwt_service_environment_variable_livekit_url: ""
# Controls the LIVEKIT_SECRET environment variable # Controls the LIVEKIT_SECRET environment variable
matrix_livekit_jwt_service_environment_variable_livekit_secret: "" matrix_livekit_jwt_service_environment_variable_livekit_secret: ""


# Additional environment variables for the container
matrix_livekit_jwt_service_environment_variables_additional: {}
# Additional environment variables to pass to the container.
#
# Environment variables take priority over settings in the configuration file.
#
# Example:
# matrix_livekit_jwt_service_environment_variables_extension: |
# KEY=value
matrix_livekit_jwt_service_environment_variables_extension: ''


# List of systemd services that LiveKit JWT Service service depends on # List of systemd services that LiveKit JWT Service service depends on
matrix_livekit_jwt_service_systemd_required_services_list: "{{ matrix_livekit_jwt_service_systemd_required_services_list_default + matrix_livekit_jwt_service_systemd_required_services_list_auto + matrix_livekit_jwt_service_systemd_required_services_list_custom }}" matrix_livekit_jwt_service_systemd_required_services_list: "{{ matrix_livekit_jwt_service_systemd_required_services_list_default + matrix_livekit_jwt_service_systemd_required_services_list_auto + matrix_livekit_jwt_service_systemd_required_services_list_custom }}"


+ 1
- 1
roles/custom/matrix-livekit-jwt-service/templates/env.j2 Ver fichero

@@ -11,4 +11,4 @@ LIVEKIT_KEY={{ matrix_livekit_jwt_service_environment_variable_livekit_key }}
LIVEKIT_URL={{ matrix_livekit_jwt_service_environment_variable_livekit_url }} LIVEKIT_URL={{ matrix_livekit_jwt_service_environment_variable_livekit_url }}
LIVEKIT_SECRET={{ matrix_livekit_jwt_service_environment_variable_livekit_secret }} LIVEKIT_SECRET={{ matrix_livekit_jwt_service_environment_variable_livekit_secret }}


{{ matrix_livekit_jwt_service_environment_variables_additional }}
{{ matrix_livekit_jwt_service_environment_variables_extension }}

+ 0
- 3
roles/custom/matrix-livekit-server/defaults/main.yml Ver fichero

@@ -93,9 +93,6 @@ livekit_server_container_labels_additional_labels: ''
# A list of extra arguments to pass to the container # A list of extra arguments to pass to the container
livekit_server_container_extra_arguments: [] livekit_server_container_extra_arguments: []


# Additional environment variables for the container
livekit_server_environment_variables_additional: {}

# List of systemd services that LiveKit Server service depends on # List of systemd services that LiveKit Server service depends on
livekit_server_systemd_required_services_list: "{{ livekit_server_systemd_required_services_list_default + livekit_server_systemd_required_services_list_auto + livekit_server_systemd_required_services_list_custom }}" livekit_server_systemd_required_services_list: "{{ livekit_server_systemd_required_services_list_default + livekit_server_systemd_required_services_list_auto + livekit_server_systemd_required_services_list_custom }}"
livekit_server_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}" livekit_server_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"


Cargando…
Cancelar
Guardar