Is there any example where pulumi deploys a gke cl...
# general
c
Is there any example where pulumi deploys a gke cluster and then deploys a helm chart to that cluster using java?
p
Have you tried Pulumi AI?
c
I have but the example am getting are using modules that are either deprecated or not yet available
I added this code snipet to my code but the helm chart was not installed
Copy code
var certmanager = new Release("cert-manager",
                ReleaseArgs.builder()
                        .chart("cert-manager")
                        .createNamespace(true)
                        .namespace("cert-manager")
                        .version("v1.12.0")
                        .repositoryOpts(RepositoryOptsArgs.builder()
                                .repo("<https://charts.jetstack.io>")
                                .build())
                        .build()
        );
p
Then I can't help you. I'm neither working with GKE, Helm chars nor Java 🙃
c
@plain-parrot-21984 Thanks alot
s