Hello, I am creating a gcp cluster and I want to a...
# kubernetes
l
Hello, I am creating a gcp cluster and I want to apply a config file to it once the cluster is done so that it can have some CRD definitions. How can I do this?
r
Hi. 1. Generate kubeconfig based on outputs of your cluster. 2. Use this kubeconfig to create custom provider for cluster. 3. deploy your CRDs via yaml.ConfigFiles. This is the easiest approach.
l
oh yeah that makes sense! thank you! worked like a charm!