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
Used go1.13 and tried using kustomize/v3.8.0, v3.8.1 and 3.8.2 (compiled with go1.13) and compiled the plugin also with go1.13
on running the kustomize build it gives the following error:
"Attempting plugin load from 'kustomize/plugin/secretgenerator/SecretGenerator.so'
Error: loading generator plugins: plugin kustomize/plugin/secretgenerator/SecretGenerator.so fails to load: plugin.Open("kustomize/plugin/secretgenerator/SecretGenerator"): plugin was built with a different version of package sigs.k8s.io/kustomize/api/resid"
The text was updated successfully, but these errors were encountered:
Hello @Ishafak!
How do you use secretize? It is intended to be a kustomize exec plugin, not a shared library.
So, you need to download the binary and install it into your plugin home directory, e.g. ~/.config/kustomize/plugin/secretize/v1/secretgenerator/.
In this folder, you need to store the SecretGenerator binary:
Hi @bbl
I followed the steps for the exec plugin and now when I do the kustomize build it gives, Verified path exists in vault with cli
(vault kv get path/to/secret)
----- kustomization.yaml
generators:
Used go1.13 and tried using kustomize/v3.8.0, v3.8.1 and 3.8.2 (compiled with go1.13) and compiled the plugin also with go1.13
on running the kustomize build it gives the following error:
"Attempting plugin load from 'kustomize/plugin/secretgenerator/SecretGenerator.so'
Error: loading generator plugins: plugin kustomize/plugin/secretgenerator/SecretGenerator.so fails to load: plugin.Open("kustomize/plugin/secretgenerator/SecretGenerator"): plugin was built with a different version of package sigs.k8s.io/kustomize/api/resid"
The text was updated successfully, but these errors were encountered: