Koschei: Use tagged upstream releases for deployments

This commit is contained in:
Mikolaj Izdebski 2019-10-02 15:46:10 +02:00 committed by Pierre-Yves Chibon
parent 968acd61f1
commit 9f1ef2a588
6 changed files with 8 additions and 4 deletions

View file

@ -18,7 +18,7 @@ spec:
spec:
containers:
- name: {{service}}
image: quay.io/koschei/koschei:latest
image: "{{ koschei_container_image }}"
command: [/usr/bin/koschei-{{service}}]
env:
- name: KRB5_CONFIG

View file

@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: "cron-{{name}}"
image: quay.io/koschei/koschei:latest
image: "{{ koschei_container_image }}"
command: ["/bin/bash", "-euxc", "{{command}}"]
env:
- name: SUDO_USER

View file

@ -18,7 +18,7 @@ spec:
spec:
containers:
- name: frontend
image: quay.io/koschei/koschei:latest
image: "{{ koschei_container_image }}"
command: [/usr/bin/koschei-frontend]
ports:
- containerPort: 8080

View file

@ -7,7 +7,7 @@ spec:
spec:
containers:
- name: "job-{{name}}"
image: quay.io/koschei/koschei:latest
image: "{{ koschei_container_image }}"
command: ["/bin/bash", "-euxc", "{{command}}"]
env:
- name: SUDO_USER

View file

@ -1,3 +1,5 @@
koschei_container_image: quay.io/koschei/koschei:fedora-prod
koschei_topurl: https://koschei.fedoraproject.org
koschei_pgsql_hostname: db01.phx2.fedoraproject.org
koschei_koji_hub: koji.fedoraproject.org

View file

@ -1,3 +1,5 @@
koschei_container_image: quay.io/koschei/koschei:fedora-stage
koschei_topurl: https://koschei.stg.fedoraproject.org
# koschei database on pgbdr.stg is in inconsistent state, so we're
# using non-BDR db01.stg for now.