FIX: restart with basic drone configuration
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
ab9167c7e1
commit
a5a3539ef4
91
.drone.yml
91
.drone.yml
@ -1,24 +1,26 @@
|
|||||||
---
|
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: build-amanda-server-amd64
|
name: build-amd64
|
||||||
platform:
|
platform:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
node_selector:
|
node_selector:
|
||||||
kubernetes.io/arch: amd64
|
kubernetes.io/arch: amd64
|
||||||
federationhq.de/location: Blumendorf
|
federationhq.de/location: Blumendorf
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: fedhq-ca-crt
|
- name: fedhq-ca-crt
|
||||||
config_map:
|
config_map:
|
||||||
name: fedhq-ca-crt
|
name: fedhq-ca-crt
|
||||||
default_mode: 420 # same as 644 in octal, or u+w,a+r
|
default_mode: 420 # same as 644 in octal, or u+w,a+r
|
||||||
optional: false
|
optional: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build amanda-server amd64
|
- name: build amd64
|
||||||
image: quay.io/buildah/stable
|
image: quay.io/buildah/stable
|
||||||
privileged: true
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: fedhq-ca-crt
|
||||||
|
path: /etc/ssl/certs2/
|
||||||
commands:
|
commands:
|
||||||
- scripts/setupEnvironment.sh
|
- scripts/setupEnvironment.sh
|
||||||
- cd server
|
- cd server
|
||||||
@ -27,7 +29,7 @@ node_selector:
|
|||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: build-amanda-server-arm64
|
name: build-arm64
|
||||||
platform:
|
platform:
|
||||||
arch: arm64
|
arch: arm64
|
||||||
node_selector:
|
node_selector:
|
||||||
@ -42,7 +44,7 @@ volumes:
|
|||||||
optional: false
|
optional: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build amanda-server arm64
|
- name: build arm64
|
||||||
image: quay.io/buildah/stable
|
image: quay.io/buildah/stable
|
||||||
privileged: true
|
privileged: true
|
||||||
volumes:
|
volumes:
|
||||||
@ -54,65 +56,6 @@ steps:
|
|||||||
- buildah bud --network host -t "registry.cloud.federationhq.de/amanda-server:latest-arm64" --arch arm64 .
|
- 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
|
- buildah push --all registry.cloud.federationhq.de/amanda-server:latest-arm64
|
||||||
---
|
---
|
||||||
|
|
||||||
kind: pipeline
|
|
||||||
type: kubernetes
|
|
||||||
name: build-amanda-client-amd64
|
|
||||||
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 amanda-client amd64
|
|
||||||
image: quay.io/buildah/stable
|
|
||||||
privileged: true
|
|
||||||
volumes:
|
|
||||||
- name: fedhq-ca-crt
|
|
||||||
path: /etc/ssl/certs2/
|
|
||||||
commands:
|
|
||||||
- scripts/setupEnvironment.sh
|
|
||||||
- cd client
|
|
||||||
- buildah bud --network host -t "registry.cloud.federationhq.de/amanda-client:latest-amd64" --arch amd64 .
|
|
||||||
- buildah push --all registry.cloud.federationhq.de/amanda-client:latest-amd64
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: kubernetes
|
|
||||||
name: build-amanda-client-arm64
|
|
||||||
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 amanda-client arm64
|
|
||||||
image: quay.io/buildah/stable
|
|
||||||
privileged: true
|
|
||||||
volumes:
|
|
||||||
- name: fedhq-ca-crt
|
|
||||||
path: /etc/ssl/certs2/
|
|
||||||
commands:
|
|
||||||
- scripts/setupEnvironment.sh
|
|
||||||
- cd client
|
|
||||||
- buildah bud --network host -t "registry.cloud.federationhq.de/amanda-client:latest-arm64" --arch arm64 .
|
|
||||||
- buildah push --all registry.cloud.federationhq.de/amanda-client:latest-arm64
|
|
||||||
---
|
|
||||||
|
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: push
|
name: push
|
||||||
@ -143,17 +86,13 @@ steps:
|
|||||||
- scripts/setupEnvironment.sh
|
- 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 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 manifest push --all amanda-server:latest docker://registry.cloud.federationhq.de/amanda-server:latest
|
||||||
- buildah manifest create amanda-client:latest registry.cloud.federationhq.de/amanda-client:latest-arm64 registry.cloud.federationhq.de/amanda-client:latest-amd64
|
# - buildah login -u $${USERNAME} -p $${PASSWORD} registry.hub.docker.com
|
||||||
- buildah manifest push --all amanda-client:latest docker://registry.cloud.federationhq.de/amanda-client:latest
|
# - buildah manifest push --all fhem:latest docker://registry.hub.docker.com/byterazor/fhem:latest
|
||||||
#- buildah login -u $${USERNAME} -p $${PASSWORD} registry.hub.docker.com
|
# - buildah manifest fhem:latest
|
||||||
#- buildah manifest push --all fhem:latest docker://registry.hub.docker.com/byterazor/fhem:latest
|
|
||||||
#- buildah manifest fhem:latest
|
|
||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- build-amanda-server-amd64
|
- build-amd64
|
||||||
- build-amanda-server-arm64
|
- build-arm64
|
||||||
- build-amanda-client-amd64
|
|
||||||
- build-amanda-client-arm64
|
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: secret
|
kind: secret
|
||||||
|
Loading…
Reference in New Issue
Block a user