当前位置:   article > 正文

谷歌云GCP上托管Kubernetes集群部署web前后端任务报告-系列1_gcp集群

gcp集群

谷歌云介绍

(1)谷歌云托管Kubernetes集群 GKE和应用案例

第一步: 看一下界面长相?从控制台点击Kubernetes Engine–>Clusters
谷歌云控制台
打开了集群控制面板 Dashboard,可以看到目前有一个K8S集群叫做graphviz-app,详情栏目中包括了位置US LOCATION,集群节点3个。总CPU数量和总可用内存。最右边的Connect点击后会在当前页面上生成命令行终端所以GCP在这方面做的比较好,直接帮助你在统一界面上获得集群的连接服务进行操作
在这里插入图片描述
点击集群名称进入下一个层级可以看到详情和节点也就是GCP虚拟服务器实例的详情
在这里插入图片描述在这里插入图片描述
在GCP K8S部署中一般都是用前端服务PODS对接一个负载均衡单一地址,这个负载均衡的单一地址就是WEB应用的对外服务的响应的IP地址,比如HTTPS://IP地址。点击后会看到如下WEB应用。
在这里插入图片描述
以上是一个已经部署好的K8S集群WEB前后端的基本情况,下面讲解以下如何部署一个这样的项目。

(2)部署步骤

对于一个全新的K8S集群部署,在GCP的Kubernetes Engine中可以轻松实现,不过我们这次采用命令行的方式创建更加方便灵活也显得比较专业!!
在这里插入图片描述
在右上角找到下面这个图标,点击后获得命令行界面又叫 CLOUD SDK
在这里dasd 图片描述
wait a bit we will have the commnad-line tool like below. this is a lot more convenient than AWS cloud where we have to use our own local terminal to connect to cloud for any operations and we need to care securities and credentials which are all cared by GCP like this.
在这里插入图片描述
Once we enter the command-line, we could interact with GCP resources from command-line such as we need to verify the compute zones available to us.

gcloud compute zones list
  • 1

we will have output like this, there are lots of them so we didnt display all in full!!
在这里插入图片描述
in order to create resources on GCP first thing needed is to configure the zones you want the resources to be created.

gcloud config set compute/zone us-central1-a
  • 1

once we done that, now it is time to create the cluster using command-line tool.

gcloud container clusters create graphviz-app [--optional]
  • 1

if we do not provide any additional optional arguments, above command will just create a default cluster with 3 nodes of machine type n1-standard-1 (1vCPU and 3.75GB memory). hit t

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/881280
推荐阅读
相关标签
  

闽ICP备14008679号