Skip to content

Commit

Permalink
Add CIS label to CI
Browse files Browse the repository at this point in the history
Signed-off-by: YuryLysov <yuriy.lysov@flant.com>
  • Loading branch information
YuryLysov committed Dec 19, 2024
1 parent ca7514d commit b5b1ed3
Show file tree
Hide file tree
Showing 11 changed files with 209 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/scripts/js/ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ const setCRIAndVersionsFromLabels = ({ core, labels, kubernetesDefaultVersion })
let cri = [];
let multimaster = e2eDefaults.multimaster;
let edition = "";
let cis = e2eDefaults.cis

for (const label of labels) {
const info = knownLabels[label.name];
Expand All @@ -501,6 +502,10 @@ const setCRIAndVersionsFromLabels = ({ core, labels, kubernetesDefaultVersion })
core.info(`Detect '${label.name}': use Kubernetes multimaster configuration`);
multimaster = true;
}
if (info.cis) {
core.info(`Detect '${label.name}': use operator-trivy to get CIS Benchmark report`);
cis = true;
}
}

if (ver.length === 0) {
Expand All @@ -519,6 +524,7 @@ const setCRIAndVersionsFromLabels = ({ core, labels, kubernetesDefaultVersion })
core.setCommandEcho(true);
core.setOutput(`edition`, `${edition}`);
core.setOutput(`multimaster`, `${multimaster}`);
core.setOutput(`cis`, `${cis}`);
for (const out_cri of cri) {
for (const out_ver of ver) {
core.setOutput(`run_${out_cri}_${out_ver}`, 'true');
Expand Down
6 changes: 5 additions & 1 deletion .github/scripts/js/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ const labels = {
'edition/ee': { type: 'edition', edition: 'EE' },
'edition/be': { type: 'edition', edition: 'BE' },
'edition/se': { type: 'edition', edition: 'SE' },
'edition/se+': { type: 'edition', edition: 'SE-plus' }
'edition/se+': { type: 'edition', edition: 'SE-plus' },

// Enable operator-trivy to get CIS benchmark report
'e2e/use/cis': { type: 'e2e-use', cis: true }
};
module.exports.knownLabels = labels;

Expand Down Expand Up @@ -159,6 +162,7 @@ module.exports.e2eDefaults = {
criName: 'Containerd',
edition: 'FE',
multimaster: false,
cis: false
}

const editions = [
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/e2e-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ jobs:
run_containerd_automatic: ${{ steps.check.outputs.run_containerd_automatic }}
edition: ${{ steps.check.outputs.edition }}
multimaster: ${{ steps.check.outputs.multimaster }}
cis: ${{ steps.check.outputs.cis }}
steps:

# <template: checkout_step>
Expand Down Expand Up @@ -461,6 +462,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -473,6 +475,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -517,6 +520,7 @@ jobs:
-e LAYOUT_AWS_ACCESS_KEY=${LAYOUT_AWS_ACCESS_KEY:-not_provided} \
-e LAYOUT_AWS_SECRET_ACCESS_KEY=${LAYOUT_AWS_SECRET_ACCESS_KEY:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -953,6 +957,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -965,6 +970,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -1009,6 +1015,7 @@ jobs:
-e LAYOUT_AWS_ACCESS_KEY=${LAYOUT_AWS_ACCESS_KEY:-not_provided} \
-e LAYOUT_AWS_SECRET_ACCESS_KEY=${LAYOUT_AWS_SECRET_ACCESS_KEY:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -1445,6 +1452,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -1457,6 +1465,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -1501,6 +1510,7 @@ jobs:
-e LAYOUT_AWS_ACCESS_KEY=${LAYOUT_AWS_ACCESS_KEY:-not_provided} \
-e LAYOUT_AWS_SECRET_ACCESS_KEY=${LAYOUT_AWS_SECRET_ACCESS_KEY:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -1937,6 +1947,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -1949,6 +1960,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -1993,6 +2005,7 @@ jobs:
-e LAYOUT_AWS_ACCESS_KEY=${LAYOUT_AWS_ACCESS_KEY:-not_provided} \
-e LAYOUT_AWS_SECRET_ACCESS_KEY=${LAYOUT_AWS_SECRET_ACCESS_KEY:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -2429,6 +2442,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -2441,6 +2455,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -2485,6 +2500,7 @@ jobs:
-e LAYOUT_AWS_ACCESS_KEY=${LAYOUT_AWS_ACCESS_KEY:-not_provided} \
-e LAYOUT_AWS_SECRET_ACCESS_KEY=${LAYOUT_AWS_SECRET_ACCESS_KEY:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -2921,6 +2937,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -2933,6 +2950,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -2977,6 +2995,7 @@ jobs:
-e LAYOUT_AWS_ACCESS_KEY=${LAYOUT_AWS_ACCESS_KEY:-not_provided} \
-e LAYOUT_AWS_SECRET_ACCESS_KEY=${LAYOUT_AWS_SECRET_ACCESS_KEY:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -3413,6 +3432,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -3425,6 +3445,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -3469,6 +3490,7 @@ jobs:
-e LAYOUT_AWS_ACCESS_KEY=${LAYOUT_AWS_ACCESS_KEY:-not_provided} \
-e LAYOUT_AWS_SECRET_ACCESS_KEY=${LAYOUT_AWS_SECRET_ACCESS_KEY:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/e2e-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ jobs:
run_containerd_automatic: ${{ steps.check.outputs.run_containerd_automatic }}
edition: ${{ steps.check.outputs.edition }}
multimaster: ${{ steps.check.outputs.multimaster }}
cis: ${{ steps.check.outputs.cis }}
steps:

# <template: checkout_step>
Expand Down Expand Up @@ -463,6 +464,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -475,6 +477,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -521,6 +524,7 @@ jobs:
-e LAYOUT_AZURE_CLIENT_SECRET=${LAYOUT_AZURE_CLIENT_SECRET:-not_provided} \
-e LAYOUT_AZURE_TENANT_ID=${LAYOUT_AZURE_TENANT_ID:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -963,6 +967,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -975,6 +980,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -1021,6 +1027,7 @@ jobs:
-e LAYOUT_AZURE_CLIENT_SECRET=${LAYOUT_AZURE_CLIENT_SECRET:-not_provided} \
-e LAYOUT_AZURE_TENANT_ID=${LAYOUT_AZURE_TENANT_ID:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -1463,6 +1470,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -1475,6 +1483,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -1521,6 +1530,7 @@ jobs:
-e LAYOUT_AZURE_CLIENT_SECRET=${LAYOUT_AZURE_CLIENT_SECRET:-not_provided} \
-e LAYOUT_AZURE_TENANT_ID=${LAYOUT_AZURE_TENANT_ID:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -1963,6 +1973,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -1975,6 +1986,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -2021,6 +2033,7 @@ jobs:
-e LAYOUT_AZURE_CLIENT_SECRET=${LAYOUT_AZURE_CLIENT_SECRET:-not_provided} \
-e LAYOUT_AZURE_TENANT_ID=${LAYOUT_AZURE_TENANT_ID:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -2463,6 +2476,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -2475,6 +2489,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -2521,6 +2536,7 @@ jobs:
-e LAYOUT_AZURE_CLIENT_SECRET=${LAYOUT_AZURE_CLIENT_SECRET:-not_provided} \
-e LAYOUT_AZURE_TENANT_ID=${LAYOUT_AZURE_TENANT_ID:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -2963,6 +2979,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -2975,6 +2992,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -3021,6 +3039,7 @@ jobs:
-e LAYOUT_AZURE_CLIENT_SECRET=${LAYOUT_AZURE_CLIENT_SECRET:-not_provided} \
-e LAYOUT_AZURE_TENANT_ID=${LAYOUT_AZURE_TENANT_ID:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down Expand Up @@ -3463,6 +3482,7 @@ jobs:
REPOSITORY: ${{ github.repository }}
DHCTL_LOG_FILE: ${{ steps.setup.outputs.dhctl-log-file}}
GITHUB_TOKEN: ${{secrets.BOATSWAIN_GITHUB_TOKEN}}
CIS_ENABLED: ${{ needs.check_e2e_labels.outputs.cis }}
run: |
echo "Execute 'script.sh run-test' via 'docker run', using environment:
INSTALL_IMAGE_NAME=${INSTALL_IMAGE_NAME}
Expand All @@ -3475,6 +3495,7 @@ jobs:
KUBERNETES_VERSION=${KUBERNETES_VERSION}
TMP_DIR_PATH=${TMP_DIR_PATH}
MASTERS_COUNT=${MASTERS_COUNT}
CIS_ENABLED=${CIS_ENABLED}
"
ls -lh $(pwd)/testing
Expand Down Expand Up @@ -3521,6 +3542,7 @@ jobs:
-e LAYOUT_AZURE_CLIENT_SECRET=${LAYOUT_AZURE_CLIENT_SECRET:-not_provided} \
-e LAYOUT_AZURE_TENANT_ID=${LAYOUT_AZURE_TENANT_ID:-not_provided} \
-e USER_RUNNER_ID=${user_runner_id} \
-e CIS_ENABLED=${CIS_ENABLED} \
-v $(pwd)/testing:/deckhouse/testing \
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
-v ${TMP_DIR_PATH}:/tmp \
Expand Down
Loading

0 comments on commit b5b1ed3

Please sign in to comment.