Files
drone-kaniko/.drone.yml
naumso 992017414a
All checks were successful
continuous-integration/drone/push Build is passing
Update .drone.yml
2024-08-27 13:26:08 +03:00

79 lines
1.5 KiB
YAML

---
kind: pipeline
type: kubernetes
#type: docker
clone:
#disable: true
depth: 1
name: deploy develop and staging
platform:
os: linux
arch: amd64
trigger:
branch:
- master
event:
- push
steps:
- name: pre build image
image: harbor.1sept.ru/drone/drone-kaniko
settings:
registry: harbor.1sept.ru
repo: drone/drone-kaniko
cache: false
tags:
- git-${DRONE_COMMIT_SHA:0:7}
- drone-${DRONE_BUILD_NUMBER}
username:
from_secret: harbor-username
password:
from_secret: harbor-password
- name: test image
image: harbor.1sept.ru/drone/drone-kaniko:git-${DRONE_COMMIT_SHA:0:7}
settings:
registry: harbor.1sept.ru
repo: drone/drone-kaniko
cache: false
tags:
- test
username:
from_secret: harbor-username
password:
from_secret: harbor-password
- name: build image
image: harbor.1sept.ru/drone/drone-kaniko
settings:
registry: harbor.1sept.ru
repo: drone/drone-kaniko
cache: false
tags:
- git-${DRONE_COMMIT_SHA:0:7}
- drone-${DRONE_BUILD_NUMBER}
- latest
username:
from_secret: harbor-username
password:
from_secret: harbor-password
image_pull_secrets:
- dockerconfig
# Такая кнопка нужна
# POST /api/repos/{owner}/{repo}/builds/{build}/promote?target={target}
#
# Read more: https://docs.drone.io/api/builds/build_promote/
---
kind: signature
hmac: 71e77d227ecf0c74b53f943cc5b50c9701fd2d5b78722d62104463d0b93584d3
...