many-pencil-40333
08/03/2023, 2:25 PMgke-gcloud-auth-plugin
to be in your PATH
when working with gke
. gcloud
, however installs this binary in a non-standard location as it's generally the only consumer of the plugin. Is there an alternative way to tell the provider where to find the plugin? I'd rather not add the gcloud
plugins folder to my path or have to prefix pulumi commands with the location. Is this documented anywhere?full-eve-52536
08/03/2023, 2:33 PMgoogle-cloud-sdk-gke-gcloud-auth-plugin
package using your package manager instead?
In our case, we create a pulumi
docker image with all the binaries required to run pulumi
commands, so we end up doing:
RUN apt-get install -y google-cloud-sdk-gke-gcloud-auth-plugin
And that's all we usually need. We don't add it to our PATH
.kubeconfig
file (which we supply to our provider), there is a command:
directive:many-pencil-40333
08/03/2023, 3:09 PM