Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/create-demo-clusters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,14 @@ jobs:
id: artifacts
run: |
infractl artifacts "${NAME//./-}" -d artifacts >> "$GITHUB_STEP_SUMMARY"
- name: Install roxctl
env:
STACKROX_DIR: ${{ github.workspace }}
run: |
mkdir -p ~/.local/bin
make cli_linux-amd64
cp "${STACKROX_DIR}"/bin/linux_amd64/roxctl ~/.local/bin/roxctl
chmod +x ~/.local/bin/roxctl
- name: Launch central
id: launch-central
uses: ./.actions/release/start-acs
Expand Down Expand Up @@ -386,6 +394,14 @@ jobs:
id: artifacts
run: |
infractl artifacts "${SECURED_CLUSTER_NAME//./-}" -d artifacts
- name: Install roxctl
env:
STACKROX_DIR: ${{ github.workspace }}
run: |
mkdir -p ~/.local/bin
make cli_linux-amd64
cp "${STACKROX_DIR}"/bin/linux_amd64/roxctl ~/.local/bin/roxctl
chmod +x ~/.local/bin/roxctl
- name: Launch secured cluster
id: launch-secured-cluster
env:
Expand Down