flatpak-indexer/templates/configmap.yml: include arm64 indexes

We are now building Flatpaks for aarch64 - while we don't yet have
a working runtime, write architecture-specific for aarch64, using
the container-world name of 'arm64'.
This commit is contained in:
Owen W. Taylor 2021-03-11 07:48:42 -05:00
parent 9a0b82f39d
commit ba0a7b4c85

View file

@ -40,23 +40,25 @@ data:
extract_icons: True extract_icons: True
delta_keep_days: 30 delta_keep_days: 30
flatpak_annotations: True flatpak_annotations: True
latest-amd64: {% for architecture in [ 'amd64', 'arm64' ] %}
output: ${OUTPUT_DIR}/fedora/flatpak-latest-amd64.json latest-{{ architecture }}:
output: ${OUTPUT_DIR}/fedora/flatpak-latest-{{ architecture }}.json
registry: fedora registry: fedora
architecture: amd64 architecture: {{ architecture }}
tag: latest tag: latest
bodhi_status: stable bodhi_status: stable
extract_icons: True extract_icons: True
delta_keep_days: 30 delta_keep_days: 30
latest-amd64-annotations: latest-{{ architecture }}-annotations:
output: ${OUTPUT_DIR}/fedora/flatpak-latest-amd64-annotations.json output: ${OUTPUT_DIR}/fedora/flatpak-latest-{{ architecture }}-annotations.json
registry: fedora registry: fedora
architecture: amd64 architecture: {{ architecture }}
tag: latest tag: latest
bodhi_status: stable bodhi_status: stable
extract_icons: True extract_icons: True
delta_keep_days: 30 delta_keep_days: 30
flatpak_annotations: True flatpak_annotations: True
{% endfor %}
testing: testing:
output: ${OUTPUT_DIR}/fedora/flatpak-testing.json output: ${OUTPUT_DIR}/fedora/flatpak-testing.json
registry: fedora registry: fedora
@ -70,21 +72,23 @@ data:
bodhi_status: testing bodhi_status: testing
extract_icons: True extract_icons: True
flatpak_annotations: True flatpak_annotations: True
testing-amd64: {% for architecture in [ 'amd64', 'arm64' ] %}
output: ${OUTPUT_DIR}/fedora/flatpak-testing-amd64.json testing-{{ architecture }}:
output: ${OUTPUT_DIR}/fedora/flatpak-testing-{{ architecture }}.json
registry: fedora registry: fedora
architecture: amd64 architecture: {{ architecture }}
tag: testing tag: testing
bodhi_status: testing bodhi_status: testing
extract_icons: True extract_icons: True
testing-amd64-annotations: testing-{{ architecture }}-annotations:
output: ${OUTPUT_DIR}/fedora/flatpak-testing-amd64-annotations.json output: ${OUTPUT_DIR}/fedora/flatpak-testing-{{ architecture }}-annotations.json
registry: fedora registry: fedora
architecture: amd64 architecture: {{ architecture }}
tag: testing tag: testing
bodhi_status: testing bodhi_status: testing
extract_icons: True extract_icons: True
flatpak_annotations: True flatpak_annotations: True
{% endfor %}
--- ---
kind: ConfigMap kind: ConfigMap
apiVersion: v1 apiVersion: v1