izaac-frontend/.drone.yml
Jakub K 74f199ea8e
Some checks failed
continuous-integration/drone Build is failing
deployment - bez usuwania serwisu
2024-03-17 19:50:49 +01:00

27 lines
672 B
YAML

kind: pipeline
type: exec
name: default
steps:
- name: build
commands:
- docker build --no-cache -t izaac-frontend:latest .
- docker tag izaac-frontend:latest registry.izaac.pl:5000/izaac-frontend:latest
- docker push registry.izaac.pl:5000/izaac-frontend:latest
- name: delete
environment:
KUBECONFIG: /home/drone-runner/drone-kubeconfig
commands:
- kubectl delete deployment izaac-frontend || true
- kubectl delete ingress izaac-frontend || true
- name: deploy
environment:
KUBECONFIG: /home/drone-runner/drone-kubeconfig
commands:
- kubectl apply -f deployment.yml --insecure-skip-tls-verify
trigger:
branch:
- master