Skip to content

Commit

Permalink
add wrapper scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Aug 8, 2024
1 parent 5fbb060 commit 4d687c5
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions hack/build-e2e-images.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
cd ../templates/docker
sudo docker build -t k8s-snap:dev-old --build-arg BRANCH=main --build-arg KUBERNETES_VERSION=v1.29.6
#!/bin/bash

# Description:
# Build k8s-snap docker images required for e2e tests.
#
# Usage:
# ./build-e2e-images.sh

DIR="$(realpath "$(dirname "${0}")")"

cd "${DIR}/../templates/docker"
sudo docker build . -t k8s-snap:dev-old --build-arg BRANCH=main --build-arg KUBERNETES_VERSION=v1.29.6
sudo docker build . -t k8s-snap:dev-new --build-arg BRANCH=main
cd -

0 comments on commit 4d687c5

Please sign in to comment.