From e52fa87a74f63acfc74ccd0d358d2d8aefef597d Mon Sep 17 00:00:00 2001 From: Rahul Jadhav Date: Sun, 29 Sep 2024 21:04:27 +0530 Subject: [PATCH] added crytominers and vault pawning resource Signed-off-by: Rahul Jadhav --- Makefile | 2 +- k8s/deploy.yaml | 4 +++- start-sandcat.sh | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a49ecf3..f00748d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -TAG=v1.0.3 +TAG=v1.0.4 build: docker buildx build -t nyrahul/sandcat:${TAG} . diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index 2e206fd..7604b6b 100755 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -38,10 +38,12 @@ spec: spec: serviceAccountName: caldera-sa containers: - - image: nyrahul/sandcat:v1.0.3 + - image: nyrahul/sandcat:v1.0.4 imagePullPolicy: Always name: sandcat env: - name: SERVER value: "http://vm.accuknox.com:8888" + - name: GROUP + value: "ACCUKNOX" --- diff --git a/start-sandcat.sh b/start-sandcat.sh index 000fb20..ac6622b 100755 --- a/start-sandcat.sh +++ b/start-sandcat.sh @@ -6,6 +6,6 @@ BIN=/sandcat echo "converting sandcat bin..." xxd -r -p $HEX > $BIN chmod +x $BIN -echo "starting sandcat..." -$BIN -server $SERVER -group red -v +echo "starting sandcat server=$SERVER group=$GROUP ..." +$BIN -server $SERVER -group $GROUP -v echo "sandcat terminated..."