-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add compliance workflow for PCO Prod3. (#373)
* Add compliance workflow for PCO Prod3. Using an application credential, because it's more elegant. * Display results of v2 tests, which I expect Prod3 to pass. * Consistent naming. * Fix region of pco3 to read "prod3" Thanks to @mbuechse for spotting! Signed-off-by: Kurt Garloff <[email protected]>
- Loading branch information
Showing
5 changed files
with
78 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "Compliance of pco-prod3" | ||
|
||
on: | ||
# Trigger compliance check every day at 4:30 UTC | ||
schedule: | ||
- cron: '30 4 * * *' | ||
# Trigger compliance check after Docker image has been built | ||
workflow_run: | ||
workflows: [Build and publish scs-compliance-check Docker image] | ||
types: | ||
- completed | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check-pco-prod3: | ||
uses: ./.github/workflows/scs-compliance-check-with-application-credential.yml | ||
with: | ||
version: v1 | ||
layer: iaas | ||
cloud: "pco-prod3" | ||
secret_name: "OS_PASSWORD_PCOPROD3" | ||
secrets: inherit |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "Compliance of pco-prod3" | ||
|
||
on: | ||
# Trigger compliance check every day at 4:30 UTC | ||
schedule: | ||
- cron: '30 4 * * *' | ||
# Trigger compliance check after Docker image has been built | ||
workflow_run: | ||
workflows: [Build and publish scs-compliance-check Docker image] | ||
types: | ||
- completed | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check-pco-prod3: | ||
uses: ./.github/workflows/scs-compliance-check-with-application-credential.yml | ||
with: | ||
version: v2 | ||
layer: iaas | ||
cloud: "pco-prod3" | ||
secret_name: "OS_PASSWORD_PCOPROD3" | ||
secrets: inherit |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "Compliance of pco-prod3" | ||
|
||
on: | ||
# Trigger compliance check every day at 4:30 UTC | ||
schedule: | ||
- cron: '30 4 * * *' | ||
# Trigger compliance check after Docker image has been built | ||
workflow_run: | ||
workflows: [Build and publish scs-compliance-check Docker image] | ||
types: | ||
- completed | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check-pco-prod3: | ||
uses: ./.github/workflows/scs-compliance-check-with-application-credential.yml | ||
with: | ||
version: v3 | ||
layer: iaas | ||
cloud: "pco-prod3" | ||
secret_name: "OS_PASSWORD_PCOPROD3" | ||
secrets: inherit |
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