Aller au contenu

Déployez un Wordpress avec Helm

Pour cet exemple, nous allons déployer un Wordpress basé sur le chart wordpress de bitnami, en utilisant le domaine projet BlackSwift :

Déploiement du chart Helm
> helm repo add bitnami https://charts.bitnami.com/bitnami
> helm -n <namespace> upgrade --install blog bitnami/wordpress -f - <<EOF
service:
type: ClusterIP
ingress:
enabled: true
hostname: <namespace>-wp.project.bseufr01.blackswift.hosting
tls: true
annotations:
cert-manager.io/issuer: letsencrypt
wordpressPassword: <yourpassword>
EOF

Vous pouvez alors visiter votre blog à l’adresse :

https://<namespace>-wp.project.bseufr01.blackswift.hosting