云原生应用管理:原理与实践
上QQ阅读APP看书,第一时间看更新

3.7 values.yaml

values.yaml对于用户来说是整个文件中最重要的文件,其中包含了所有可配置的信息。


## Bitnami WordPress image version
## ref: https:// hub.docker.com/r/bitnami/wordpress/tags/
##
image:
  registry: docker.io
  repository: bitnami/wordpress
  tag: 5.2.1-debian-9-r21
  ## Specify a imagePullPolicy
  ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
  ## ref: http://Kubernetes.io/docs/user-guide/images/#pre-pulling-images
  ##
  pullPolicy: IfNotPresent
  ## Optionally specify an array of imagePullSecrets.
  ## Secrets must be manually created in the namespace.
  ## ref: https:// Kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
  ##

由此可见,社区编写的values是非常规范的,基本告知了每个字段的意义,并且在附录中写明了每个字段的介绍性信息和参考链接,有兴趣的读者可以自己下载阅读。