https://pulumi.com logo
c

clever-yacht-25115

07/19/2023, 7:19 AM
Is there any example where pulumi deploys a gke cluster and then deploys a helm chart to that cluster using java?
p

plain-parrot-21984

07/19/2023, 7:33 AM
Have you tried Pulumi AI?
c

clever-yacht-25115

07/19/2023, 7:56 AM
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

plain-parrot-21984

07/19/2023, 8:38 AM
Then I can't help you. I'm neither working with GKE, Helm chars nor Java 🙃
c

clever-yacht-25115

07/19/2023, 8:38 AM
@plain-parrot-21984 Thanks alot
s

salmon-account-74572

07/19/2023, 3:29 PM