rss2email/.drone.yml

144 lines
3.5 KiB
YAML
Raw Normal View History

2024-01-23 09:38:16 +01:00
kind: pipeline
type: kubernetes
name: build-amd64
platform:
arch: amd64
node_selector:
kubernetes.io/arch: amd64
federationhq.de/location: Blumendorf
2024-01-23 09:38:16 +01:00
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
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/rss2email:latest-amd64" --arch amd64 .
- buildah push --all registry.cloud.federationhq.de/rss2email:latest-amd64
---
kind: pipeline
type: kubernetes
name: build-arm64
platform:
arch: arm64
node_selector:
kubernetes.io/arch: arm64
federationhq.de/location: Blumendorf
2024-01-23 09:38:16 +01:00
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/rss2email:latest-arm64" --arch arm64 .
- buildah push --all registry.cloud.federationhq.de/rss2email:latest-arm64
---
kind: pipeline
type: kubernetes
name: push
node_selector:
kubernetes.io/arch: amd64
federationhq.de/location: Blumendorf
2024-01-23 09:38:16 +01:00
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 rss2email:latest registry.cloud.federationhq.de/rss2email:latest-arm64 registry.cloud.federationhq.de/rss2email:latest-amd64
- buildah manifest push --all rss2email:latest docker://registry.cloud.federationhq.de/rss2email:latest
- buildah login -u $${USERNAME} -p $${PASSWORD} registry.hub.docker.com
- buildah manifest push --all rss2email:latest docker://registry.hub.docker.com/byterazor/rss2email:latest
- buildah manifest rm rss2email:latest
- name: push readme
image: byterazor/drone-docker-readme-push:latest
settings:
REPOSITORY_NAME: byterazor/rss2email
FILENAME: README.md
USERNAME:
from_secret: username
PASSWORD:
from_secret: password
2024-01-23 09:38:16 +01:00
depends_on:
- build-amd64
- build-arm64
2024-12-27 15:31:51 +01:00
---
kind: pipeline
type: kubernetes
name: mirror-to-github
node_selector:
kubernetes.io/arch: amd64
federationhq.de/location: Blumendorf
federationhq.de/compute: true
steps:
- name: github-mirror
image: registry.cloud.federationhq.de/drone-github-mirror:latest
pull: always
settings:
GH_TOKEN:
from_secret: GH_TOKEN
GH_REPO: "byterazor/Container-Rss2EMail"
GH_REPO_DESC: "container for running rss2email"
GH_REPO_HOMEPAGE: "https://gitea.federationhq.de/Container/rss2email"
depends_on:
- push
---
kind: secret
name: GH_TOKEN
get:
path: github
name: token
2024-01-23 09:38:16 +01:00
---
kind: secret
name: username
get:
path: docker
name: username
---
kind: secret
name: password
get:
path: docker
name: secret