-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Registration fails with vault 1.15 or 1.16 #134
Comments
I can reproduce the same error as seen on 1.15 on 1.13.11, too. |
Bumping the Upgrading to I compiled the binary with The go.mod file now looks like this
|
@arnecls I'm getting the same error when installing it on Vault version 1.16.2. |
I've been using 2.0.0 with vault 1.12 - that works. I've created a PR with a fixed version. |
I'm getting some inconsistencies with where this is working and where it is not. On my local dockerized instance, I'm not having any trouble enabling the engine in Vault version However, in my cloud deployment on x86_64, I see the above-mentioned issue. The architecture also affect the outcome for this bug? ➜ vault-local-dev ✗ vault secrets enable -path=github -plugin-name=vault-plugin-secrets-github plugin
Success! Enabled the vault-plugin-secrets-github secrets engine Locally deployed Vault Server (docker) root@d3c24ef94650:/# arch
aarch64
root@d3c24ef94650:/# vault version
Vault v1.16.2 (c6e4c2d4dc3b0d57791881b087c026e2f75a87cb), built 2024-04-22T16:25:54Z
root@d3c24ef94650:/# vault status
Key Value
--- -----
Seal Type shamir
Initialized true
Sealed false
Total Shares 1
Threshold 1
Version 1.16.2
Build Date 2024-04-22T16:25:54Z
Storage Type inmem
Cluster Name vault-cluster-85fd8c95
Cluster ID 0a7febeb-1581-d95d-6284-1742fd76f874
HA Enabled false Local vault client (from Homebrew) ➜ vault-local-dev ✗ arch
arm64
➜ vault-local-dev ✗ vault version
Vault v1.14.4 ('ccdd48d1f7b95fc99fd11d67fc1c687576b338de+CHANGES'), built 2023-09-22T21:29:05Z |
We recently started updating our vault 1.12 (on debian 11) installation to a more recent version (on debian 12) and found this plugin to not be working anymore.
The error happens when running
Vault 1.15 is complaining about a mismatched struct type
Vault 1.16 is complaining about an unrecognized remote plugin message:
Going through the list of suggested issues
EM_X86_64
can be considered the same asamd64
, so noldd yields
not a dynamic executable
so I guess this is fine.The plugin has the same permission like another plugin that is working fine.
The error output also suggests that there is no issue here.
I cannot check this, but the error from vault 1.15 might suggest that this is the actual issue.
I did not check older versions of vault yet, but I see that this plugin is compiled against vault API 1.12.11 which is also the version that we previously used and was also working.
The text was updated successfully, but these errors were encountered: