Hi all, I have small question, my provider v0.1.1 ...
# package-authoring
g
Hi all, I have small question, my provider v0.1.1 works fine, but I have one warning during execution, how to fix it or what is the cause?
a
Cause: It looks like the plugin your are developing with doesn’t serve the version correctly. What framework are you using to serve the plugin?
g
a
Version
is set in the Makefile and then embedded into the binary. When I tried building your provider locally, the version I got was
"0.1.2-alpha.1716240557+7a2eb097.dirty"
. If you want to specify the version using the current Makefile, you need to build on a commit tagged at
v0.1.1
. You can check what version
pulumictl
will derive by running it directly:
Copy code
$ pulumictl get version
If you want to hard-code that you are building version
v0.1.1
(instead of relying on git tags), you can run
VERSION=0.1.1 make provider
. That binary will report to have version v0.1.1. Let me know if that helped.