2023-04-17 14:11:49 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Build image
|
|
|
|
image: gcr.io/kaniko-project/executor:debug
|
2023-04-17 14:48:24 +00:00
|
|
|
network_mode: host
|
2023-04-17 14:11:49 +00:00
|
|
|
commands:
|
|
|
|
- |
|
|
|
|
echo "{\"auths\": {\"https://code.icb4dc0.de\": {\"auth\" : \"$(printf '%s:%s' $GITEA_USER $GITEA_TOKEN | base64)\" }}}" > /kaniko/.docker/config.json
|
|
|
|
/kaniko/executor \
|
|
|
|
--destination code.icb4dc0.de/buildr/docs:latest \
|
|
|
|
--destination code.icb4dc0.de/buildr/docs:$DRONE_COMMIT_SHA \
|
|
|
|
--context .
|
|
|
|
environment:
|
|
|
|
GITEA_USER: prskr
|
|
|
|
GITEA_TOKEN:
|
2023-04-18 06:24:19 +00:00
|
|
|
from_secret: gitea_token
|
|
|
|
|
|
|
|
- name: Deploy docs
|
|
|
|
image: code.icb4dc0.de/prskr/ci-images/kustomize:latest
|
|
|
|
network_mode: host
|
|
|
|
commands:
|
|
|
|
- cd deploy/k8s
|
|
|
|
- kustomize edit set image buildr-docs=code.icb4dc0.de/buildr/docs:$DRONE_COMMIT_SHA
|
|
|
|
- kubectl config set-cluster hetzner --server=$K8S_API_URL --insecure-skip-tls-verify=true
|
|
|
|
- kubectl config set-credentials drone-deploy --token=$K8S_TOKEN
|
|
|
|
- kubectl config set-context hetzner --user=drone-deploy --namespace=buildr --cluster hetzner
|
|
|
|
- kubectl config use-context hetzner
|
|
|
|
- kubectl apply -k .
|
|
|
|
environment:
|
|
|
|
K8S_TOKEN:
|
|
|
|
from_secret: k8s_token
|
|
|
|
K8S_API_URL:
|
|
|
|
from_secret: k8s_api_url
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
include:
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/heads/main
|