You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2024. It is now read-only.
acorn version - v0.10.0-rc2-9-g43dbcbf4+43dbcbf4 Steps to reproduce the problem:
Create a secret say mytest1
Create another secret with same name - mytest1
There is no change made to the existing secret as expected . But this command does not error out stating that secret already exists.
%acorn secret create mytest1 --data test1=value1
mytest1
% acorn secret create mytest1 --data test2=value2
mytest1
% acorn secret reveal mytest1
NAME TYPE KEY VALUE
mytest1 opaque test1 value1
Expected Behavior:
Create secret command should error out in this case stating that secret already exists.