Kubernetes YAML 编写 讲解

简介: Kubernetes YAML 编写 讲解

Kubernetes YAML 编写 讲解

网络异常,图片无法展示
|

YAML 是一种非常简洁/强大/专门用来写配置文件的语言!

YAML 全称是 ”YAML Ain’t a Markup Language” 的递归缩写,该语言的设计参考了 JSON / XML 和 SDL 等语言,强调以数据为中心,简洁易读,编写简单。

YAML 语法特性

学过编程的人理解起来应该非常容易

语法特点

  • 大小写敏感
  • 通过缩进表示层级关系
  • 禁止使用 tab 缩进,只能使用空格键
  • 缩进的空格数目不重要,只要相同层级左对齐
  • 使用 #表示注释
# yamllanguages:    - Ruby    - Perl    - Pythonwebsites:    YAML: yaml.org    Ruby: ruby-lang.org    Python: python.org    Perl: use.perl.org
# Json{    languages: [        'Ruby',        'Perl',        'Python'    ],    websites: {        YAML: 'yaml.org',        Ruby: 'ruby-lang.org',        Python: 'python.org',        Perl: 'use.perl.org'    }}

数据结构

  • 对象: 键值对的字典
  • 数组: 一组按次序排列的列表
  • 纯量: 单个的且不可再分的值
# 纯量hello
# 数组- Cat- Dog- Goldfish
# 对象animal: pets

引号区别

  • 单引号(''): 特殊字符作为普通字符串处理
  • 双引号(""): 特殊字符作为本身想表示的意思
# 单引号name: 'Hi,\nTom'
# 双引号name: "Hi,\nTom"

内置类型列表

# YAML允许使用个感叹号(!)强制转换数据类型# 单叹号通常是自定义类型,双叹号是内置类型money: !!str123
date: !Booleantrue


YAML 中的纯量

纯量是最基本的且不可再分的值

字符串

# 不适用引号name: Tom
# 使用单引号name: 'Tom'
# 使用双引号name: "Tom"

布尔值

debug: truedebug: false

数字

12       # 十进制整数014      # 八进制整数0xC      #十六进制整数13.4     #浮点数1.2e+34  #指数.inf     #无穷大

Null

date: ~date: null

时间

# 使用iso-8601标准表示日期date: 2018-01-01t16:59:43.10-05:00

YAML 特殊类型


日常使用中基本不会用到的类型

文本块

# 注意“|”与文本之间须另起一行# 使用|标注的文本内容缩进表示的块,可以保留块中已有的回车换行value: |  hello  world!
# 输出结果# hello 换行 world!!


# +表示保留文字块末尾的换行# -表示删除字符串末尾的换行value: |hello
value: |-hello
value: |+hello
# 输出结果# hello\n hello hello\n\n


# 注意“>”与文本之间的空格# 使用>标注的文本内容缩进表示的块,将块中回车替换为空格最终连接成一行value: > helloworld!
# 输出结果# hello 空格 world!

锚点与引用

# 复制代码注意*引用部分不能追加内容# 使用&定义数据锚点,即要复制的数据# 使用*引用锚点数据,即数据的复制目的地name: &a yamlbook: *abooks:   - java   - *a   - python
# 输出结果book: yamlbooks:[java, yaml, python]

YAML 实例说明

光说不练假把式 => JS-Yaml 官网实例地址 https://nodeca.github.io/js-yaml


