97 lines
1.5 KiB
YAML
97 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: build test image
|
|
image: harbor.1sept.ru/drone/drone-kaniko
|
|
settings:
|
|
registry: harbor.1sept.ru
|
|
repo: drone/drone-kaniko-test
|
|
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-test:git-${DRONE_COMMIT_SHA:0:7}
|
|
settings:
|
|
registry: harbor.1sept.ru
|
|
repo: drone/drone-kaniko-test
|
|
cache: false
|
|
tags:
|
|
- test
|
|
username:
|
|
from_secret: harbor-username
|
|
password:
|
|
from_secret: harbor-password
|
|
|
|
image_pull_secrets:
|
|
- dockerconfig
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
name: promote production
|
|
type: kubernetes
|
|
|
|
clone:
|
|
# disable: true
|
|
depth: 1
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- promote
|
|
target:
|
|
- production
|
|
|
|
steps:
|
|
|
|
- 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}
|
|
- latest
|
|
username:
|
|
from_secret: harbor-username
|
|
password:
|
|
from_secret: harbor-password
|
|
|
|
image_pull_secrets:
|
|
- dockerconfig
|
|
|
|
---
|
|
kind: signature
|
|
hmac: 70296b060313c0bb64c6f6d8202e248275a36a921036a1f9c8d3431843986dcf
|
|
|
|
...
|