当前位置: 首页 > news >正文

游戏开服表网站开发wordpress标题截取

游戏开服表网站开发,wordpress标题截取,免费企业在线,静态网页设计心得体会一.Yaml文件详解 1.Yaml文件格式 #xff08;1#xff09;Kubernetes 支持 YAML 和 JSON 格式管理资源对象 #xff08;2#xff09;JSON 格式#xff1a;主要用于 api 接口之间消息的传递 #xff08;3#xff09;YAML 格式#xff1a;用于配置和管理#xff0c;…一.Yaml文件详解 1.Yaml文件格式 1Kubernetes 支持 YAML 和 JSON 格式管理资源对象 2JSON 格式主要用于 api 接口之间消息的传递 3YAML 格式用于配置和管理YAML 是一种简洁的非标记性语言内容格式人性化较易读 2.YAML 语法格式 1大小写敏感 2使用缩进表示层级关系 3不支持Tab键制表符缩进只使用空格缩进 4缩进的空格数目不重要只要相同层级的元素左侧对齐即可通常开头缩进两个空格 5符号字符后缩进一个空格如冒号逗号短横杆-等 6“---”表示YAML格式一个文件的开始用于分隔文件间 7“#”表示注释 二.Yaml文件编写及相关概念 1.查看 api 资源版本标签 kubectl api-versions [rootk8s-master-136 ~]# kubectl api-versions admissionregistration.k8s.io/v1 admissionregistration.k8s.io/v1beta1 apiextensions.k8s.io/v1 apiextensions.k8s.io/v1beta1 apiregistration.k8s.io/v1 apiregistration.k8s.io/v1beta1 apps/v1 authentication.k8s.io/v1 authentication.k8s.io/v1beta1 authorization.k8s.io/v1 authorization.k8s.io/v1beta1 autoscaling/v1 autoscaling/v2beta1 autoscaling/v2beta2 batch/v1 batch/v1beta1 certificates.k8s.io/v1 certificates.k8s.io/v1beta1 coordination.k8s.io/v1 coordination.k8s.io/v1beta1 crd.projectcalico.org/v1 discovery.k8s.io/v1 discovery.k8s.io/v1beta1 events.k8s.io/v1 events.k8s.io/v1beta1 extensions/v1beta1 flowcontrol.apiserver.k8s.io/v1beta1 networking.k8s.io/v1 networking.k8s.io/v1beta1 node.k8s.io/v1 node.k8s.io/v1beta1 policy/v1 policy/v1beta1 rbac.authorization.k8s.io/v1 rbac.authorization.k8s.io/v1beta1 scheduling.k8s.io/v1 scheduling.k8s.io/v1beta1 storage.k8s.io/v1 storage.k8s.io/v1beta1 v1 2.yaml编写案例 #查看deployment的版本定义 kubectl explain deployment [rootk8s-master-136 ~]# kubectl explain deployment KIND: Deployment VERSION: apps/v1DESCRIPTION:Deployment enables declarative updates for Pods and ReplicaSets.FIELDS:apiVersion stringAPIVersion defines the versioned schema of this representation of anobject. Servers should convert recognized schemas to the latest internalvalue, and may reject unrecognized values. More info:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resourceskind stringKind is a string value representing the REST resource this objectrepresents. Servers may infer this from the endpoint the client submitsrequests to. Cannot be updated. In CamelCase. More info:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kindsmetadata ObjectStandard object metadata.spec ObjectSpecification of the desired behavior of the Deployment.status ObjectMost recently observed status of the Deployment. #查看api的版本 kubectl explain deployment.apiVersion[rootk8s-master-136 ~]# kubectl explain deployment.apiVersion KIND: Deployment VERSION: apps/v1FIELD: apiVersion stringDESCRIPTION:APIVersion defines the versioned schema of this representation of anobject. Servers should convert recognized schemas to the latest internalvalue, and may reject unrecognized values. More info:https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources #查看元数据信息 kubectl explain deployment.apiVersion #定义标签介绍 kubectl explain deployment.spec.selector[rootk8s-master-136 ~]# kubectl explain deployment.spec.selector KIND: Deployment VERSION: apps/v1RESOURCE: selector ObjectDESCRIPTION:Label selector for pods. Existing ReplicaSets whose pods are selected bythis will be the ones affected by this deployment. It must match the podtemplates labels.A label selector is a label query over a set of resources. The result ofmatchLabels and matchExpressions are ANDed. An empty label selector matchesall objects. A null label selector matches no objects.FIELDS:matchExpressions []ObjectmatchExpressions is a list of label selector requirements. The requirementsare ANDed.matchLabels map[string]stringmatchLabels is a map of {key,value} pairs. A single {key,value} in thematchLabels map is equivalent to an element of matchExpressions, whose keyfield is key, the operator is In, and the values array contains onlyvalue. The requirements are ANDed.#对matchLabels标签介绍 kubectl explain deployment.spec.selector.matchLabels[rootk8s-master-136 ~]# kubectl explain deployment.spec.selector.matchLabels KIND: Deployment VERSION: apps/v1FIELD: matchLabels map[string]stringDESCRIPTION:matchLabels is a map of {key,value} pairs. A single {key,value} in thematchLabels map is equivalent to an element of matchExpressions, whose keyfield is key, the operator is In, and the values array contains onlyvalue. The requirements are ANDed. Deployment类型编写nginx服务 创建pod vim nginx-deployment.yamlapiVersion: apps/v1 #指定api版本标签 kind: Deployment #定义资源的类型/角色deployment为副本控制器此处资源类型可以是Deployment、Job、Ingress、Service等 metadata: #定义资源的元数据信息比如资源的名称、namespace、标签等信息name: nginx-deployment #定义资源的名称在同一个namespace空间中必须是唯一的namespace default #默认就是default可以不用写labels: #定义Deployment资源标签app: nginx spec: #定义deployment资源需要的参数属性诸如是否在容器失败时重新启动容器的属性replicas: 3 #定义副本数量selector: #定义标签选择器matchLabels: #定义匹配标签app: nginx #需与 .spec.template.metadata.labels 定义的标签保持一致template: #定义业务模板如果有多个副本所有副本的属性会按照模板的相关配置进行匹配metadata:labels: #定义Pod副本将使用的标签需与 .spec.selector.matchLabels 定义的标签保持一致app: nginxspec:containers: #定义容器属性- name: nginx #定义一个容器名一个 - name: 定义一个容器image: nginx:1.15.4 #定义容器使用的镜像以及版本ports:- containerPort: 80 #定义容器的对外的端口 #创建资源对象 kubectl create -f nginx-deployment.yaml 或 kubectl apply -f nginx-deployment.yaml #查看创建的资源对象创建需等待running kubectl get pod 容器如果想对外提供访问需创建service 发布 #创建service服务对外提供访问并测试 vim nginx-service.yamlapiVersion: v1 kind: Service metadata:name: nginx-servicelabels:app: nginx spec:selector:app: nginxtype: NodePort ports:- port: 80targetPort: 80 #创建资源对象 kubectl create -f nginx-service.yaml 或 kubectl apply -f nginx-service.yaml #查看创建的service kubectl get svc k8s集群中的port介绍 详解k8s中的port ●port port 是 k8s 集群内部访问service的端口即通过 clusterIP: port 可以从 Pod 所在的 Node 上访问到 service ●nodePort nodePort 是外部访问 k8s 集群中 service 的端口通过 nodeIP: nodePort 可以从外部访问到某个 service。 ●targetPort targetPort 是 Pod 的端口从 port 或 nodePort 来的流量经过 kube-proxy 反向代理负载均衡转发到后端 Pod 的 targetPort 上最后进入容器。 ●containerPort containerPort 是 Pod 内部容器的端口targetPort 映射到 containerPort。
http://www.zqtcl.cn/news/767332/

