hundreds-receptionist-31352
05/06/2020, 5:11 PMimport * as k8s from "@pulumi/kubernetes";
// Deploy the latest version of the stable/wordpress chart.
const wordpress = new k8s.helm.v2.Chart("wpdev", {
repo: "stable",
chart: "wordpress",
version: "2.1.3",
});
// Export the public IP for WordPress.
const frontend = wordpress.getResource("v1/Service", "wpdev-wordpress");
export const frontendIp = frontend.status.loadBalancer.ingress[0].ip;
billowy-army-68599
pulumi up
?hundreds-receptionist-31352
05/07/2020, 11:47 AMbillowy-army-68599
9.0.3
and re run pulumi uphundreds-receptionist-31352
05/07/2020, 12:36 PMbillowy-army-68599
hundreds-receptionist-31352
05/07/2020, 6:01 PMbillowy-army-68599
hundreds-receptionist-31352
05/08/2020, 5:04 PM