This commit is contained in:
parent
be1d692290
commit
8ac3680635
120
.drone.yml
120
.drone.yml
@ -1,12 +1,10 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: arm64-pipeline
|
name: prepare-manifest
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
arch: arm64
|
arch: amd64
|
||||||
|
node_selector:
|
||||||
workspace:
|
kubernetes.io/arch: amd64
|
||||||
path: /cache
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: fedhq-ca-crt
|
- name: fedhq-ca-crt
|
||||||
@ -20,33 +18,30 @@ volumes:
|
|||||||
read_only: false
|
read_only: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build Image
|
- name: prepare manifest
|
||||||
image: registry.cloud.federationhq.de/drone-buildah-plugin:latest
|
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/
|
||||||
- name: cache
|
- name: cache
|
||||||
path: /var/lib/containers/storage
|
path: /var/lib/containers/storage
|
||||||
settings:
|
commands:
|
||||||
dockerfile: Dockerfile
|
- scripts/setupEnvironment.sh
|
||||||
pullfirst: true
|
- buildah manifest rm latex|| true
|
||||||
ca_cert: "/etc/ssl/certs2/federationHQ-CA.pem"
|
- buildah manifest create latex
|
||||||
registry: "registry.cloud.federationhq.de"
|
|
||||||
tag: latex:latest
|
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: amd64-pipeline
|
name: build-amd64
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
node_selector:
|
||||||
workspace:
|
kubernetes.io/arch: amd64
|
||||||
path: /cache
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: fedhq-ca-crt
|
- name: fedhq-ca-crt
|
||||||
@ -60,17 +55,86 @@ volumes:
|
|||||||
read_only: false
|
read_only: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build Image
|
- name: build amd64
|
||||||
image: registry.cloud.federationhq.de/drone-buildah-plugin:latest
|
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/
|
||||||
- name: cache
|
- name: cache
|
||||||
path: /var/lib/containers/storage
|
path: /var/lib/containers/storage
|
||||||
settings:
|
commands:
|
||||||
dockerfile: Dockerfile
|
- scripts/setupEnvironment.sh
|
||||||
pullfirst: true
|
- buildah bud --network host -t "registry.cloud.federationhq.de/latex:latest" --manifest latex --arch amd64 .
|
||||||
ca_cert: "/etc/ssl/certs2/federationHQ-CA.pem"
|
depends_on:
|
||||||
registry: "registry.cloud.federationhq.de"
|
- prepare-manifest
|
||||||
tag: latex:latest
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: build-arm64
|
||||||
|
platform:
|
||||||
|
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
|
||||||
|
- name: cache
|
||||||
|
claim:
|
||||||
|
name: federationhq-drone-cache-pvc
|
||||||
|
read_only: false
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build arm64
|
||||||
|
image: quay.io/buildah/stable
|
||||||
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: fedhq-ca-crt
|
||||||
|
path: /etc/ssl/certs2/
|
||||||
|
- name: cache
|
||||||
|
path: /var/lib/containers/storage
|
||||||
|
commands:
|
||||||
|
- scripts/setupEnvironment.sh
|
||||||
|
- buildah bud -t "registry.cloud.federationhq.de/latex:latest" --net=host --manifest latex --arch arm64 .
|
||||||
|
depends_on:
|
||||||
|
- prepare-manifest
|
||||||
|
- build-amd64
|
||||||
|
|
||||||
|
---
|
||||||
|
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
|
||||||
|
- name: cache
|
||||||
|
claim:
|
||||||
|
name: federationhq-drone-cache-pvc
|
||||||
|
read_only: false
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: push
|
||||||
|
image: quay.io/buildah/stable
|
||||||
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: fedhq-ca-crt
|
||||||
|
path: /etc/ssl/certs2/
|
||||||
|
- name: cache
|
||||||
|
path: /var/lib/containers/storage
|
||||||
|
commands:
|
||||||
|
- scripts/setupEnvironment.sh
|
||||||
|
- buildah push --all latex docker://registry.cloud.federationhq.de/latex:latest"
|
||||||
|
depends_on:
|
||||||
|
- build-amd64
|
||||||
|
- build-arm64
|
3
scripts/setupEnvironment.sh
Normal file
3
scripts/setupEnvironment.sh
Normal 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