쿠버네티스로 Joomla 설치하기

조회 772 · 댓글 0
스테파니작성자2022년 3월 18일
$ helm repo add bitnami https://charts.bitnami.com/bitnami
"bitnami" has been added to your repositories

$ helm install my-release bitnami/joomla
NAME: my-release
LAST DEPLOYED: Mon Apr 11 05:23:58 2022
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
CHART NAME: joomla
CHART VERSION: 12.0.19
APP VERSION: 4.1.2** Please be patient while the chart is being deployed **

1. Access your Joomla! instance with:

** Please ensure an external IP is associated to the my-release-joomla service before proceeding **
** Watch the status using: kubectl get svc --namespace default -w my-release-joomla **

export SERVICE_IP=$(kubectl get svc --namespace default my-release-joomla --template "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}")
echo "Joomla! URL: http://$SERVICE_IP/"

2. Login with the following credentials

echo Username: user
echo Password: $(kubectl get secret --namespace default my-release-joomla -o jsonpath="{.data.joomla-password}" | base64 --decode)

로그인 후 답글을 남길 수 있습니다.