在Google Cloud platform上创建Kubernetes cluster并使用

登录Google Cloud platform,创建一个新的Kubernetes Cluster:

该集群的node个数选择为1,从Machine type下拉列表里选择CPU配置:

展开Advanced Edit,选择该Kubernetes集群安装所在的操作系统的镜像类型:

选择ubuntu,磁盘类型选择SSD:

点击Create,得到一个Kubernetes cluster:

The images for these containers will be pulled from the public Docker repository and store. The containers will be connected to each other and have some ports exposed to the internet.

Kubernetes集群创建好之后,点击Connect,

即可在Google Cloud Shell里用kubectl命令行访问这个Kubernetes cluster:

创建一个新的secret:

kubectl create secret docker-registry docker-secret --docker-server=https://index.docker.io/v1/ --docker-username=jerry password=jerrywang [email protected]

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

原文地址:https://www.cnblogs.com/sap-jerry/p/12444201.html

时间: 2024-07-30 18:22:55

在Google Cloud platform上创建Kubernetes cluster并使用的相关文章

在Google Cloud platform上的Kubernetes集群部署HANA Express

在Google Cloud platform的Kubernetes cluster上,新建一个hxe.yaml文件: 将如下内容拷贝进yaml文件: kind: ConfigMap apiVersion: v1 metadata: creationTimestamp: 2018-01-18T19:14:38Z name: hxe-pass data: password.json: |+ {"master_password" : "HXEHana1"} --- kin

SAP Cloud Platform上Destination属性为odata_gen的具体用途

今天工作发现,SAP Cloud Platform上创建Destination维护的WebIDEUsage属性很有讲究: 帮助文档:https://help.sap.com/viewer/825270ffffe74d9f988a0f0066ad59f0/CF/en-US/5c3debce758a470e8342161457fd6f70.html 这个属性的枚举值: 看个例子. 我维护的是odata_gen: 根据标准文档描述,拥有odata_abap属性的Destination指向的是一个gat

SAP Cloud Platform 上CPI的初始化工作

SAP Cloud Platform上的CPI tenant,如果没有正确的初始化,试图使用时会遇到如下错误消息: Insufficient scope for this resourceinsufficient_scope 具体的配置方法: (1) Security->Role Collections: 点击New Role Collection: 创建新的role,取名Tenant_Administrator: 进入这个空的Role collection,创建具体的role: Applica

Google Cloud VM上在线扩硬盘

Google Cloud VM是可以在线扩展Disk的大小的. 一.创建VM和磁盘 比如我有一台VM,附加了一块Disk,大小是120GB.如下图: 在VM中进行格式化: mkfs.ext4 -F /dev/sdb 这里没有进行分区,直接对裸盘进行了ext4的格式化. 查看相关信息: 可以看到其大小是120GB. 二.调整磁盘大小 两种方法调调整磁盘大小,通过gcloud命令行或者在图形化界面的console里. 1. gloud命令行: gcloud compute disks resize

google cloud storage products

https://cloud.google.com/products/storage/ BigTable Cloud Bigtable 是 Google 面向大数据领域的 NoSQL 数据库服务.它也是为 Google 搜索.Analytics(分析).地图和 Gmail 等众多核心 Google 服务提供支撑的数据库. https://cloud.google.com/bigtable/docs/?_ga=2.253537231.-792515609.1538018833 Cloud Bigta

Google Cloud服务免费申请试用以及使用教程

简介 Google Cloud Platform lets you build and host applications and websites, store data, and analyze data on Google's scalable infrastructure. 谷歌云平台可让您构建和主机应用程序和网站,存储数据,并分析对谷歌的可扩展基础架构的数据. 官网 https://cloud.google.com 注意 国内银联信用卡/全球付无法注册. 亲测 VISA 和 腾讯运通卡

Kickstart Terraform on GCP with Google Cloud Shell

OCT 24 2018?RILEY KARSON Riley Karson is a software engineer at Google, where he works as a contributor to the Google Cloud Platform provider for Terraform. Outside of work, Riley loves board gaming and hiking. HashiCorp Terraform?is a powerful open-

【腾讯云的1001种玩法】在腾讯云上创建您的SQL Cluster(5)

版权声明:本文由李斯达 原创文章,转载请注明出处: 文章原文链接:https://www.qcloud.com/community/article/97264001482830465 来源:腾云阁 https://www.qcloud.com/community 导语 终于到了本系列最后一篇,在上一篇中,我们准备好了各种资源,包括搭建SQL Cluster群集的底层,在发布了前面四篇后我收到了大量反馈,现在集中回答下 终于到了本系列最后一篇,在上一篇中,我们准备好了各种资源,包括搭建SQL Cl

如何在SAP Cloud Platform ABAP编程环境里创建一个employee

用ABAP Development Tool登录SAP Cloud Platform ABAP编程环境后,对ABAP项目点击右键,选择属性,从而找到该环境的web访问的url: https://325df18f-0b6b-4d85-a127-ee6ad7437a7c.abap.eu10.hana.ondemand.com 登录web界面,实际上是一个Fiori UI,点击tile Maintain employee: 新建一个employee: 维护email地址: 给其维护业务角色: 要获取更