Compare commits
No commits in common. "62272ace53891080a5ba518f4f9ed82c2dc23ce7" and "634dfaa1603d811ffe1d71694d79aeb62af7466f" have entirely different histories.
62272ace53
...
634dfaa160
2 changed files with 15 additions and 8 deletions
|
@ -1,6 +1,9 @@
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: deploy
|
||||||
steps:
|
steps:
|
||||||
- name: docker
|
- name: docker
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
registry: git.ar21.de
|
registry: git.ar21.de
|
||||||
|
@ -14,10 +17,10 @@ steps:
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
when:
|
when:
|
||||||
- branch: main
|
branch:
|
||||||
event: push
|
- main
|
||||||
- name: docker-build
|
- name: docker-build
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
registry: git.ar21.de
|
registry: git.ar21.de
|
||||||
|
@ -32,6 +35,10 @@ steps:
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
dry_run: true
|
dry_run: true
|
||||||
when:
|
when:
|
||||||
- branch:
|
branch:
|
||||||
exclude: main
|
exclude:
|
||||||
event: push
|
- main
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
include:
|
||||||
|
- push
|
|
@ -1,4 +1,4 @@
|
||||||
FROM alpine:3.20.3
|
FROM alpine:3.20.3
|
||||||
RUN apk add --no-cache git curl bash jq
|
RUN apk add --no-cache git curl bash
|
||||||
RUN curl -s https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh | bash
|
RUN curl -s https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh | bash
|
||||||
RUN mv /kustomize /bin/kustomize
|
RUN mv /kustomize /bin/kustomize
|
||||||
|
|
Loading…
Reference in a new issue