infrastructure/.drone.yml

20 lines
400 B
YAML
Raw Normal View History

2024-01-25 12:55:44 +01:00
kind: pipeline
type: docker
name: kubernetes
trigger:
branch:
2024-01-25 12:57:53 +01:00
- main
2024-01-25 12:55:44 +01:00
event:
- push
steps:
- name: kustomization
image: registry.k8s.io/kustomize/kustomize:v5.0.0
2024-01-25 13:02:19 +01:00
environment:
KUBE_CONFIG:
from_secret: KUBE_CONFIG
2024-01-25 12:55:44 +01:00
commands:
- echo "$$KUBE_CONFIG" | base64 -d > /.kube/config
- kustomize build ./kustomization/overlays/staging | kubectl apply -f -