im trying to use pulumi while also following along...
# general
b
im trying to use pulumi while also following along to this gke tutorial (https://cloud.google.com/kubernetes-engine/docs/tutorials/connect-to-cloud-pubsub-via-service-broker), which relies on a service catalog. I see a service catalog for aws (https://pulumi.io/reference/pkg/python/pulumi_aws/servicecatalog/), but im not sure if that'd work for this tutorial from google
c
@brainy-psychiatrist-41826 No, it won’t. Service catalog is a thing that has to be installed inside your kubernetes cluster, e.g., from a helm chart. https://kubernetes.io/docs/tasks/service-catalog/install-service-catalog-using-helm/
w
Hi @brainy-psychiatrist-41826 you referred to AWS Service Catalog https://aws.amazon.com/servicecatalog/ It is a kind of enterprise portfolio where you can reference CloudFormation Stacks which can be used in standard way in your company. K8S ServiceCatalog rely on service brokers to manage cloud managed services natively from kubernetes. More info here : https://aws.amazon.com/partners/servicebroker/ https://github.com/awslabs/aws-servicebroker/tree/master/docs
b
@creamy-potato-29402 - so if i had a helm chart, then i would be able to deploy it via pulumi, right?
c
@brainy-psychiatrist-41826 yes, there is nothing “special” about Kuberetes as deployed with Pulumi — if you can do it with Kubernetes, you can do it with Pulumi too.