hi , I'm following this example <https://github.co...
# aws
h
hi , I'm following this example https://github.com/pulumi/examples/tree/master/kubernetes-ts-helm-wordpress , and I can't get wordpress stack running , one of the pods that are failing seems that needs another variables :
kubectl logs -f wordpress-wordpress-68d48b9945-qn6wf Welcome to the Bitnami wordpress container Subscribe to project updates by watching https://github.com/bitnami/bitnami-docker-wordpress Submit issues and feature requests at https://github.com/bitnami/bitnami-docker-wordpress/issues WARN ==> You set the environment variable ALLOW_EMPTY_PASSWORD=yes. For safety reasons, do not use this flag in a production environment. nami INFO Initializing apache apache INFO ==> Reconfiguring PID file location... nami INFO apache successfully initialized nami INFO Initializing php nami INFO php successfully initialized nami INFO Initializing mysql-client nami INFO mysql-client successfully initialized nami INFO Initializing wordpress mysql-c INFO Trying to connect to MySQL server mysql-c INFO Found MySQL server listening at wordpress-mariadb:3306 mysql-c INFO MySQL server listening and working at wordpress-mariadb:3306 Error executing 'postInstallation': You should specify username, password, host, port for SMTP configuratio
even if I do that the documentation says:
import * 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;