Skip to content

Commit 8a3f1d5

Browse files
authored
Merge pull request #166 from IABTechLab/gdm-UID2-5040-e2e
Fixed shared-validate-image and AKS artifact
2 parents e5d9881 + d86fc48 commit 8a3f1d5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/shared-validate-image.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ on:
1919
java_version:
2020
type: string
2121
default: '11'
22-
upload_vulnerabilities:
22+
publish_vulnerabilities:
23+
description: If true, will attempt to publish the results to the GitHub security tab
2324
type: boolean
2425
default: true
2526
skip_tests:
@@ -100,6 +101,7 @@ jobs:
100101
with:
101102
scan_severity: HIGH,CRITICAL
102103
failure_severity: ${{ inputs.failure_severity }}
104+
publish_vulnerabilities: ${{ inputs.publish_vulnerabilities }}
103105
image_ref: ${{ steps.meta.outputs.tags }}
104106
scan_type: image
105107
full_report: 'true'

scripts/aks/prepare_aks_artifacts.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ export KEYVAULT_NAME="pipeline-vn-aks-vault"
3333
if [ ${TARGET_ENVIRONMENT} == "mock" ]; then
3434
export KEYVAULT_SECRET_NAME="pipeline-vn-aks-opr-key-name"
3535
elif [ ${TARGET_ENVIRONMENT} == "integ" ]; then
36-
OPERATOR_KEY_NAME="pipeline-vn-aks-opr-key-name-integ"
36+
KEYVAULT_SECRET_NAME="pipeline-vn-aks-opr-key-name-integ"
3737
elif [ ${TARGET_ENVIRONMENT} == "prod" ]; then
38-
OPERATOR_KEY_NAME="pipeline-vn-aks-opr-key-name-prod"
38+
KEYVAULT_SECRET_NAME="pipeline-vn-aks-opr-key-name-prod"
3939
else
4040
echo "Arguments not supported: TARGET_ENVIRONMENT=${TARGET_ENVIRONMENT}"
4141
exit 1

0 commit comments

Comments
 (0)