This commit is contained in:
parent
d5dc4c5f6b
commit
58538e115b
78
.drone.yml
78
.drone.yml
@ -1,6 +1,10 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: default-build
|
name: build-amd64
|
||||||
|
platform:
|
||||||
|
arch: amd64
|
||||||
|
node_selector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: fedhq-ca-crt
|
- name: fedhq-ca-crt
|
||||||
@ -10,19 +14,69 @@ volumes:
|
|||||||
optional: false
|
optional: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build Container
|
- name: build amd64
|
||||||
image: debian:stable
|
image: quay.io/buildah/stable
|
||||||
privileged: true
|
privileged: true
|
||||||
volumes:
|
volumes:
|
||||||
- name: fedhq-ca-crt
|
- name: fedhq-ca-crt
|
||||||
path: /etc/ssl/certs2/
|
path: /etc/ssl/certs2/
|
||||||
commands:
|
commands:
|
||||||
- mkdir -p /etc/ssl/certs
|
- scripts/setupEnvironment.sh
|
||||||
- ln -s /etc/ssl/certs2/federationHQ-CA.pem /etc/ssl/certs/
|
- buildah bud --network host -t "registry.cloud.federationhq.de/netcat:latest-amd64" --arch amd64 .
|
||||||
- sed -i 's/65534/1000/' /etc/passwd
|
|
||||||
- echo "192.168.230.200 registry.cloud.federationhq.de" >> /etc/hosts
|
---
|
||||||
- apt-get update
|
kind: pipeline
|
||||||
- apt-get -qy install ca-certificates buildah crun
|
type: kubernetes
|
||||||
- buildah pull registry.cloud.federationhq.de/netcat:latest || true
|
name: build-arm64
|
||||||
- buildah bud -t registry.cloud.federationhq.de/netcat:latest -f Dockerfile
|
platform:
|
||||||
- buildah push registry.cloud.federationhq.de/netcat:latest
|
arch: arm64
|
||||||
|
node_selector:
|
||||||
|
kubernetes.io/arch: arm64
|
||||||
|
|
||||||
|
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
|
||||||
|
image: quay.io/buildah/stable
|
||||||
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: fedhq-ca-crt
|
||||||
|
path: /etc/ssl/certs2/
|
||||||
|
commands:
|
||||||
|
- scripts/setupEnvironment.sh
|
||||||
|
- buildah bud --network host -t "registry.cloud.federationhq.de/netcat:latest-arm64" --arch arm64 .
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: push
|
||||||
|
node_selector:
|
||||||
|
kubernetes.io/arch: amd64
|
||||||
|
|
||||||
|
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
|
||||||
|
volumes:
|
||||||
|
- name: fedhq-ca-crt
|
||||||
|
path: /etc/ssl/certs2/
|
||||||
|
commands:
|
||||||
|
- scripts/setupEnvironment.sh
|
||||||
|
- buildah manifest create registry.cloud.federationhq.de/netcat:latest registry.cloud.federationhq.de/netcat:latest-arm64 registry.cloud.federationhq.de/netcat:latest-amd64
|
||||||
|
- buildah manifest push registry.cloud.federationhq.de/netcat:latest docker://registry.cloud.federationhq.de/netcat:latest
|
||||||
|
- buildah manifest rm registry.cloud.federationhq.de/netcat:latest
|
||||||
|
depends_on:
|
||||||
|
- build-amd64
|
||||||
|
- build-arm64
|
3
scripts/setupEnvironment.sh
Executable file
3
scripts/setupEnvironment.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
cp /etc/ssl/certs2/federationHQ-CA.pem /etc/pki/ca-trust/source/anchors/
|
||||||
|
update-ca-trust
|
Loading…
Reference in New Issue
Block a user