Kumanda/.drone.yml

109 lines
2.7 KiB
YAML
Raw Normal View History

2024-07-24 17:17:08 +02:00
kind: pipeline
type: kubernetes
name: build-amd64
2024-07-24 17:17:08 +02:00
platform:
arch: amd64
node_selector:
kubernetes.io/arch: amd64
federationhq.de/location: Blumendorf
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
steps:
- name: build amd64
2024-07-24 17:17:08 +02:00
image: quay.io/buildah/stable
privileged: true
volumes:
- name: fedhq-ca-crt
path: /etc/ssl/certs2/
commands:
- scripts/setupEnvironment.sh
- cd server
- buildah bud --network host -t "registry.cloud.federationhq.de/amanda-server:latest-amd64" --arch amd64 .
- buildah push --all registry.cloud.federationhq.de/amanda-server:latest-amd64
2024-07-24 17:17:08 +02:00
---
kind: pipeline
type: kubernetes
name: build-arm64
2024-07-24 17:17:08 +02:00
platform:
arch: arm64
node_selector:
kubernetes.io/arch: arm64
federationhq.de/location: Blumendorf
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
steps:
- name: build arm64
2024-07-24 17:17:08 +02:00
image: quay.io/buildah/stable
privileged: true
volumes:
- name: fedhq-ca-crt
path: /etc/ssl/certs2/
commands:
- scripts/setupEnvironment.sh
- cd server
- buildah bud --network host -t "registry.cloud.federationhq.de/amanda-server:latest-arm64" --arch arm64 .
- buildah push --all registry.cloud.federationhq.de/amanda-server:latest-arm64
2024-07-24 17:17:08 +02:00
---
kind: pipeline
type: kubernetes
name: push
node_selector:
kubernetes.io/arch: amd64
federationhq.de/location: Blumendorf
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
steps:
- name: push
image: quay.io/buildah/stable
privileged: true
environment:
USERNAME:
from_secret: username
PASSWORD:
from_secret: password
volumes:
- name: fedhq-ca-crt
path: /etc/ssl/certs2/
commands:
- scripts/setupEnvironment.sh
- buildah manifest create amanda-server:latest registry.cloud.federationhq.de/amanda-server:latest-arm64 registry.cloud.federationhq.de/amanda-server:latest-amd64
- buildah manifest push --all amanda-server:latest docker://registry.cloud.federationhq.de/amanda-server:latest
# - buildah login -u $${USERNAME} -p $${PASSWORD} registry.hub.docker.com
# - buildah manifest push --all fhem:latest docker://registry.hub.docker.com/byterazor/fhem:latest
# - buildah manifest fhem:latest
2024-07-24 17:17:08 +02:00
depends_on:
- build-amd64
- build-arm64
2024-07-24 17:17:08 +02:00
---
kind: secret
name: username
get:
path: docker
name: username
---
kind: secret
name: password
get:
path: docker
name: secret