1
0
Fork 0

test deploy to internal registry
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Massaki Archambault 2021-12-25 21:17:26 -05:00
parent 86b60e5f80
commit e02f469b7b
1 changed files with 45 additions and 25 deletions

View File

@ -1,24 +1,3 @@
kind: pipeline
type: kubernetes
name: build-amd64
node_selector:
kubernetes.io/arch: amd64
steps:
- name: docker
image: plugins/docker
settings:
repo: badjware/nextcloud-tweak
# docker use a mtu of 1500 by default, which may cause packet drop in k8s
mtu: 1450
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
---
kind: pipeline
type: kubernetes
name: build-arm64
@ -27,14 +6,55 @@ node_selector:
kubernetes.io/arch: arm64
steps:
- name: docker
- name: docker build
image: plugins/docker
settings:
repo: badjware/nextcloud-tweak
repo: ${DRONE_REPO}
tag: ${DRONE_COMMIT_SHA:0:8}-arm64
# docker use a mtu of 1500 by default, which may cause packet drop in k8s
mtu: 1450
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
from_secret: docker_password
---
kind: pipeline
type: kubernetes
name: build-amd64
node_selector:
kubernetes.io/arch: amd64
steps:
- name: docker build
image: plugins/docker
settings:
repo: ${DRONE_REPO}
tag: ${DRONE_COMMIT_SHA:0:8}-amd64
# docker use a mtu of 1500 by default, which may cause packet drop in k8s
mtu: 1450
username:
from_secret: docker_username
password:
from_secret: docker_password
---
kind: pipeline
type: kubernetes
name: build-multiarch-manifest
steps:
- name: docker manifest
image: docker:20-dind-rootless
commands:
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
- docker manifest create ${DRONE_REPO}:${DRONE_TAG:-latest} --amend ${DRONE_REPO}:${DRONE_COMMIT_SHA:0:8}-amd64 --amend ${DRONE_REPO}:${DRONE_COMMIT_SHA:0:8}-arm64
- docker manifest push ${DRONE_REPO}:${DRONE_TAG:-latest}
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
depends_on:
- build-arm64
- build-amd64