From eb7f3569ce79edec1794daf4e2139fea4f07e58f Mon Sep 17 00:00:00 2001 From: zamaz <71521611+zachariahmiller@users.noreply.github.com> Date: Thu, 16 May 2024 10:25:34 -0400 Subject: [PATCH] chore: update dev-secrets to use vendored kubectl command (#129) ## Description update dev-secrets to use vendored kubectl command --- src/dev-secrets/zarf.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dev-secrets/zarf.yaml b/src/dev-secrets/zarf.yaml index 88776f01..2333ffbf 100644 --- a/src/dev-secrets/zarf.yaml +++ b/src/dev-secrets/zarf.yaml @@ -11,7 +11,7 @@ components: actions: onDeploy: before: - - cmd: kubectl get secret -n dev-minio minio --template='{{ index .data "rootPassword" }}' | base64 -d + - cmd: ./zarf tools kubectl get secret -n dev-minio minio --template='{{ index .data "rootPassword" }}' | base64 -d mute: true setVariables: - name: SECRET_KEY @@ -32,7 +32,7 @@ components: actions: onDeploy: before: - - cmd: kubectl get secret -n dev-redis redis --template='{{ index .data "redis-password" }}' | base64 -d + - cmd: ./zarf tools kubectl get secret -n dev-redis redis --template='{{ index .data "redis-password" }}' | base64 -d mute: true setVariables: - name: REDIS_PASSWORD