Helm部署服务的方法是什么

发布时间:2021-12-20 15:45:58 作者:iii
来源:亿速云 阅读:188

这篇文章主要讲解了“Helm部署服务的方法是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Helm部署服务的方法是什么”吧!

#wordpress

部署业务应用

首先,我们需要添加 WordPress 官方Repo地址:

helm3 repo add bitnami https://charts.bitnami.com/bitnami

执行 Helm Install 部署 WordPress:

helm3 install wordpress bitnami/wordpress \    --set mariadb.primary.persistence.enabled=true \    --set mariadb.primary.persistence.storageClass=alicloud-disk-ssd \    --set mariadb.primary.persistence.size=20Gi \    --set persistence.enabled=false

其中:

执行成功后,应该有如下返回:

NAME: wordpressLAST DEPLOYED: Wed Jan 20 15:09:45 2021NAMESPACE: handsonackSTATUS: deployedREVISION: 1NOTES:** Please be patient while the chart is being deployed **Your WordPress site can be accessed through the following DNS name from within your cluster:    wordpress.handsonack.svc.cluster.local (port 80)To access your WordPress site from outside the cluster follow the steps below:1. Get the WordPress URL by running these commands:  NOTE: It may take a few minutes for the LoadBalancer IP to be available.        Watch the status with: 'kubectl get svc --namespace handsonack -w wordpress'   export SERVICE_IP=$(kubectl get svc --namespace handsonack wordpress --template "{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}")   echo "WordPress URL: http://$SERVICE_IP/"   echo "WordPress Admin URL: http://$SERVICE_IP/admin"2. Open a browser and access WordPress using the obtained URL.3. Login with the following credentials below to see your blog:  echo Username: user  echo Password: $(kubectl get secret --namespace handsonack wordpress -o jsonpath="{.data.wordpress-password}" | base64 --decode)

也可以通过以下命令查看部署状态:

helm3 status wordpress

感谢各位的阅读,以上就是“Helm部署服务的方法是什么”的内容了,经过本文的学习后,相信大家对Helm部署服务的方法是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

推荐阅读:
  1. kubernetes中helm的安装和部署
  2. Helm工具的介绍和部署

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

helm

上一篇:Spring AOP怎么使用

下一篇:Java Web的Filter怎么使用

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》