busy-kitchen-1186
09/18/2022, 8:07 AMgorgeous-accountant-60580
09/18/2022, 9:13 AMbusy-kitchen-1186
09/18/2022, 10:07 AMDeploy NGINX to a Kubernetes Cluster.
🤨 But I need to install ingress, so that I can assign host name to my services.gorgeous-accountant-60580
09/18/2022, 10:09 AMbusy-kitchen-1186
09/18/2022, 10:13 AMimport * as k8s from "@pulumi/kubernetes";
const nginxIngress = new k8s.helm.v3.Chart("nginx-ingress", {
chart: "nginx-ingress",
version: "1.24.4",
namespace: "test-namespace",
fetchOpts:{
repo: "<https://charts.helm.sh/stable>",
},
});
How do I specify which EKS cluster to install?gorgeous-accountant-60580
09/18/2022, 10:18 AMkubernetes:context
config value
https://www.pulumi.com/registry/packages/kubernetes/installation-configuration/
In your case, if you want this all in one pulumi program, I suspect you’d set this in your program, after creating the cluster.