-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsailr.workflow.toml
More file actions
98 lines (90 loc) · 1.66 KB
/
Copy pathsailr.workflow.toml
File metadata and controls
98 lines (90 loc) · 1.66 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[workflow.ci]
environment = "local"
mode = "check"
interactive = false
build = "disabled"
generate = "disabled"
deploy = "disabled"
report = "text"
[workflow.ci-build-plan]
environment = "local"
mode = "check"
interactive = false
build = "plan"
generate = "disabled"
deploy = "disabled"
report = "text"
[workflow.ci-generate]
environment = "local"
mode = "check"
interactive = false
build = "plan"
generate = "run"
deploy = "disabled"
report = "text"
[workflow.ci-build]
environment = "local"
mode = "build"
interactive = false
build = "run"
generate = "disabled"
deploy = "disabled"
report = "text"
[workflow.local-deploy]
environment = "local"
mode = "go"
interactive = true
build = "plan"
generate = "run"
deploy = "run"
deploy_context = "minikube"
namespace = "default"
approval = "prompt"
apply = true
report = "text"
[workflow.ci-deploy-plan]
environment = "local"
mode = "deploy"
interactive = false
build = "plan"
generate = "run"
deploy = "plan"
deploy_context = "none"
namespace = "default"
approval = "none"
apply = false
report = "both"
[workflow.staging-deploy]
environment = "staging"
mode = "deploy"
interactive = false
build = "plan"
generate = "run"
deploy = "run"
deploy_context = "staging"
namespace = "default"
approval = "external"
apply = true
report = "both"
[workflow.ci-build-push-plan]
environment = "staging"
mode = "build"
interactive = false
build = "plan"
push = "plan"
generate = "disabled"
deploy = "disabled"
approval = "none"
apply = false
report = "both"
[workflow.ci-build-push]
environment = "staging"
mode = "build"
interactive = false
build = "run"
push = "run"
generate = "disabled"
deploy = "disabled"
approval = "external"
apply = true
report = "both"