# Collection Types #############################################################################################################################################
# http://yaml.org/type/map.html -----------------------------------------------#
map:  # Unordered set of key: value pairs.  Block style: !!map    Clark: Evans    Ingy: döt Net    Oren: Ben-Kiki  Flow style: !!map { Clark: Evans, Ingy: döt Net, Oren: Ben-Kiki }
# http://yaml.org/type/omap.html ----------------------------------------------#
omap:  # Explicitly typed ordered map (dictionary).  Bestiary: !!omap    - aardvark: African pig-like ant eater. Ugly.    - anteater: South-American ant eater. Two species.    - anaconda: South-American constrictor snake. Scaly.    # Etc.  # Flow style  Numbers: !!omap [one: 1, two: 2, three: 3]
# http://yaml.org/type/pairs.html ---------------------------------------------#
pairs:  # Explicitly typed pairs.  Block tasks: !!pairs    - meeting: with team.    - meeting: with boss.    - break: lunch.    - meeting: with client.  Flow tasks: !!pairs [meeting: with team, meeting: with boss]
# http://yaml.org/type/set.html -----------------------------------------------#
set:  # Explicitly typed set.  baseball players: !!set    ? Mark McGwire    ? Sammy Sosa    ? Ken Griffey  # Flow style  baseball teams: !!set { Boston Red Sox, Detroit Tigers, New York Yankees }
# http://yaml.org/type/seq.html -----------------------------------------------#
seq:  # Ordered sequence of nodes  Block style: !!seq    - Mercury # Rotates - no light/dark sides.    - Venus # Deadliest. Aptly named.    - Earth # Mostly dirt.    - Mars # Seems empty.    - Jupiter # The king.    - Saturn # Pretty.    - Uranus # Where the sun hardly shines.    - Neptune # Boring. No rings.    - Pluto # You call this a planet?  Flow style: !!seq [      Mercury,      Venus,      Earth,      Mars, # Rocks      Jupiter,      Saturn,      Uranus,      Neptune, # Gas      Pluto,    ] # Overrated
# Scalar Types #################################################################################################################################################
# http://yaml.org/type/bool.html ----------------------------------------------#
bool:  - true  - True  - TRUE  - false  - False  - FALSE
# http://yaml.org/type/float.html ---------------------------------------------#
float:  canonical: 6.8523015e+5  exponentioal: 685.230_15e+03  fixed: 685_230.15  sexagesimal: 190:20:30.15  negative infinity: -.inf  not a number: .NaN
# http://yaml.org/type/int.html -----------------------------------------------#
int:  canonical: 685230  decimal: +685_230  octal: 02472256  hexadecimal: 0x_0A_74_AE  binary: 0b1010_0111_0100_1010_1110  sexagesimal: 190:20:30
# http://yaml.org/type/merge.html ---------------------------------------------#
merge:  - &CENTER { x: 1, y: 2 }  - &LEFT { x: 0, y: 2 }  - &BIG { r: 10 }  - &SMALL { r: 1 }
  # All the following maps are equal:
  - # Explicit keys    x: 1    y: 2    r: 10    label: nothing
  - # Merge one map    <<: *CENTER    r: 10    label: center
  - # Merge multiple maps    <<: [*CENTER, *BIG]    label: center/big
  - # Override    <<: [*BIG, *LEFT, *SMALL]    x: 1    label: big/left/small
# http://yaml.org/type/null.html ----------------------------------------------#
null:  # This mapping has four keys,  # one has a value.  empty:  canonical: ~  english: null  ~: null key  # This sequence has five  # entries, two have values.  sparse:    - ~    - 2nd entry    -    - 4th entry    - Null
# http://yaml.org/type/str.html -----------------------------------------------#
string: abcd
# http://yaml.org/type/timestamp.html -----------------------------------------#
timestamp:  canonical: 2001-12-15T02:59:43.1Z  valid iso8601: 2001-12-14t21:59:43.10-05:00  space separated: 2001-12-14 21:59:43.10 -5  no time zone (Z): 2001-12-15 2:59:43.10  date (00:00:00Z): 2002-12-14
# JavaScript Specific Types ####################################################################################################################################
# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/RegExp
regexp:  simple: !!js/regexp foobar  modifiers: !!js/regexp /foobar/mi
# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/undefined
undefined: !!js/undefined ~
# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function
function: !!js/function >  function foobar() {    return 'Wow! JS-YAML Rocks!';  }
# Custom types #################################################################################################################################################
# JS-YAML allows you to specify a custom YAML types for your structures.# This is a simple example of custom constructor defined in `js/demo.js` for# custom `!sexy` type:## var SexyYamlType = new jsyaml.Type('!sexy', {#   kind: 'sequence',#   construct: function (data) {#     return data.map(function (string) { return 'sexy ' + string; });#   }# });## var SEXY_SCHEMA = jsyaml.Schema.create([ SexyYamlType ]);## result = jsyaml.load(yourData, { schema: SEXY_SCHEMA });
foobar: !sexy  - bunny  - chocolate



