Skip to content

Commit

Permalink
feat: token展開のコマンドが間違ってた
Browse files Browse the repository at this point in the history
  • Loading branch information
honahuku committed Dec 12, 2023
1 parent ec66a93 commit cd37fe7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions aqua.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ packages:
- name: argoproj/[email protected]
- name: kubernetes-sigs/kustomize@kustomize/v5.3.0
- name: helm/[email protected]
- name: mikefarah/[email protected]
6 changes: 4 additions & 2 deletions connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ kubectl create secret generic op-credentials \
--from-file=1password-credentials.json=1password-credentials.json \
--dry-run=client -o yaml | kubectl apply -f -

kubectl create secret generic onepassword-token -n connect \
--from-literal=token="OP_CONNECT_TOKEN" | kubectl apply -f -
kubectl create secret generic onepassword-token \
-n connect \
--from-literal=token="$OP_CONNECT_TOKEN" \
--dry-run=client -o yaml | kubectl apply -f -
```

0 comments on commit cd37fe7

Please sign in to comment.