Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: create, append #30

Closed
vikin91 opened this issue Jun 10, 2020 · 1 comment
Closed

Feature request: create, append #30

vikin91 opened this issue Jun 10, 2020 · 1 comment

Comments

@vikin91
Copy link
Contributor

vikin91 commented Jun 10, 2020

I would wish for the following features:

1. Create secret

$ cat "file.json"
{
"secret": "value"
}

echo "file.json" > vsh -c "create /secret/list"
vsh -c "cat /secret/list"
secret = value

2. Append secret to another secret

vsh -c "cat /secret/src/list"
c = xxx
d = xxx

vsh -c "cat /secret/dst/list"
a = xxx
b = xxx

vsh -c "append /secret/src/list /secret/dst/list"

vsh -c "cat /secret/src/list"
c = xxx
d = xxx

vsh -c "cat /secret/dst/list"
c = xxx
d = xxx
a = xxx
b = xxx
@fishi0x01
Copy link
Owner

Merged your PR #31

I will add KV1 tests now and afterwards craft a release.

Thank you 🙇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants