Skip to content

Commit

Permalink
chore: update dev-secrets to use vendored kubectl command (#129)
Browse files Browse the repository at this point in the history
## Description

update dev-secrets to use vendored kubectl command
  • Loading branch information
zachariahmiller committed May 16, 2024
1 parent 430ebba commit eb7f356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dev-secrets/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit eb7f356

Please sign in to comment.