-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
51 lines (41 loc) · 902 Bytes
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
kind: pipeline
type: kubernetes
name: production
trigger:
branch:
- master
steps:
- name: update container
image: plugins/docker
settings:
repo: thenerdful8/lecture2gether
username: ftsell
password:
from_secret: dockerhub-access-token
- name: deploy
image: registry.mafiasi.de/deployment_restarter
settings:
namespace: mafiasi-prod
name: lecture2gether-deployment
---
kind: pipeline
type: kubernetes
name: staging
trigger:
branch:
- staging
steps:
- name: update container
image: plugins/docker
settings:
repo: thenerdful8/lecture2gether
tags: staging-latest
username: ftsell
password:
from_secret: dockerhub-access-token
- name: deploy
image: registry.mafiasi.de/deployment_restarter
settings:
namespace: mafiasi-staging
name: lecture2gether-deployment