Skip to content

Commit

Permalink
fix docker pull command on IVAN runner
Browse files Browse the repository at this point in the history
  • Loading branch information
igorschultz committed Aug 12, 2024
1 parent 40290a8 commit cd79b06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/secure-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ jobs:
DOCKER_IMAGE="us-central1-docker.pkg.dev/${GOOGLE_PROJECT}/igors-java-goof/java-goof:${VERSION}"
export FALCON_CLIENT_ID=${{ secrets.CLIENT_ID }}
export FALCON_CLIENT_SECRET=${{ secrets.CLIENT_SECRET }}
curl -s -L https://github.com/CrowdStrike/ivan/releases/download/1.0.6/ivan_1.0.6_Linux_x86_64.tar.gz
curl -LO https://github.com/CrowdStrike/ivan/releases/download/1.0.6/ivan_1.0.6_Linux_x86_64.tar.gz
tar xvzf ivan_1.0.6_Linux_x86_64.tar.gz
chmod +ux ivan
docker image pull ${DOCKER_IMAGE}
chmod +x ivan
docker pull ${DOCKER_IMAGE}
ivan -region us-1 -image ${DOCKER_IMAGE}
- name: Deploy to GKE
Expand Down

0 comments on commit cd79b06

Please sign in to comment.