相关文章:

  • 网站模板带有sql后台下载企业网站建设平台的功能
  • 网站推广的实际案例电子商务网站建设的要求
  • 永平建设有限公司网站2023一般纳税人企业所得税怎么算
  • 创业网站推广怎么做简单的网站首页
  • 外贸网站模板 外贸网站制作如何推广宣传一个品牌
  • 中企动力企业邮箱 手机邮箱河南网站建设优化推广
  • 广州seo网站多少钱王野天津音乐广播电台图片
  • 东莞网站制作十强怎么做一个链接网站
  • 深圳网站设计 建设首选wordpress 获取父页面
  • 大兴企业网站建设公司wordpress谷歌字体优化
  • 哈尔滨建设银行网站网站建设运营服务商
  • 重庆本地建站企业网站建设流程及费用
  • 网站建设需要用到那些语言简述网站建设和推广评价指标
  • 17网站一起做 佛山印刷做网站网上接单
  • 网站建设步骤 优帮云网站建设首选定制开发
  • 专门做家居的网站国内企业网站设计
  • 做网站时怎么取消鼠标悬停性价比最高网站建设
  • 三网合一网站模板网站上内容列表怎么做
  • 鲜花商城网站建设西安房产网站大全
  • 家庭宽带做网站空间一个数据库可以做几个网站
  • 环境设计公司排名搜索引擎seo是什么意思
  • 北京网站建设策划排名长春市建设集团股份有限公司
  • 网站建设项目怎么跟进客户安阳哪里有做网站的
  • 重庆定制网站建设公司郑州网站模板
  • 网站 建设 领导小组wordpress下拉 友情链接
  • 做网站用php广州最新新闻
  • 福州市住房和城乡建设局网站18款禁用观看黄入口
  • 西安网站制作工作室网页怎么做成网站
  • 做h5网站公司百度知道网页入口
  • 网站建设 中企动力上海在线设计房屋效果图