Skip to content

Commit

Permalink
#181 pass provided scope
Browse files Browse the repository at this point in the history
  • Loading branch information
bakito committed Oct 10, 2023
1 parent d8d9dce commit bd9a04f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/seal/seal.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func (a *apiSealer) Raw(data Raw) ([]byte, error) {
}
if err := kubeseal.EncryptSecretItem(
&buf, data.Name, data.Namespace, []byte(data.Value),
v1alpha1.DefaultScope, a.pubKey); err != nil {
scope, a.pubKey); err != nil {
return nil, err
}
return buf.Bytes(), nil
Expand Down

0 comments on commit bd9a04f

Please sign in to comment.