Просмотр исходного кода

Upgrade matrix-corporal (2.2.2 -> 2.2.3) and disable self-building on ARM32/ARM64

2.2.3 is the first container image tag that is available as a multi-arch image
with support for linux/amd64, linux/arm64/v8 (arm64) and linux/arm/v7 (arm32),
so self-building is no longer necessary on all these platforms.
pull/1584/head
Slavi Pantaleev 4 лет назад
Родитель
Сommit
4a4d718f7c
2 измененных файлов: 2 добавлений и 2 удалений
  1. +1
    -1
      group_vars/matrix_servers
  2. +1
    -1
      roles/matrix-corporal/defaults/main.yml

+ 1
- 1
group_vars/matrix_servers Просмотреть файл

@@ -1059,7 +1059,7 @@ matrix_bot_mjolnir_systemd_required_services_list: |


matrix_corporal_enabled: false matrix_corporal_enabled: false


matrix_corporal_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
matrix_corporal_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"


# Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-corporal over the container network. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-corporal over the container network.
# If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose


+ 1
- 1
roles/matrix-corporal/defaults/main.yml Просмотреть файл

@@ -22,7 +22,7 @@ matrix_corporal_container_extra_arguments: []
# List of systemd services that matrix-corporal.service depends on # List of systemd services that matrix-corporal.service depends on
matrix_corporal_systemd_required_services_list: ['docker.service'] matrix_corporal_systemd_required_services_list: ['docker.service']


matrix_corporal_version: 2.2.2
matrix_corporal_version: 2.2.3
matrix_corporal_docker_image: "{{ matrix_corporal_docker_image_name_prefix }}devture/matrix-corporal:{{ matrix_corporal_docker_image_tag }}" matrix_corporal_docker_image: "{{ matrix_corporal_docker_image_name_prefix }}devture/matrix-corporal:{{ matrix_corporal_docker_image_tag }}"
matrix_corporal_docker_image_name_prefix: "{{ 'localhost/' if matrix_corporal_container_image_self_build else matrix_container_global_registry_prefix }}" matrix_corporal_docker_image_name_prefix: "{{ 'localhost/' if matrix_corporal_container_image_self_build else matrix_container_global_registry_prefix }}"
matrix_corporal_docker_image_tag: "{{ matrix_corporal_version }}" # for backward-compatibility matrix_corporal_docker_image_tag: "{{ matrix_corporal_version }}" # for backward-compatibility


Загрузка…
Отмена
Сохранить