forked from pegasystems/pega-helm-charts
-
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.
Merge branch 'master' of github.com:pegasystems/pega-helm-charts
- Loading branch information
Showing
72 changed files
with
6,206 additions
and
312 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,54 @@ | ||
# Reference: https://github.com/mend-toolkit/mend-examples/blob/main/Unified%20Agent/CI-CD/GitHub.yml | ||
|
||
name: Mend Unified Agent Release Scan | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'master' | ||
jobs: | ||
mendscan: | ||
env: | ||
WS_APIKEY: ${{secrets.MEND_APIKEY}} | ||
WS_USERKEY: ${{secrets.MEND_USERKEY}} | ||
WS_WSS_URL: ${{secrets.MEND_WS_WSS_URL}} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
# - name: Build with Gradle | ||
# run: ./gradlew -Prelease.useLastTag=false clean build | ||
- name: Mend Unified Agent Scan | ||
env: | ||
WS_PRODUCTNAME: ${{vars.MEND_PRODUCT_NAME}} | ||
WS_PROJECTNAME: ${{github.event.repository.name}}_${{github.ref_name}} | ||
WS_GENERATEPROJECTDETAILSJSON: true | ||
WS_GRADLE_ADDITIONALARGUMENTS: -Prelease.useLastTag=false | ||
run: | | ||
echo Downloading Mend Unified Agent | ||
curl -LJO https://unified-agent.s3.amazonaws.com/wss-unified-agent.jar | ||
if [[ "$(curl -sL https://unified-agent.s3.amazonaws.com/wss-unified-agent.jar.sha256)" != "$(sha256sum wss-unified-agent.jar)" ]] ; then | ||
echo "Integrity Check Failed" | ||
else | ||
echo "Integrity Check Passed" | ||
echo Starting Unified Agent Scan | ||
java -jar wss-unified-agent.jar | ||
fi | ||
- name: 'Upload WhiteSource folder' | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Mend | ||
path: whitesource | ||
retention-days: 14 | ||
- name: 'Upload Mend folder if failure' | ||
uses: actions/upload-artifact@v2 | ||
if: failure() | ||
with: | ||
name: Mend | ||
path: whitesource | ||
retention-days: 14 |
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
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
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
3 changes: 1 addition & 2 deletions
3
charts/backingservices/charts/constellation/templates/clln-service.yaml
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
4 changes: 3 additions & 1 deletion
4
charts/backingservices/charts/constellation/templates/pega-registry-secret.yaml
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 +1,3 @@ | ||
{{- include "pegaRegistryCredentialsSecretTemplate" . }} | ||
{{- if .Values.enabled }} | ||
{{- include "pegaRegistryCredentialsSecretTemplate" . }} | ||
{{ end }} |
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
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
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
Oops, something went wrong.