-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rework pipeline to use linode as dev cluster
- Loading branch information
1 parent
8660d09
commit ff5507a
Showing
2 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,4 +87,4 @@ jobs: | |
- name: installing plural | ||
uses: pluralsh/[email protected] | ||
- name: Update service | ||
run: plural cd services update @cd-demo-workload-1/cd-test --conf tag=sha-${GITHUB_SHA::7} | ||
run: plural cd services update @linode/cd-test --conf tag=sha-${GITHUB_SHA::7} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
name: cd-test | ||
name: cd-demo | ||
stages: | ||
- name: dev | ||
services: | ||
- name: cd-demo-workload-1/cd-test | ||
- name: linode/cd-test | ||
- name: prod | ||
services: | ||
- name: cd-demo/cd-test | ||
- name: cd-demo-workload-1/cd-test | ||
criteria: | ||
source: cd-demo-workload-1/cd-test | ||
source: linode/cd-test | ||
secrets: | ||
- tag | ||
edges: | ||
- from: dev | ||
to: prod | ||
to: prod | ||
gates: | ||
- name: Approve | ||
type: approval |