相关实践学习
通过Ingress进行灰度发布
本场景您将运行一个简单的应用,部署一个新的应用用于新的发布,并通过Ingress能力实现灰度发布。
容器应用与集群管理
欢迎来到《容器应用与集群管理》课程,本课程是“云原生容器Clouder认证“系列中的第二阶段。课程将向您介绍与容器集群相关的概念和技术,这些概念和技术可以帮助您了解阿里云容器服务ACK/ACK Serverless的使用。同时,本课程也会向您介绍可以采取的工具、方法和可操作步骤,以帮助您了解如何基于容器服务ACK Serverless构建和管理企业级应用。 学习完本课程后,您将能够: 掌握容器集群、容器编排的基本概念 掌握Kubernetes的基础概念及核心思想 掌握阿里云容器服务ACK/ACK Serverless概念及使用方法 基于容器服务ACK Serverless搭建和管理企业级网站应用
相关文章
|
4月前
|
JSON Kubernetes API
深入理解Kubernetes配置:编写高效的YAML文件
深入理解Kubernetes配置:编写高效的YAML文件
|
3月前
|
Kubernetes 应用服务中间件 nginx
k8s学习--YAML资源清单文件托管服务nginx
k8s学习--YAML资源清单文件托管服务nginx
k8s学习--YAML资源清单文件托管服务nginx
|
3月前
|
Kubernetes Cloud Native 流计算
Flink-12 Flink Java 3分钟上手 Kubernetes云原生下的Flink集群 Rancher Stateful Set yaml详细 扩容缩容部署 Docker容器编排
Flink-12 Flink Java 3分钟上手 Kubernetes云原生下的Flink集群 Rancher Stateful Set yaml详细 扩容缩容部署 Docker容器编排
98 3
|
3月前
|
Kubernetes Docker Perl
k8s常见故障--yaml文件检查没有问题 pod起不来(一直处于创建中)
k8s常见故障--yaml文件检查没有问题 pod起不来(一直处于创建中)
131 1
|
5月前
|
JSON Kubernetes 数据格式
k8s集群yaml文件方式迁移
k8s集群yaml文件方式迁移
|
5月前
|
Kubernetes API 容器
在K8S中,deployment的yaml文件如何编写呢?
在K8S中,deployment的yaml文件如何编写呢?
|
5月前
|
Kubernetes 应用服务中间件 nginx
在K8S中,deploy的yaml如何编写?
在K8S中,deploy的yaml如何编写?
|
5月前
|
Kubernetes API 容器
Kubernetes(K8S) yaml 介绍
Kubernetes(K8S) yaml 介绍
44 0
|
Kubernetes 应用服务中间件 数据格式
使用YAML创建一个 Kubernetes Depolyment
在之前的文章中,我们已经提到过如何使用Kubernetes去创建资源。到目前为止,我们一直仅仅通过命令行去执行,但是这里有一个更加简单有效的方式去创建资源:通过使用YAML创建一个配置文件。在这篇文章,我们将会关注YAML的工作方式以及如何使用YAML创建一个Kubernetes Pod,然后使用Kubernetes创建一个Depolyment。
2060 0
|
7月前
|
存储 运维 Serverless
函数计算产品使用问题之在YAML文件中配置了环境变量,但在PHP代码中无法读取到这些环境变量,是什么原因
函数计算产品作为一种事件驱动的全托管计算服务,让用户能够专注于业务逻辑的编写,而无需关心底层服务器的管理与运维。你可以有效地利用函数计算产品来支撑各类应用场景,从简单的数据处理到复杂的业务逻辑,实现快速、高效、低成本的云上部署与运维。以下是一些关于使用函数计算产品的合集和要点,帮助你更好地理解和应用这一服务。

热门文章

最新文章