From 8a0b4d4f67cd2ee8343ba45ffd6b93d4f8fd65be Mon Sep 17 00:00:00 2001 From: liujiaxing123666 <2316860375@qq.com> Date: Wed, 15 Mar 2023 15:11:45 +0800 Subject: [PATCH 1/2] paddleflow-server Dockerfile base paddleflow/ubuntu:latest (#1127) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit paddleflow-deployment.yaml split crd (#1116) 【deploy】volcano-deploy.yaml root-equota subsequence (#1115) * volcano-deploy.yaml root-equota subsequence * volcano-deploy.yaml root-equota subsequence * volcano-deploy.yaml root-equota subsequence paddleflow dockerfile Integrated glusterfs and pfs-csi-plugin resources (#1112) Test op (#1109) * paddleflow dockerfile Integrated glusterfs - n paddleflow * paddleflow dockerfile Integrated glusterfs - n paddleflow Test op (#1106) * paddleflow-deployment.yaml 1.4.6 and alone,Add operation - n paddleflow * paddleflow-deployment.yaml 1.4.6 and alone,Add operation - n paddleflow * paddleflow-deployment.yaml 1.4.6 and alone,Add operation - n paddleflow * paddleflow-deployment.yaml 1.4.6 and alone,Add operation - n paddleflow Add files via upload (#1089) * paddleflow-deployment.yaml 1.4.6,Add operation - n paddleflow * Add files via upload * paddleflow-deployment.yaml 1.4.6,Add operation - n paddleflow * paddleflow-deployment.yaml 1.4.6,Add operation - n paddleflow paddleflow-deployment.yaml 1.4.5.2,Add operation - n paddleflow (#1067) --- .../deployment/install_paddleflow_on_k3s.md | 20 +- .../deployment/install_paddleflow_on_k8s.md | 43 +- installer/crd.yaml | 8616 ++++++++++++ .../deploys/paddleflow-csi-plugin/README.md | 12 +- ...leflow-csi-plugin-deploy-before-v1-18.yaml | 815 +- .../paddleflow-csi-plugin-deploy-v1-13.yaml | 839 +- .../paddleflow-csi-plugin-deploy.yaml | 809 +- installer/deploys/paddleflow-server/README.md | 8 +- .../paddleflow-server-deploy.yaml | 1004 +- installer/deploys/volcano/README.md | 3 +- installer/deploys/volcano/crd.yaml | 8616 ++++++++++++ .../deploys/volcano/pf-volcano-deploy.yaml | 8875 ++----------- installer/dockerfile/base/README.md | 4 + installer/dockerfile/base/base.gluster | 5 +- .../paddleflow-csi-plugin/Dockerfile.gluster | 2 +- .../dockerfile/paddleflow-server/Dockerfile | 2 +- .../paddleflow-server/Dockerfile-gluster | 6 + .../paddleflow-deployment-before-v1-18.yaml | 10946 +++------------ installer/paddleflow-deployment-v1-13.yaml | 10970 +++------------- installer/paddleflow-deployment.yaml | 257 +- 20 files changed, 24638 insertions(+), 27214 deletions(-) create mode 100644 installer/crd.yaml create mode 100644 installer/deploys/volcano/crd.yaml create mode 100644 installer/dockerfile/paddleflow-server/Dockerfile-gluster diff --git a/docs/zh_cn/deployment/install_paddleflow_on_k3s.md b/docs/zh_cn/deployment/install_paddleflow_on_k3s.md index 5ecf59490..590841ba8 100644 --- a/docs/zh_cn/deployment/install_paddleflow_on_k3s.md +++ b/docs/zh_cn/deployment/install_paddleflow_on_k3s.md @@ -9,9 +9,9 @@ touch /mnt/paddleflow.db && chmod 666 /mnt/paddleflow.db ```shell # Kubernetes version >= v1.18 -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/paddleflow-deployment.yaml +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/paddleflow-deployment.yaml -n paddleflow # Kubernetes version < v1.18 -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/paddleflow-deployment-before-v1-18.yaml +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/paddleflow-deployment-before-v1-18.yaml -n paddleflow # For x86: todo # For arm64: todo ``` @@ -25,7 +25,7 @@ kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/rele touch /mnt/paddleflow.db && chmod 666 /mnt/paddleflow.db # 创建基于sqllite的paddleflow-server # For x86: -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml -n paddleflow # For arm64: todo ``` @@ -38,13 +38,13 @@ export DB_PORT=3306 export DB_USER=paddleflow export DB_PW=paddleflow export DB_DATABASE=paddleflow -wget https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/database/paddleflow.sql -bash < <(curl -s https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/database/execute.sh) +wget https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/database/paddleflow.sql +bash < <(curl -s https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/database/execute.sh) # 创建基于mysql的paddleflow-server # For x86: -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml | \ +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml | \ sed -e "s/sqlite/${DB_DRIVER}/g" -e "s/host: 127.0.0.1/host: ${DB_HOST}/g" -e "s/3306/${DB_PORT}/g" -e "s/user: paddleflow/user: ${DB_USER}/g" -e "s/password: paddleflow/password: ${DB_PW}/g" -e "s/database: paddleflow/database: ${DB_DATABASE}/g" \ -| kubectl apply -f - +| kubectl apply -f - -n paddleflow # For arm64: todo ``` @@ -54,9 +54,9 @@ sed -e "s/sqlite/${DB_DRIVER}/g" -e "s/host: 127.0.0.1/host: ${DB_HOST}/g" -e ```shell # Kubernetes version >= v1.18 -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml -n paddleflow # Kubernetes v1.13= v1.18 -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/paddleflow-deployment.yaml -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/crd.yaml -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/paddleflow-deployment.yaml -n paddleflow # Kubernetes version < v1.18 -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/paddleflow-deployment-before-v1-18.yaml -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/crd.yaml -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/paddleflow-deployment-before-v1-18.yaml -n paddleflow # For x86: todo # For arm64: todo ``` @@ -30,9 +32,11 @@ kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/rele **如果前面检查命令返回的结果不为空**,则代表 kubelet 的 root-dir 路径不是默认值,因此需要在 CSI Driver 的部署文件中更新 `kubeletDir` 路径并部署: ```shell # Kubernetes version >= v1.18 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/paddleflow-deployment.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/crd.yaml -n paddleflow +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/paddleflow-deployment.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow # Kubernetes version < v1.18 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/paddleflow-deployment-before-v1-18.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/crd.yaml -n paddleflow +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/paddleflow-deployment-before-v1-18.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow # For x86: todo # For arm64: todo ``` @@ -41,7 +45,9 @@ curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14 ### 2.3 自定义安装 -#### 2.3.1 安装paddleflow-server +#### 2.3.1 安装前创建namespace +`kubectl create ns padddleflow` +#### 2.3.2 安装paddleflow-server `paddleflow-server`支持多种数据库(`sqlite`,`mysql`),其中`sqlite`仅用于快速部署和体验功能,不适合用于生产环境。 - **指定用sqllite安装paddleflow-server** ```shell @@ -49,7 +55,7 @@ curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14 touch /mnt/paddleflow.db && chmod 666 /mnt/paddleflow.db # 创建基于sqllite的paddleflow-server # For x86: -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml -n paddleflow # For arm64: todo ``` @@ -62,17 +68,17 @@ export DB_PORT=3306 export DB_USER=paddleflow export DB_PW=paddleflow export DB_DATABASE=paddleflow -wget https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/database/paddleflow.sql -bash < <(curl -s https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/database/execute.sh) +wget https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/database/paddleflow.sql +bash < <(curl -s https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/database/execute.sh) # 创建基于mysql的paddleflow-server # For x86: -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml | \ +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml | \ sed -e "s/sqlite/${DB_DRIVER}/g" -e "s/host: 127.0.0.1/host: ${DB_HOST}/g" -e "s/3306/${DB_PORT}/g" -e "s/user: paddleflow/user: ${DB_USER}/g" -e "s/password: paddleflow/password: ${DB_PW}/g" -e "s/database: paddleflow/database: ${DB_DATABASE}/g" \ | kubectl apply -f - # For arm64: todo ``` -#### 2.3.2 安装paddleflow-csi-plugin +#### 2.3.3 安装paddleflow-csi-plugin 1. 检查 `kubelet root-dir` 路径 @@ -87,9 +93,9 @@ ps -ef | grep kubelet | grep root-dir **如果前面检查命令返回的结果为空**,无需修改配置,可直接部署: ```shell # Kubernetes version >= v1.18 -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml -n paddleflow +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml -n paddleflow # Kubernetes v1.13= v1.18 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow # Kubernetes version < v1.18 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow # 为了在kubernetes == v1.13的集群中部署scsi插件,kubernetes集群需要满足以下配置。 # kube-apiserver启动参数: --feature-gates=CSIDriverRegistry=true @@ -115,15 +121,16 @@ curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14 # kubelet启动参数 --feature-gates=CSIDriverRegistry=true # 1.13环境中的csi安装命令 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - -n paddleflow ``` > **注意**: 请将上述命令中 `{{KUBELET_DIR}}` 替换成 kubelet 当前的根目录路径。 -#### 2.3.3 安装volcano +#### 2.3.4 安装volcano ```shell # For x86_64: -kubectl apply -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/volcano/pf-volcano-deploy.yaml -n paddleflow +kubectl apply -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/volcano/crd.yaml -n paddleflow +kubectl apply -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/volcano/pf-volcano-deploy.yaml -n paddleflow # For arm64: todo diff --git a/installer/crd.yaml b/installer/crd.yaml new file mode 100644 index 000000000..6cef55ab8 --- /dev/null +++ b/installer/crd.yaml @@ -0,0 +1,8616 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: commands.bus.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: bus.volcano.sh + names: + kind: Command + plural: commands + listKind: CommandList + singular: command + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + action: + type: string + description: >- + Action defines the action that will be took to the target + object. + reason: + type: string + description: 'Unique, one-word, CamelCase reason for this command.' + target: + type: object + required: + - apiVersion + - kind + - name + - uid + properties: + uid: + type: string + description: >- + UID of the referent. More info: + http://kubernetes.io/docs/user-guide/identifiers#uids + kind: + type: string + description: >- + Kind of the referent. More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + name: + type: string + description: >- + Name of the referent. More info: + http://kubernetes.io/docs/user-guide/identifiers#names + apiVersion: + type: string + description: API version of the referent. + controller: + type: boolean + description: 'If true, this reference points to the managing controller.' + blockOwnerDeletion: + type: boolean + description: >- + If true, AND if the owner has the "foregroundDeletion" + finalizer, then the owner cannot be deleted from the + key-value store until this reference is removed. Defaults to + false. To set this field, a user needs "delete" permission + of the owner, otherwise 422 (Unprocessable Entity) will be + returned. + description: TargetObject defines the target object of this command. + message: + type: string + description: Human-readable message indicating details of this command. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Command defines command structure. + served: true + storage: true + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: elasticresourcequotas.scheduling.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: scheduling.volcano.sh + names: + kind: ElasticResourceQuota + plural: elasticresourcequotas + listKind: ElasticResourceQuotaList + singular: elasticresourcequota + shortNames: + - equota + - equota-v1beta1 + scope: Cluster + versions: + - name: v1beta1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + max: + type: object + description: Max is the upper bound of elastic resource quota + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + min: + type: object + description: Min is the lower bound of elastic resource quota + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + namespace: + type: string + description: >- + namespace defines elastic resource quota belongs to one + namespace + reclaimable: + type: boolean + description: >- + Reclaimable indicate whether the elastic quota can be + reclaimed by other elastic resource quota + hardwareTypes: + type: array + items: + type: string + description: >- + HardwareTypes defines hardware types of elastic resource + quota + description: >- + Specification of the desired behavior of the + ElasticResourceQuota. More info: + https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + status: + type: object + properties: + used: + type: object + description: Used resource of elastic resource quota + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + isLeaf: + type: boolean + description: IsLeaf defines whether elastic resource quota is leaf or not + queueName: + type: string + description: QueueName indicate bound queue + description: The status of ElasticResourceQuota. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Elastic Resource Quota + served: true + storage: true + subresources: + status: {} + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: jobs.batch.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: batch.volcano.sh + names: + kind: Job + plural: jobs + listKind: JobList + singular: job + shortNames: + - vcjob + - vj + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + queue: + type: string + description: >- + Specifies the queue that will be used in the scheduler, + "default" queue is used this leaves empty. + tasks: + type: array + items: + type: object + properties: + name: + type: string + description: Name specifies the name of tasks + maxRetry: + type: integer + format: int32 + description: >- + Specifies the maximum number of retries before marking + this Task failed. Defaults to 3. + policies: + type: array + items: + type: object + properties: + event: + type: string + description: >- + The Event recorded by scheduler; the controller + takes actions according to this Event. + action: + type: string + description: >- + The action that will be taken to the PodGroup + according to Event. One of "Restart", "None". + Default to None. + events: + type: array + items: + type: string + description: >- + Event represent the phase of Job, e.g. + pod-failed. + description: >- + The Events recorded by scheduler; the controller + takes actions according to this Events. + timeout: + type: string + description: >- + Timeout is the grace period for controller to + take actions. Default to nil (take action + immediately). + exitCode: + type: integer + format: int32 + description: >- + The exit code of the pod container, controller + will take action according to this code. Note: + only one of `Event` or `ExitCode` can be + specified. + description: >- + LifecyclePolicy specifies the lifecycle and error + handling of task and job. + description: Specifies the lifecycle of task + replicas: + type: integer + format: int32 + description: >- + Replicas specifies the replicas of this TaskSpec in + Job + template: + type: object + properties: + spec: + type: object + required: + - containers + properties: + hostIPC: + type: boolean + description: >- + Use the host's ipc namespace. Optional: + Default to false. + hostPID: + type: boolean + description: >- + Use the host's pid namespace. Optional: + Default to false. + volumes: + type: array + items: + type: object + required: + - name + properties: + fc: + type: object + properties: + lun: + type: integer + format: int32 + description: 'Optional: FC target lun number' + wwids: + type: array + items: + type: string + description: >- + Optional: FC volume world wide + identifiers (wwids) Either wwids or + combination of targetWWNs and lun must + be set, but not both simultaneously. + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. TODO: how do we prevent + errors in the filesystem from + compromising the machine + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + targetWWNs: + type: array + items: + type: string + description: >- + Optional: FC target worldwide names + (WWNs) + description: >- + FC represents a Fibre Channel resource + that is attached to a kubelet's host + machine and then exposed to the pod. + csi: + type: object + required: + - driver + properties: + driver: + type: string + description: >- + Driver is the name of the CSI driver + that handles this volume. Consult with + your admin for the correct name as + registered in the cluster. + fsType: + type: string + description: >- + Filesystem type to mount. Ex. "ext4", + "xfs", "ntfs". If not provided, the + empty value is passed to the associated + CSI driver which will determine the + default filesystem to apply. + readOnly: + type: boolean + description: >- + Specifies a read-only configuration for + the volume. Defaults to false + (read/write). + volumeAttributes: + type: object + description: >- + VolumeAttributes stores driver-specific + properties that are passed to the CSI + driver. Consult your driver's + documentation for supported values. + additionalProperties: + type: string + nodePublishSecretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + NodePublishSecretRef is a reference to + the secret object containing sensitive + information to pass to the CSI driver to + complete the CSI NodePublishVolume and + NodeUnpublishVolume calls. This field is + optional, and may be empty if no secret + is required. If the secret object + contains more than one secret, all + secret references are passed. + description: >- + CSI (Container Storage Interface) + represents ephemeral storage that is + handled by certain external CSI drivers + (Beta feature). + nfs: + type: object + required: + - path + - server + properties: + path: + type: string + description: >- + Path that is exported by the NFS server. + More info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + server: + type: string + description: >- + Server is the hostname or IP address of + the NFS server. More info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + readOnly: + type: boolean + description: >- + ReadOnly here will force the NFS export + to be mounted with read-only + permissions. Defaults to false. More + info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + description: >- + NFS represents an NFS mount on the host + that shares a pod's lifetime More info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + rbd: + type: object + required: + - image + - monitors + properties: + pool: + type: string + description: >- + The rados pool name. Default is rbd. + More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + user: + type: string + description: >- + The rados user name. Default is admin. + More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + image: + type: string + description: >- + The rados image name. More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#rbd + TODO: how do we prevent errors in the + filesystem from compromising the machine + keyring: + type: string + description: >- + Keyring is the path to key ring for + RBDUser. Default is /etc/ceph/keyring. + More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + monitors: + type: array + items: + type: string + description: >- + A collection of Ceph monitors. More + info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + readOnly: + type: boolean + description: >- + ReadOnly here will force the ReadOnly + setting in VolumeMounts. Defaults to + false. More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + SecretRef is name of the authentication + secret for RBDUser. If provided + overrides keyring. Default is nil. More + info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + description: >- + RBD represents a Rados Block Device + mount on the host that shares a pod's + lifetime. More info: + https://examples.k8s.io/volumes/rbd/README.md + name: + type: string + description: >- + Volume's name. Must be a DNS_LABEL and + unique within the pod. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + iscsi: + type: object + required: + - iqn + - lun + - targetPortal + properties: + iqn: + type: string + description: Target iSCSI Qualified Name. + lun: + type: integer + format: int32 + description: iSCSI Target Lun number. + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#iscsi + TODO: how do we prevent errors in the + filesystem from compromising the machine + portals: + type: array + items: + type: string + description: >- + iSCSI Target Portal List. The portal is + either an IP or ip_addr:port if the port + is other than default (typically TCP + ports 860 and 3260). + readOnly: + type: boolean + description: >- + ReadOnly here will force the ReadOnly + setting in VolumeMounts. Defaults to + false. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + CHAP Secret for iSCSI target and + initiator authentication + targetPortal: + type: string + description: >- + iSCSI Target Portal. The Portal is + either an IP or ip_addr:port if the port + is other than default (typically TCP + ports 860 and 3260). + initiatorName: + type: string + description: >- + Custom iSCSI Initiator Name. If + initiatorName is specified with + iscsiInterface simultaneously, new iSCSI + interface : + will be created for the connection. + iscsiInterface: + type: string + description: >- + iSCSI Interface Name that uses an iSCSI + transport. Defaults to 'default' (tcp). + chapAuthSession: + type: boolean + description: >- + whether support iSCSI Session CHAP + authentication + chapAuthDiscovery: + type: boolean + description: >- + whether support iSCSI Discovery CHAP + authentication + description: >- + ISCSI represents an ISCSI Disk resource + that is attached to a kubelet's host + machine and then exposed to the pod. + More info: + https://examples.k8s.io/volumes/iscsi/README.md + cephfs: + type: object + required: + - monitors + properties: + path: + type: string + description: >- + Optional: Used as the mounted root, + rather than the full Ceph tree, default + is / + user: + type: string + description: >- + Optional: User is the rados user name, + default is admin More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + monitors: + type: array + items: + type: string + description: >- + Required: Monitors is a collection of + Ceph monitors More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + Optional: SecretRef is reference to the + authentication secret for User, default + is empty. More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + secretFile: + type: string + description: >- + Optional: SecretFile is the path to key + ring for User, default is + /etc/ceph/user.secret More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + description: >- + CephFS represents a Ceph FS mount on the + host that shares a pod's lifetime + cinder: + type: object + required: + - volumeID + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + volumeID: + type: string + description: >- + volume id used to identify the volume in + cinder. More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + Optional: points to a secret object + containing parameters used to connect to + OpenStack. + description: >- + Cinder represents a cinder volume + attached and mounted on kubelets host + machine. More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + secret: + type: object + properties: + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced Secret + will be projected into the volume as a + file whose name is the key and content + is the value. If specified, the listed + keys will be projected into the + specified paths, and unlisted keys will + not be present. If a key is specified + which is not present in the Secret, the + volume setup will error unless it is + marked optional. Paths must be relative + and may not contain the '..' path or + start with '..'. + optional: + type: boolean + description: >- + Specify whether the Secret or its keys + must be defined + secretName: + type: string + description: >- + Name of the secret in the pod's + namespace to use. More info: + https://kubernetes.io/docs/concepts/storage/volumes#secret + defaultMode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on created files by default. + Must be an octal value between 0000 and + 0777 or a decimal value between 0 and + 511. YAML accepts both octal and decimal + values, JSON requires decimal values for + mode bits. Defaults to 0644. Directories + within the path are not affected by this + setting. This might be in conflict with + other options that affect the file mode, + like fsGroup, and the result can be + other mode bits set. + description: >- + Secret represents a secret that should + populate this volume. More info: + https://kubernetes.io/docs/concepts/storage/volumes#secret + flocker: + type: object + properties: + datasetName: + type: string + description: >- + Name of the dataset stored as metadata + -> name on the dataset for Flocker + should be considered as deprecated + datasetUUID: + type: string + description: >- + UUID of the dataset. This is unique + identifier of a Flocker dataset + description: >- + Flocker represents a Flocker volume + attached to a kubelet's host machine. + This depends on the Flocker control + service being running + gitRepo: + type: object + required: + - repository + properties: + revision: + type: string + description: Commit hash for the specified revision. + directory: + type: string + description: >- + Target directory name. Must not contain + or start with '..'. If '.' is supplied, + the volume directory will be the git + repository. Otherwise, if specified, + the volume will contain the git + repository in the subdirectory with the + given name. + repository: + type: string + description: Repository URL + description: >- + GitRepo represents a git repository at a + particular revision. DEPRECATED: GitRepo + is deprecated. To provision a container + with a git repo, mount an EmptyDir into + an InitContainer that clones the repo + using git, then mount the EmptyDir into + the Pod's container. + quobyte: + type: object + required: + - registry + - volume + properties: + user: + type: string + description: >- + User to map volume access to Defaults to + serivceaccount user + group: + type: string + description: >- + Group to map volume access to Default is + no group + tenant: + type: string + description: >- + Tenant owning the given Quobyte volume + in the Backend Used with dynamically + provisioned Quobyte volumes, value is + set by the plugin + volume: + type: string + description: >- + Volume is a string that references an + already created Quobyte volume by name. + readOnly: + type: boolean + description: >- + ReadOnly here will force the Quobyte + volume to be mounted with read-only + permissions. Defaults to false. + registry: + type: string + description: >- + Registry represents a single or multiple + Quobyte Registry services specified as a + string as host:port pair (multiple + entries are separated with commas) which + acts as the central registry for volumes + description: >- + Quobyte represents a Quobyte mount on + the host that shares a pod's lifetime + scaleIO: + type: object + required: + - gateway + - secretRef + - system + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Default is "xfs". + system: + type: string + description: >- + The name of the storage system as + configured in ScaleIO. + gateway: + type: string + description: >- + The host address of the ScaleIO API + Gateway. + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + SecretRef references to the secret for + ScaleIO user and other sensitive + information. If this is not provided, + Login operation will fail. + sslEnabled: + type: boolean + description: >- + Flag to enable/disable SSL communication + with Gateway, default false + volumeName: + type: string + description: >- + The name of a volume already created in + the ScaleIO system that is associated + with this volume source. + storageMode: + type: string + description: >- + Indicates whether the storage for a + volume should be ThickProvisioned or + ThinProvisioned. Default is + ThinProvisioned. + storagePool: + type: string + description: >- + The ScaleIO Storage Pool associated with + the protection domain. + protectionDomain: + type: string + description: >- + The name of the ScaleIO Protection + Domain for the configured storage. + description: >- + ScaleIO represents a ScaleIO persistent + volume attached and mounted on + Kubernetes nodes. + emptyDir: + type: object + properties: + medium: + type: string + description: >- + What type of storage medium should back + this directory. The default is "" which + means to use the node's default medium. + Must be an empty string (default) or + Memory. More info: + https://kubernetes.io/docs/concepts/storage/volumes#emptydir + sizeLimit: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Total amount of local storage required + for this EmptyDir volume. The size limit + is also applicable for memory medium. + The maximum usage on memory medium + EmptyDir would be the minimum value + between the SizeLimit specified here and + the sum of memory limits of all + containers in a pod. The default is nil + which means that the limit is undefined. + More info: + http://kubernetes.io/docs/user-guide/volumes#emptydir + x-kubernetes-int-or-string: true + description: >- + EmptyDir represents a temporary + directory that shares a pod's lifetime. + More info: + https://kubernetes.io/docs/concepts/storage/volumes#emptydir + hostPath: + type: object + required: + - path + properties: + path: + type: string + description: >- + Path of the directory on the host. If + the path is a symlink, it will follow + the link to the real path. More info: + https://kubernetes.io/docs/concepts/storage/volumes#hostpath + type: + type: string + description: >- + Type for HostPath Volume Defaults to "" + More info: + https://kubernetes.io/docs/concepts/storage/volumes#hostpath + description: >- + HostPath represents a pre-existing file + or directory on the host machine that is + directly exposed to the container. This + is generally used for system agents or + other privileged things that are allowed + to see the host machine. Most containers + will NOT need this. More info: + https://kubernetes.io/docs/concepts/storage/volumes#hostpath + --- TODO(jonesdl) We need to restrict + who can use host directory mounts and + who can/can not mount host directories + as read/write. + azureDisk: + type: object + required: + - diskName + - diskURI + properties: + kind: + type: string + description: >- + Expected values Shared: multiple blob + disks per storage account Dedicated: + single blob disk per storage account + Managed: azure managed data disk (only + in managed availability set). defaults + to shared + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + diskURI: + type: string + description: >- + The URI the data disk in the blob + storage + diskName: + type: string + description: >- + The Name of the data disk in the blob + storage + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + cachingMode: + type: string + description: >- + Host Caching mode: None, Read Only, Read + Write. + description: >- + AzureDisk represents an Azure Data Disk + mount on the host and bind mount to the + pod. + azureFile: + type: object + required: + - secretName + - shareName + properties: + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + shareName: + type: string + description: Share Name + secretName: + type: string + description: >- + the name of secret that contains Azure + Storage Account Name and Key + description: >- + AzureFile represents an Azure File + Service mount on the host and bind mount + to the pod. + configMap: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced + ConfigMap will be projected into the + volume as a file whose name is the key + and content is the value. If specified, + the listed keys will be projected into + the specified paths, and unlisted keys + will not be present. If a key is + specified which is not present in the + ConfigMap, the volume setup will error + unless it is marked optional. Paths must + be relative and may not contain the '..' + path or start with '..'. + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its + keys must be defined + defaultMode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on created files by default. + Must be an octal value between 0000 and + 0777 or a decimal value between 0 and + 511. YAML accepts both octal and decimal + values, JSON requires decimal values for + mode bits. Defaults to 0644. Directories + within the path are not affected by this + setting. This might be in conflict with + other options that affect the file mode, + like fsGroup, and the result can be + other mode bits set. + description: >- + ConfigMap represents a configMap that + should populate this volume + ephemeral: + type: object + properties: + readOnly: + type: boolean + description: >- + Specifies a read-only configuration for + the volume. Defaults to false + (read/write). + volumeClaimTemplate: + type: object + required: + - spec + properties: + spec: + type: object + properties: + selector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over volumes to consider + for binding. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Resources represents the minimum + resources the volume should have. More + info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + dataSource: + type: object + required: + - kind + - name + properties: + kind: + type: string + description: >- + Kind is the type of resource being + referenced + name: + type: string + description: >- + Name is the name of resource being + referenced + apiGroup: + type: string + description: >- + APIGroup is the group for the resource + being referenced. If APIGroup is not + specified, the specified Kind must be in + the core API group. For any other + third-party types, APIGroup is required. + description: >- + This field can be used to specify + either: * An existing VolumeSnapshot + object + (snapshot.storage.k8s.io/VolumeSnapshot + - Beta) * An existing PVC + (PersistentVolumeClaim) * An existing + custom resource/object that implements + data population (Alpha) In order to use + VolumeSnapshot object types, the + appropriate feature gate must be enabled + (VolumeSnapshotDataSource or + AnyVolumeDataSource) If the provisioner + or an external controller can support + the specified data source, it will + create a new volume based on the + contents of the specified data source. + If the specified data source is not + supported, the volume will not be + created and the failure will be reported + as an event. In the future, we plan to + support more data source types and the + behavior of the provisioner may change. + volumeMode: + type: string + description: >- + volumeMode defines what type of volume + is required by the claim. Value of + Filesystem is implied when not included + in claim spec. + volumeName: + type: string + description: >- + VolumeName is the binding reference to + the PersistentVolume backing this claim. + accessModes: + type: array + items: + type: string + description: >- + AccessModes contains the desired access + modes the volume should have. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + storageClassName: + type: string + description: >- + Name of the StorageClass required by the + claim. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + description: >- + The specification for the + PersistentVolumeClaim. The entire + content is copied unchanged into the PVC + that gets created from this template. + The same fields as in a + PersistentVolumeClaim are also valid + here. + metadata: + type: object + description: >- + May contain labels and annotations that + will be copied into the PVC when + creating it. No other fields are allowed + and will be rejected during validation. + description: >- + Will be used to create a stand-alone PVC + to provision the volume. The pod in + which this EphemeralVolumeSource is + embedded will be the owner of the PVC, + i.e. the PVC will be deleted together + with the pod. The name of the PVC will + be `-` where + `` is the name from the + `PodSpec.Volumes` array entry. Pod + validation will reject the pod if the + concatenated name is not valid for a PVC + (for example, too long). + An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. + This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. + Required, must not be nil. + description: >- + Ephemeral represents a volume that is + handled by a cluster storage driver + (Alpha feature). The volume's lifecycle + is tied to the pod that defines it - it + will be created before the pod starts, + and deleted when the pod is removed. + Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). + Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. + Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. + A pod can use both types of ephemeral volumes and persistent volumes at the same time. + glusterfs: + type: object + required: + - endpoints + - path + properties: + path: + type: string + description: >- + Path is the Glusterfs volume path. More + info: + https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + readOnly: + type: boolean + description: >- + ReadOnly here will force the Glusterfs + volume to be mounted with read-only + permissions. Defaults to false. More + info: + https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + endpoints: + type: string + description: >- + EndpointsName is the endpoint name that + details Glusterfs topology. More info: + https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + description: >- + Glusterfs represents a Glusterfs mount + on the host that shares a pod's + lifetime. More info: + https://examples.k8s.io/volumes/glusterfs/README.md + projected: + type: object + required: + - sources + properties: + sources: + type: array + items: + type: object + properties: + secret: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced Secret + will be projected into the volume as a + file whose name is the key and content + is the value. If specified, the listed + keys will be projected into the + specified paths, and unlisted keys will + not be present. If a key is specified + which is not present in the Secret, the + volume setup will error unless it is + marked optional. Paths must be relative + and may not contain the '..' path or + start with '..'. + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + information about the secret data to + project + configMap: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced + ConfigMap will be projected into the + volume as a file whose name is the key + and content is the value. If specified, + the listed keys will be projected into + the specified paths, and unlisted keys + will not be present. If a key is + specified which is not present in the + ConfigMap, the volume setup will error + unless it is marked optional. Paths must + be relative and may not contain the '..' + path or start with '..'. + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its + keys must be defined + description: >- + information about the configMap data to + project + downwardAPI: + type: object + properties: + items: + type: array + items: + type: object + required: + - path + properties: + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file, must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + Required: Path is the relative path + name of the file to be created. Must not + be absolute or contain the '..' path. + Must be utf-8 encoded. The first item of + the relative path must not start with + '..' + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Required: Selects a field of the pod: + only annotations, labels, name and + namespace are supported. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, requests.cpu + and requests.memory) are currently + supported. + description: >- + DownwardAPIVolumeFile represents + information to create the file + containing the pod field + description: >- + Items is a list of DownwardAPIVolume + file + description: >- + information about the downwardAPI data + to project + serviceAccountToken: + type: object + required: + - path + properties: + path: + type: string + description: >- + Path is the path relative to the mount + point of the file to project the token + into. + audience: + type: string + description: >- + Audience is the intended audience of the + token. A recipient of a token must + identify itself with an identifier + specified in the audience of the token, + and otherwise should reject the token. + The audience defaults to the identifier + of the apiserver. + expirationSeconds: + type: integer + format: int64 + description: >- + ExpirationSeconds is the requested + duration of validity of the service + account token. As the token approaches + expiration, the kubelet volume plugin + will proactively rotate the service + account token. The kubelet will start + trying to rotate the token if the token + is older than 80 percent of its time to + live or if the token is older than 24 + hours.Defaults to 1 hour and must be at + least 10 minutes. + description: >- + information about the + serviceAccountToken data to project + description: >- + Projection that may be projected along + with other supported volume types + description: list of volume projections + defaultMode: + type: integer + format: int32 + description: >- + Mode bits used to set permissions on + created files by default. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. Directories within the path are + not affected by this setting. This might + be in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + description: >- + Items for all in one resources secrets, + configmaps, and downward API + storageos: + type: object + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + SecretRef specifies the secret to use + for obtaining the StorageOS API + credentials. If not specified, default + values will be attempted. + volumeName: + type: string + description: >- + VolumeName is the human-readable name of + the StorageOS volume. Volume names are + only unique within a namespace. + volumeNamespace: + type: string + description: >- + VolumeNamespace specifies the scope of + the volume within StorageOS. If no + namespace is specified then the Pod's + namespace will be used. This allows the + Kubernetes name scoping to be mirrored + within StorageOS for tighter + integration. Set VolumeName to any name + to override the default behaviour. Set + to "default" if you are not using + namespaces within StorageOS. Namespaces + that do not pre-exist within StorageOS + will be created. + description: >- + StorageOS represents a StorageOS volume + attached and mounted on Kubernetes + nodes. + flexVolume: + type: object + required: + - driver + properties: + driver: + type: string + description: >- + Driver is the name of the driver to use + for this volume. + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". The default filesystem depends + on FlexVolume script. + options: + type: object + description: 'Optional: Extra command options if any.' + additionalProperties: + type: string + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + Optional: SecretRef is reference to the + secret object containing sensitive + information to pass to the plugin + scripts. This may be empty if no secret + object is specified. If the secret + object contains more than one secret, + all secrets are passed to the plugin + scripts. + description: >- + FlexVolume represents a generic volume + resource that is provisioned/attached + using an exec based plugin. + downwardAPI: + type: object + properties: + items: + type: array + items: + type: object + required: + - path + properties: + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file, must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + Required: Path is the relative path + name of the file to be created. Must not + be absolute or contain the '..' path. + Must be utf-8 encoded. The first item of + the relative path must not start with + '..' + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Required: Selects a field of the pod: + only annotations, labels, name and + namespace are supported. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, requests.cpu + and requests.memory) are currently + supported. + description: >- + DownwardAPIVolumeFile represents + information to create the file + containing the pod field + description: >- + Items is a list of downward API volume + file + defaultMode: + type: integer + format: int32 + description: >- + Optional: mode bits to use on created + files by default. Must be a Optional: + mode bits used to set permissions on + created files by default. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. Defaults to 0644. Directories + within the path are not affected by this + setting. This might be in conflict with + other options that affect the file mode, + like fsGroup, and the result can be + other mode bits set. + description: >- + DownwardAPI represents downward API + about the pod that should populate this + volume + vsphereVolume: + type: object + required: + - volumePath + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + volumePath: + type: string + description: Path that identifies vSphere volume vmdk + storagePolicyID: + type: string + description: >- + Storage Policy Based Management (SPBM) + profile ID associated with the + StoragePolicyName. + storagePolicyName: + type: string + description: >- + Storage Policy Based Management (SPBM) + profile name. + description: >- + VsphereVolume represents a vSphere + volume attached and mounted on kubelets + host machine + portworxVolume: + type: object + required: + - volumeID + properties: + fsType: + type: string + description: >- + FSType represents the filesystem type to + mount Must be a filesystem type + supported by the host operating system. + Ex. "ext4", "xfs". Implicitly inferred + to be "ext4" if unspecified. + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + volumeID: + type: string + description: >- + VolumeID uniquely identifies a Portworx + volume + description: >- + PortworxVolume represents a portworx + volume attached and mounted on kubelets + host machine + gcePersistentDisk: + type: object + required: + - pdName + properties: + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + TODO: how do we prevent errors in the + filesystem from compromising the machine + pdName: + type: string + description: >- + Unique name of the PD resource in GCE. + Used to identify the disk in GCE. More + info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + readOnly: + type: boolean + description: >- + ReadOnly here will force the ReadOnly + setting in VolumeMounts. Defaults to + false. More info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + partition: + type: integer + format: int32 + description: >- + The partition in the volume that you + want to mount. If omitted, the default + is to mount by volume name. Examples: + For volume /dev/sda1, you specify the + partition as "1". Similarly, the volume + partition for /dev/sda is "0" (or you + can leave the property empty). More + info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + description: >- + GCEPersistentDisk represents a GCE Disk + resource that is attached to a kubelet's + host machine and then exposed to the + pod. More info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + awsElasticBlockStore: + type: object + required: + - volumeID + properties: + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + TODO: how do we prevent errors in the + filesystem from compromising the machine + readOnly: + type: boolean + description: >- + Specify "true" to force and set the + ReadOnly property in VolumeMounts to + "true". If omitted, the default is + "false". More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + volumeID: + type: string + description: >- + Unique ID of the persistent disk + resource in AWS (Amazon EBS volume). + More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + partition: + type: integer + format: int32 + description: >- + The partition in the volume that you + want to mount. If omitted, the default + is to mount by volume name. Examples: + For volume /dev/sda1, you specify the + partition as "1". Similarly, the volume + partition for /dev/sda is "0" (or you + can leave the property empty). + description: >- + AWSElasticBlockStore represents an AWS + Disk resource that is attached to a + kubelet's host machine and then exposed + to the pod. More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + photonPersistentDisk: + type: object + required: + - pdID + properties: + pdID: + type: string + description: >- + ID that identifies Photon Controller + persistent disk + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + description: >- + PhotonPersistentDisk represents a + PhotonController persistent disk + attached and mounted on kubelets host + machine + persistentVolumeClaim: + type: object + required: + - claimName + properties: + readOnly: + type: boolean + description: >- + Will force the ReadOnly setting in + VolumeMounts. Default false. + claimName: + type: string + description: >- + ClaimName is the name of a + PersistentVolumeClaim in the same + namespace as the pod using this volume. + More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + description: >- + PersistentVolumeClaimVolumeSource + represents a reference to a + PersistentVolumeClaim in the same + namespace. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + description: >- + Volume represents a named volume in a pod + that may be accessed by any container in the + pod. + description: >- + List of volumes that can be mounted by + containers belonging to the pod. More info: + https://kubernetes.io/docs/concepts/storage/volumes + affinity: + type: object + properties: + podAffinity: + type: object + properties: + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Defines a set of pods (namely those + matching the labelSelector relative to + the given namespace(s)) that this pod + should be co-located (affinity) or not + co-located (anti-affinity) with, where + co-located is defined as running on a + node whose value of the label with key + matches that of any node + on which a pod of the set of pods is + running + description: >- + If the affinity requirements specified + by this field are not met at scheduling + time, the pod will not be scheduled onto + the node. If the affinity requirements + specified by this field cease to be met + at some point during pod execution (e.g. + due to a pod label update), the system + may or may not try to eventually evict + the pod from its node. When there are + multiple elements, the lists of nodes + corresponding to each podAffinityTerm + are intersected, i.e. all terms must be + satisfied. + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - podAffinityTerm + - weight + properties: + weight: + type: integer + format: int32 + description: >- + weight associated with matching the + corresponding podAffinityTerm, in the + range 1-100. + podAffinityTerm: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Required. A pod affinity term, + associated with the corresponding + weight. + description: >- + The weights of all of the matched + WeightedPodAffinityTerm fields are added + per-node to find the most preferred + node(s) + description: >- + The scheduler will prefer to schedule + pods to nodes that satisfy the affinity + expressions specified by this field, but + it may choose a node that violates one + or more of the expressions. The node + that is most preferred is the one with + the greatest sum of weights, i.e. for + each node that meets all of the + scheduling requirements (resource + request, requiredDuringScheduling + affinity expressions, etc.), compute a + sum by iterating through the elements of + this field and adding "weight" to the + sum if the node has pods which matches + the corresponding podAffinityTerm; the + node(s) with the highest sum are the + most preferred. + description: >- + Describes pod affinity scheduling rules + (e.g. co-locate this pod in the same node, + zone, etc. as some other pod(s)). + nodeAffinity: + type: object + properties: + requiredDuringSchedulingIgnoredDuringExecution: + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + type: array + items: + type: object + properties: + matchFields: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's fields. + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's labels. + description: >- + A null or empty node selector term + matches no objects. The requirements of + them are ANDed. The TopologySelectorTerm + type implements a subset of the + NodeSelectorTerm. + description: >- + Required. A list of node selector terms. + The terms are ORed. + description: >- + If the affinity requirements specified + by this field are not met at scheduling + time, the pod will not be scheduled onto + the node. If the affinity requirements + specified by this field cease to be met + at some point during pod execution (e.g. + due to an update), the system may or may + not try to eventually evict the pod from + its node. + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - preference + - weight + properties: + weight: + type: integer + format: int32 + description: >- + Weight associated with matching the + corresponding nodeSelectorTerm, in the + range 1-100. + preference: + type: object + properties: + matchFields: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's fields. + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's labels. + description: >- + A node selector term, associated with + the corresponding weight. + description: >- + An empty preferred scheduling term + matches all objects with implicit weight + 0 (i.e. it's a no-op). A null preferred + scheduling term matches no objects (i.e. + is also a no-op). + description: >- + The scheduler will prefer to schedule + pods to nodes that satisfy the affinity + expressions specified by this field, but + it may choose a node that violates one + or more of the expressions. The node + that is most preferred is the one with + the greatest sum of weights, i.e. for + each node that meets all of the + scheduling requirements (resource + request, requiredDuringScheduling + affinity expressions, etc.), compute a + sum by iterating through the elements of + this field and adding "weight" to the + sum if the node matches the + corresponding matchExpressions; the + node(s) with the highest sum are the + most preferred. + description: >- + Describes node affinity scheduling rules + for the pod. + podAntiAffinity: + type: object + properties: + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Defines a set of pods (namely those + matching the labelSelector relative to + the given namespace(s)) that this pod + should be co-located (affinity) or not + co-located (anti-affinity) with, where + co-located is defined as running on a + node whose value of the label with key + matches that of any node + on which a pod of the set of pods is + running + description: >- + If the anti-affinity requirements + specified by this field are not met at + scheduling time, the pod will not be + scheduled onto the node. If the + anti-affinity requirements specified by + this field cease to be met at some point + during pod execution (e.g. due to a pod + label update), the system may or may not + try to eventually evict the pod from its + node. When there are multiple elements, + the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. + all terms must be satisfied. + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - podAffinityTerm + - weight + properties: + weight: + type: integer + format: int32 + description: >- + weight associated with matching the + corresponding podAffinityTerm, in the + range 1-100. + podAffinityTerm: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Required. A pod affinity term, + associated with the corresponding + weight. + description: >- + The weights of all of the matched + WeightedPodAffinityTerm fields are added + per-node to find the most preferred + node(s) + description: >- + The scheduler will prefer to schedule + pods to nodes that satisfy the + anti-affinity expressions specified by + this field, but it may choose a node + that violates one or more of the + expressions. The node that is most + preferred is the one with the greatest + sum of weights, i.e. for each node that + meets all of the scheduling requirements + (resource request, + requiredDuringScheduling anti-affinity + expressions, etc.), compute a sum by + iterating through the elements of this + field and adding "weight" to the sum if + the node has pods which matches the + corresponding podAffinityTerm; the + node(s) with the highest sum are the + most preferred. + description: >- + Describes pod anti-affinity scheduling + rules (e.g. avoid putting this pod in the + same node, zone, etc. as some other + pod(s)). + description: 'If specified, the pod''s scheduling constraints' + hostname: + type: string + description: >- + Specifies the hostname of the Pod If not + specified, the pod's hostname will be set to a + system-defined value. + nodeName: + type: string + description: >- + NodeName is a request to schedule this pod + onto a specific node. If it is non-empty, the + scheduler simply schedules this pod onto that + node, assuming that it fits resource + requirements. + overhead: + type: object + description: >- + Overhead represents the resource overhead + associated with running a pod for a given + RuntimeClass. This field will be autopopulated + at admission time by the RuntimeClass + admission controller. If the RuntimeClass + admission controller is enabled, overhead must + not be set in Pod create requests. The + RuntimeClass admission controller will reject + Pod create requests which have the overhead + already set. If RuntimeClass is configured and + selected in the PodSpec, Overhead will be set + to the value defined in the corresponding + RuntimeClass, otherwise it will remain unset + and treated as zero. More info: + https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md + This field is alpha-level as of Kubernetes + v1.16, and is only honored by servers that + enable the PodOverhead feature. + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + priority: + type: integer + format: int32 + description: >- + The priority value. Various system components + use this field to find the priority of the + pod. When Priority Admission Controller is + enabled, it prevents users from setting this + field. The admission controller populates this + field from PriorityClassName. The higher the + value, the higher the priority. + dnsConfig: + type: object + properties: + options: + type: array + items: + type: object + properties: + name: + type: string + description: Required. + value: + type: string + description: >- + PodDNSConfigOption defines DNS resolver + options of a pod. + description: >- + A list of DNS resolver options. This will + be merged with the base options generated + from DNSPolicy. Duplicated entries will be + removed. Resolution options given in + Options will override those that appear in + the base DNSPolicy. + searches: + type: array + items: + type: string + description: >- + A list of DNS search domains for host-name + lookup. This will be appended to the base + search paths generated from DNSPolicy. + Duplicated search paths will be removed. + nameservers: + type: array + items: + type: string + description: >- + A list of DNS name server IP addresses. + This will be appended to the base + nameservers generated from DNSPolicy. + Duplicated nameservers will be removed. + description: >- + Specifies the DNS parameters of a pod. + Parameters specified here will be merged to + the generated DNS configuration based on + DNSPolicy. + dnsPolicy: + type: string + description: >- + Set DNS policy for the pod. Defaults to + "ClusterFirst". Valid values are + 'ClusterFirstWithHostNet', 'ClusterFirst', + 'Default' or 'None'. DNS parameters given in + DNSConfig will be merged with the policy + selected with DNSPolicy. To have DNS options + set along with hostNetwork, you have to + specify DNS policy explicitly to + 'ClusterFirstWithHostNet'. + subdomain: + type: string + description: >- + If specified, the fully qualified Pod hostname + will be "...svc.". If not + specified, the pod will not have a domainname + at all. + containers: + type: array + items: + type: object + required: + - name + properties: + env: + type: array + items: + type: object + required: + - name + properties: + name: + type: string + description: >- + Name of the environment variable. Must + be a C_IDENTIFIER. + value: + type: string + description: >- + Variable references $(VAR_NAME) are + expanded using the previous defined + environment variables in the container + and any service environment variables. + If a variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Defaults to + "". + valueFrom: + type: object + properties: + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Selects a field of the pod: supports + metadata.name, metadata.namespace, + `metadata.labels['']`, + `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, + status.hostIP, status.podIP, + status.podIPs. + secretKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: >- + The key of the secret to select from. + Must be a valid secret key. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + Selects a key of a secret in the pod's + namespace + configMapKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: The key to select. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its key + must be defined + description: Selects a key of a ConfigMap. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, + limits.ephemeral-storage, requests.cpu, + requests.memory and + requests.ephemeral-storage) are + currently supported. + description: >- + Source for the environment variable's + value. Cannot be used if value is not + empty. + description: >- + EnvVar represents an environment + variable present in a Container. + description: >- + List of environment variables to set in + the container. Cannot be updated. + tty: + type: boolean + description: >- + Whether this container should allocate a + TTY for itself, also requires 'stdin' to + be true. Default is false. + args: + type: array + items: + type: string + description: >- + Arguments to the entrypoint. The docker + image's CMD is used if this is not + provided. Variable references + $(VAR_NAME) are expanded using the + container's environment. If a variable + cannot be resolved, the reference in the + input string will be unchanged. The + $(VAR_NAME) syntax can be escaped with a + double $$, ie: $$(VAR_NAME). Escaped + references will never be expanded, + regardless of whether the variable + exists or not. Cannot be updated. More + info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + name: + type: string + description: >- + Name of the container specified as a + DNS_LABEL. Each container in a pod must + have a unique name (DNS_LABEL). Cannot + be updated. + image: + type: string + description: >- + Docker image name. More info: + https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher + level config management to default or + override container images in workload + controllers like Deployments and + StatefulSets. + ports: + type: array + items: + type: object + required: + - containerPort + properties: + name: + type: string + description: >- + If specified, this must be an + IANA_SVC_NAME and unique within the pod. + Each named port in a pod must have a + unique name. Name for the port that can + be referred to by services. + hostIP: + type: string + description: >- + What host IP to bind the external port + to. + hostPort: + type: integer + format: int32 + description: >- + Number of port to expose on the host. If + specified, this must be a valid port + number, 0 < x < 65536. If HostNetwork is + specified, this must match + ContainerPort. Most containers do not + need this. + protocol: + type: string + default: TCP + description: >- + Protocol for port. Must be UDP, TCP, or + SCTP. Defaults to "TCP". + containerPort: + type: integer + format: int32 + description: >- + Number of port to expose on the pod's IP + address. This must be a valid port + number, 0 < x < 65536. + description: >- + ContainerPort represents a network port + in a single container. + description: >- + List of ports to expose from the + container. Exposing a port here gives + the system additional information about + the network connections a container + uses, but is primarily informational. + Not specifying a port here DOES NOT + prevent that port from being exposed. + Any port which is listening on the + default "0.0.0.0" address inside a + container will be accessible from the + network. Cannot be updated. + x-kubernetes-list-type: map + x-kubernetes-list-map-keys: + - containerPort + - protocol + stdin: + type: boolean + description: >- + Whether this container should allocate a + buffer for stdin in the container + runtime. If this is not set, reads from + stdin in the container will always + result in EOF. Default is false. + command: + type: array + items: + type: string + description: >- + Entrypoint array. Not executed within a + shell. The docker image's ENTRYPOINT is + used if this is not provided. Variable + references $(VAR_NAME) are expanded + using the container's environment. If a + variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Cannot be + updated. More info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + envFrom: + type: array + items: + type: object + properties: + prefix: + type: string + description: >- + An optional identifier to prepend to + each key in the ConfigMap. Must be a + C_IDENTIFIER. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret must be + defined + description: The Secret to select from + configMapRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap must be + defined + description: The ConfigMap to select from + description: >- + EnvFromSource represents the source of a + set of ConfigMaps + description: >- + List of sources to populate environment + variables in the container. The keys + defined within a source must be a + C_IDENTIFIER. All invalid keys will be + reported as an event when the container + is starting. When a key exists in + multiple sources, the value associated + with the last source will take + precedence. Values defined by an Env + with a duplicate key will take + precedence. Cannot be updated. + lifecycle: + type: object + properties: + preStop: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PreStop is called immediately before a + container is terminated due to an API + request or management event such as + liveness/startup probe failure, + preemption, resource contention, etc. + The handler is not called if the + container crashes or exits. The reason + for termination is passed to the + handler. The Pod's termination grace + period countdown begins before the + PreStop hooked is executed. Regardless + of the outcome of the handler, the + container will eventually terminate + within the Pod's termination grace + period. Other management of the + container blocks until the hook + completes or until the termination grace + period is reached. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + postStart: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PostStart is called immediately after a + container is created. If the handler + fails, the container is terminated and + restarted according to its restart + policy. Other management of the + container blocks until the hook + completes. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + description: >- + Actions that the management system + should take in response to container + lifecycle events. Cannot be updated. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Compute Resources required by this + container. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + stdinOnce: + type: boolean + description: >- + Whether the container runtime should + close the stdin channel after it has + been opened by a single attach. When + stdin is true the stdin stream will + remain open across multiple attach + sessions. If stdinOnce is set to true, + stdin is opened on container start, is + empty until the first client attaches to + stdin, and then remains open and accepts + data until the client disconnects, at + which time stdin is closed and remains + closed until the container is restarted. + If this flag is false, a container + processes that reads from stdin will + never receive an EOF. Default is false + workingDir: + type: string + description: >- + Container's working directory. If not + specified, the container runtime's + default will be used, which might be + configured in the container image. + Cannot be updated. + startupProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + StartupProbe indicates that the Pod has + successfully initialized. If specified, + no other probes are executed until this + completes successfully. If this probe + fails, the Pod will be restarted, just + as if the livenessProbe failed. This can + be used to provide different probe + parameters at the beginning of a Pod's + lifecycle, when it might take a long + time to load data or warm a cache, than + during steady-state operation. This + cannot be updated. This is a beta + feature enabled by the StartupProbe + feature flag. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeMounts: + type: array + items: + type: object + required: + - mountPath + - name + properties: + name: + type: string + description: This must match the Name of a Volume. + subPath: + type: string + description: >- + Path within the volume from which the + container's volume should be mounted. + Defaults to "" (volume's root). + readOnly: + type: boolean + description: >- + Mounted read-only if true, read-write + otherwise (false or unspecified). + Defaults to false. + mountPath: + type: string + description: >- + Path within the container at which the + volume should be mounted. Must not + contain ':'. + subPathExpr: + type: string + description: >- + Expanded path within the volume from + which the container's volume should be + mounted. Behaves similarly to SubPath + but environment variable references + $(VAR_NAME) are expanded using the + container's environment. Defaults to "" + (volume's root). SubPathExpr and SubPath + are mutually exclusive. + mountPropagation: + type: string + description: >- + mountPropagation determines how mounts + are propagated from the host to + container and the other way around. When + not set, MountPropagationNone is used. + This field is beta in 1.10. + description: >- + VolumeMount describes a mounting of a + Volume within a container. + description: >- + Pod volumes to mount into the + container's filesystem. Cannot be + updated. + livenessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container liveness. + Container will be restarted if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeDevices: + type: array + items: + type: object + required: + - devicePath + - name + properties: + name: + type: string + description: >- + name must match the name of a + persistentVolumeClaim in the pod + devicePath: + type: string + description: >- + devicePath is the path inside of the + container that the device will be mapped + to. + description: >- + volumeDevice describes a mapping of a + raw block device within a container. + description: >- + volumeDevices is the list of block + devices to be used by the container. + readinessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container service + readiness. Container will be removed + from service endpoints if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + imagePullPolicy: + type: string + description: >- + Image pull policy. One of Always, Never, + IfNotPresent. Defaults to Always if + :latest tag is specified, or + IfNotPresent otherwise. Cannot be + updated. More info: + https://kubernetes.io/docs/concepts/containers/images#updating-images + securityContext: + type: object + properties: + procMount: + type: string + description: >- + procMount denotes the type of proc mount + to use for the containers. The default + is DefaultProcMount which uses the + container runtime defaults for readonly + paths and masked paths. This requires + the ProcMountType feature flag to be + enabled. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + privileged: + type: boolean + description: >- + Run container in privileged mode. + Processes in privileged containers are + essentially equivalent to root on the + host. Defaults to false. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default + if unset. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + capabilities: + type: object + properties: + add: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Added capabilities + drop: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Removed capabilities + description: >- + The capabilities to add/drop when + running containers. Defaults to the + default set of capabilities granted by + the container runtime. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as + a non-root user. If true, the Kubelet + will validate the image at runtime to + ensure that it does not run as UID 0 + (root) and fail to start the container + if it does. If unset or false, no such + validation will be performed. May also + be set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to the + container. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by this + container. If seccomp options are + provided at both the pod & container + level, the container options override + the pod options. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options from the PodSecurityContext will + be used. If set in both SecurityContext + and PodSecurityContext, the value + specified in SecurityContext takes + precedence. + readOnlyRootFilesystem: + type: boolean + description: >- + Whether this container has a read-only + root filesystem. Default is false. + allowPrivilegeEscalation: + type: boolean + description: >- + AllowPrivilegeEscalation controls + whether a process can gain more + privileges than its parent process. This + bool directly controls if the + no_new_privs flag will be set on the + container process. + AllowPrivilegeEscalation is true always + when the container is: 1) run as + Privileged 2) has CAP_SYS_ADMIN + description: >- + Security options the pod should run + with. More info: + https://kubernetes.io/docs/concepts/policy/security-context/ + More info: + https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + terminationMessagePath: + type: string + description: >- + Optional: Path at which the file to + which the container's termination + message will be written is mounted into + the container's filesystem. Message + written is intended to be brief final + status, such as an assertion failure + message. Will be truncated by the node + if greater than 4096 bytes. The total + message length across all containers + will be limited to 12kb. Defaults to + /dev/termination-log. Cannot be updated. + terminationMessagePolicy: + type: string + description: >- + Indicate how the termination message + should be populated. File will use the + contents of terminationMessagePath to + populate the container status message on + both success and failure. + FallbackToLogsOnError will use the last + chunk of container log output if the + termination message file is empty and + the container exited with an error. The + log output is limited to 2048 bytes or + 80 lines, whichever is smaller. Defaults + to File. Cannot be updated. + description: >- + A single application container that you want + to run within a pod. + description: >- + List of containers belonging to the pod. + Containers cannot currently be added or + removed. There must be at least one container + in a Pod. Cannot be updated. + hostAliases: + type: array + items: + type: object + properties: + ip: + type: string + description: IP address of the host file entry. + hostnames: + type: array + items: + type: string + description: Hostnames for the above IP address. + description: >- + HostAlias holds the mapping between IP and + hostnames that will be injected as an entry + in the pod's hosts file. + description: >- + HostAliases is an optional list of hosts and + IPs that will be injected into the pod's hosts + file if specified. This is only valid for + non-hostNetwork pods. + hostNetwork: + type: boolean + description: >- + Host networking requested for this pod. Use + the host's network namespace. If this option + is set, the ports that will be used must be + specified. Default to false. + tolerations: + type: array + items: + type: object + properties: + key: + type: string + description: >- + Key is the taint key that the toleration + applies to. Empty means match all taint + keys. If the key is empty, operator must + be Exists; this combination means to + match all values and all keys. + value: + type: string + description: >- + Value is the taint value the toleration + matches to. If the operator is Exists, + the value should be empty, otherwise + just a regular string. + effect: + type: string + description: >- + Effect indicates the taint effect to + match. Empty means match all taint + effects. When specified, allowed values + are NoSchedule, PreferNoSchedule and + NoExecute. + operator: + type: string + description: >- + Operator represents a key's relationship + to the value. Valid operators are Exists + and Equal. Defaults to Equal. Exists is + equivalent to wildcard for value, so + that a pod can tolerate all taints of a + particular category. + tolerationSeconds: + type: integer + format: int64 + description: >- + TolerationSeconds represents the period + of time the toleration (which must be of + effect NoExecute, otherwise this field + is ignored) tolerates the taint. By + default, it is not set, which means + tolerate the taint forever (do not + evict). Zero and negative values will be + treated as 0 (evict immediately) by the + system. + description: >- + The pod this Toleration is attached to + tolerates any taint that matches the triple + using the matching + operator . + description: 'If specified, the pod''s tolerations.' + nodeSelector: + type: object + description: >- + NodeSelector is a selector which must be true + for the pod to fit on a node. Selector which + must match a node's labels for the pod to be + scheduled on that node. More info: + https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + additionalProperties: + type: string + restartPolicy: + type: string + description: >- + Restart policy for all containers within the + pod. One of Always, OnFailure, Never. Default + to Always. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy + schedulerName: + type: string + description: >- + If specified, the pod will be dispatched by + specified scheduler. If not specified, the pod + will be dispatched by default scheduler. + initContainers: + type: array + items: + type: object + required: + - name + properties: + env: + type: array + items: + type: object + required: + - name + properties: + name: + type: string + description: >- + Name of the environment variable. Must + be a C_IDENTIFIER. + value: + type: string + description: >- + Variable references $(VAR_NAME) are + expanded using the previous defined + environment variables in the container + and any service environment variables. + If a variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Defaults to + "". + valueFrom: + type: object + properties: + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Selects a field of the pod: supports + metadata.name, metadata.namespace, + `metadata.labels['']`, + `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, + status.hostIP, status.podIP, + status.podIPs. + secretKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: >- + The key of the secret to select from. + Must be a valid secret key. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + Selects a key of a secret in the pod's + namespace + configMapKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: The key to select. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its key + must be defined + description: Selects a key of a ConfigMap. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, + limits.ephemeral-storage, requests.cpu, + requests.memory and + requests.ephemeral-storage) are + currently supported. + description: >- + Source for the environment variable's + value. Cannot be used if value is not + empty. + description: >- + EnvVar represents an environment + variable present in a Container. + description: >- + List of environment variables to set in + the container. Cannot be updated. + tty: + type: boolean + description: >- + Whether this container should allocate a + TTY for itself, also requires 'stdin' to + be true. Default is false. + args: + type: array + items: + type: string + description: >- + Arguments to the entrypoint. The docker + image's CMD is used if this is not + provided. Variable references + $(VAR_NAME) are expanded using the + container's environment. If a variable + cannot be resolved, the reference in the + input string will be unchanged. The + $(VAR_NAME) syntax can be escaped with a + double $$, ie: $$(VAR_NAME). Escaped + references will never be expanded, + regardless of whether the variable + exists or not. Cannot be updated. More + info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + name: + type: string + description: >- + Name of the container specified as a + DNS_LABEL. Each container in a pod must + have a unique name (DNS_LABEL). Cannot + be updated. + image: + type: string + description: >- + Docker image name. More info: + https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher + level config management to default or + override container images in workload + controllers like Deployments and + StatefulSets. + ports: + type: array + items: + type: object + required: + - containerPort + properties: + name: + type: string + description: >- + If specified, this must be an + IANA_SVC_NAME and unique within the pod. + Each named port in a pod must have a + unique name. Name for the port that can + be referred to by services. + hostIP: + type: string + description: >- + What host IP to bind the external port + to. + hostPort: + type: integer + format: int32 + description: >- + Number of port to expose on the host. If + specified, this must be a valid port + number, 0 < x < 65536. If HostNetwork is + specified, this must match + ContainerPort. Most containers do not + need this. + protocol: + type: string + default: TCP + description: >- + Protocol for port. Must be UDP, TCP, or + SCTP. Defaults to "TCP". + containerPort: + type: integer + format: int32 + description: >- + Number of port to expose on the pod's IP + address. This must be a valid port + number, 0 < x < 65536. + description: >- + ContainerPort represents a network port + in a single container. + description: >- + List of ports to expose from the + container. Exposing a port here gives + the system additional information about + the network connections a container + uses, but is primarily informational. + Not specifying a port here DOES NOT + prevent that port from being exposed. + Any port which is listening on the + default "0.0.0.0" address inside a + container will be accessible from the + network. Cannot be updated. + x-kubernetes-list-type: map + x-kubernetes-list-map-keys: + - containerPort + - protocol + stdin: + type: boolean + description: >- + Whether this container should allocate a + buffer for stdin in the container + runtime. If this is not set, reads from + stdin in the container will always + result in EOF. Default is false. + command: + type: array + items: + type: string + description: >- + Entrypoint array. Not executed within a + shell. The docker image's ENTRYPOINT is + used if this is not provided. Variable + references $(VAR_NAME) are expanded + using the container's environment. If a + variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Cannot be + updated. More info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + envFrom: + type: array + items: + type: object + properties: + prefix: + type: string + description: >- + An optional identifier to prepend to + each key in the ConfigMap. Must be a + C_IDENTIFIER. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret must be + defined + description: The Secret to select from + configMapRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap must be + defined + description: The ConfigMap to select from + description: >- + EnvFromSource represents the source of a + set of ConfigMaps + description: >- + List of sources to populate environment + variables in the container. The keys + defined within a source must be a + C_IDENTIFIER. All invalid keys will be + reported as an event when the container + is starting. When a key exists in + multiple sources, the value associated + with the last source will take + precedence. Values defined by an Env + with a duplicate key will take + precedence. Cannot be updated. + lifecycle: + type: object + properties: + preStop: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PreStop is called immediately before a + container is terminated due to an API + request or management event such as + liveness/startup probe failure, + preemption, resource contention, etc. + The handler is not called if the + container crashes or exits. The reason + for termination is passed to the + handler. The Pod's termination grace + period countdown begins before the + PreStop hooked is executed. Regardless + of the outcome of the handler, the + container will eventually terminate + within the Pod's termination grace + period. Other management of the + container blocks until the hook + completes or until the termination grace + period is reached. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + postStart: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PostStart is called immediately after a + container is created. If the handler + fails, the container is terminated and + restarted according to its restart + policy. Other management of the + container blocks until the hook + completes. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + description: >- + Actions that the management system + should take in response to container + lifecycle events. Cannot be updated. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Compute Resources required by this + container. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + stdinOnce: + type: boolean + description: >- + Whether the container runtime should + close the stdin channel after it has + been opened by a single attach. When + stdin is true the stdin stream will + remain open across multiple attach + sessions. If stdinOnce is set to true, + stdin is opened on container start, is + empty until the first client attaches to + stdin, and then remains open and accepts + data until the client disconnects, at + which time stdin is closed and remains + closed until the container is restarted. + If this flag is false, a container + processes that reads from stdin will + never receive an EOF. Default is false + workingDir: + type: string + description: >- + Container's working directory. If not + specified, the container runtime's + default will be used, which might be + configured in the container image. + Cannot be updated. + startupProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + StartupProbe indicates that the Pod has + successfully initialized. If specified, + no other probes are executed until this + completes successfully. If this probe + fails, the Pod will be restarted, just + as if the livenessProbe failed. This can + be used to provide different probe + parameters at the beginning of a Pod's + lifecycle, when it might take a long + time to load data or warm a cache, than + during steady-state operation. This + cannot be updated. This is a beta + feature enabled by the StartupProbe + feature flag. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeMounts: + type: array + items: + type: object + required: + - mountPath + - name + properties: + name: + type: string + description: This must match the Name of a Volume. + subPath: + type: string + description: >- + Path within the volume from which the + container's volume should be mounted. + Defaults to "" (volume's root). + readOnly: + type: boolean + description: >- + Mounted read-only if true, read-write + otherwise (false or unspecified). + Defaults to false. + mountPath: + type: string + description: >- + Path within the container at which the + volume should be mounted. Must not + contain ':'. + subPathExpr: + type: string + description: >- + Expanded path within the volume from + which the container's volume should be + mounted. Behaves similarly to SubPath + but environment variable references + $(VAR_NAME) are expanded using the + container's environment. Defaults to "" + (volume's root). SubPathExpr and SubPath + are mutually exclusive. + mountPropagation: + type: string + description: >- + mountPropagation determines how mounts + are propagated from the host to + container and the other way around. When + not set, MountPropagationNone is used. + This field is beta in 1.10. + description: >- + VolumeMount describes a mounting of a + Volume within a container. + description: >- + Pod volumes to mount into the + container's filesystem. Cannot be + updated. + livenessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container liveness. + Container will be restarted if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeDevices: + type: array + items: + type: object + required: + - devicePath + - name + properties: + name: + type: string + description: >- + name must match the name of a + persistentVolumeClaim in the pod + devicePath: + type: string + description: >- + devicePath is the path inside of the + container that the device will be mapped + to. + description: >- + volumeDevice describes a mapping of a + raw block device within a container. + description: >- + volumeDevices is the list of block + devices to be used by the container. + readinessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container service + readiness. Container will be removed + from service endpoints if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + imagePullPolicy: + type: string + description: >- + Image pull policy. One of Always, Never, + IfNotPresent. Defaults to Always if + :latest tag is specified, or + IfNotPresent otherwise. Cannot be + updated. More info: + https://kubernetes.io/docs/concepts/containers/images#updating-images + securityContext: + type: object + properties: + procMount: + type: string + description: >- + procMount denotes the type of proc mount + to use for the containers. The default + is DefaultProcMount which uses the + container runtime defaults for readonly + paths and masked paths. This requires + the ProcMountType feature flag to be + enabled. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + privileged: + type: boolean + description: >- + Run container in privileged mode. + Processes in privileged containers are + essentially equivalent to root on the + host. Defaults to false. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default + if unset. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + capabilities: + type: object + properties: + add: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Added capabilities + drop: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Removed capabilities + description: >- + The capabilities to add/drop when + running containers. Defaults to the + default set of capabilities granted by + the container runtime. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as + a non-root user. If true, the Kubelet + will validate the image at runtime to + ensure that it does not run as UID 0 + (root) and fail to start the container + if it does. If unset or false, no such + validation will be performed. May also + be set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to the + container. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by this + container. If seccomp options are + provided at both the pod & container + level, the container options override + the pod options. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options from the PodSecurityContext will + be used. If set in both SecurityContext + and PodSecurityContext, the value + specified in SecurityContext takes + precedence. + readOnlyRootFilesystem: + type: boolean + description: >- + Whether this container has a read-only + root filesystem. Default is false. + allowPrivilegeEscalation: + type: boolean + description: >- + AllowPrivilegeEscalation controls + whether a process can gain more + privileges than its parent process. This + bool directly controls if the + no_new_privs flag will be set on the + container process. + AllowPrivilegeEscalation is true always + when the container is: 1) run as + Privileged 2) has CAP_SYS_ADMIN + description: >- + Security options the pod should run + with. More info: + https://kubernetes.io/docs/concepts/policy/security-context/ + More info: + https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + terminationMessagePath: + type: string + description: >- + Optional: Path at which the file to + which the container's termination + message will be written is mounted into + the container's filesystem. Message + written is intended to be brief final + status, such as an assertion failure + message. Will be truncated by the node + if greater than 4096 bytes. The total + message length across all containers + will be limited to 12kb. Defaults to + /dev/termination-log. Cannot be updated. + terminationMessagePolicy: + type: string + description: >- + Indicate how the termination message + should be populated. File will use the + contents of terminationMessagePath to + populate the container status message on + both success and failure. + FallbackToLogsOnError will use the last + chunk of container log output if the + termination message file is empty and + the container exited with an error. The + log output is limited to 2048 bytes or + 80 lines, whichever is smaller. Defaults + to File. Cannot be updated. + description: >- + A single application container that you want + to run within a pod. + description: >- + List of initialization containers belonging to + the pod. Init containers are executed in order + prior to containers being started. If any init + container fails, the pod is considered to have + failed and is handled according to its + restartPolicy. The name for an init container + or normal container must be unique among all + containers. Init containers may not have + Lifecycle actions, Readiness probes, Liveness + probes, or Startup probes. The + resourceRequirements of an init container are + taken into account during scheduling by + finding the highest request/limit for each + resource type, and then using the max of of + that value or the sum of the normal + containers. Limits are applied to init + containers in a similar fashion. Init + containers cannot currently be added or + removed. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + readinessGates: + type: array + items: + type: object + required: + - conditionType + properties: + conditionType: + type: string + description: >- + ConditionType refers to a condition in + the pod's condition list with matching + type. + description: >- + PodReadinessGate contains the reference to a + pod condition + description: >- + If specified, all readiness gates will be + evaluated for pod readiness. A pod is ready + when all its containers are ready AND all + conditions specified in the readiness gates + have status equal to "True" More info: + https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md + serviceAccount: + type: string + description: >- + DeprecatedServiceAccount is a depreciated + alias for ServiceAccountName. Deprecated: Use + serviceAccountName instead. + securityContext: + type: object + properties: + fsGroup: + type: integer + format: int64 + description: >- + A special supplemental group that applies + to all containers in a pod. Some volume + types allow the Kubelet to change the + ownership of that volume to be owned by + the pod: + 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- + If unset, the Kubelet will not modify the ownership and permissions of any volume. + sysctls: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: Name of a property to set + value: + type: string + description: Value of a property to set + description: >- + Sysctl defines a kernel parameter to be + set + description: >- + Sysctls hold a list of namespaced sysctls + used for the pod. Pods with unsupported + sysctls (by the container runtime) might + fail to launch. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence for that container. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default if + unset. May also be set in + SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence for that container. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as a + non-root user. If true, the Kubelet will + validate the image at runtime to ensure + that it does not run as UID 0 (root) and + fail to start the container if it does. If + unset or false, no such validation will be + performed. May also be set in + SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to all + containers. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence for that container. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by the + containers in this pod. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options within a container's + SecurityContext will be used. If set in + both SecurityContext and + PodSecurityContext, the value specified in + SecurityContext takes precedence. + supplementalGroups: + type: array + items: + type: integer + format: int64 + description: >- + A list of groups applied to the first + process run in each container, in addition + to the container's primary GID. If + unspecified, no groups will be added to + any container. + fsGroupChangePolicy: + type: string + description: >- + fsGroupChangePolicy defines behavior of + changing ownership and permission of the + volume before being exposed inside Pod. + This field will only apply to volume types + which support fsGroup based ownership(and + permissions). It will have no effect on + ephemeral volume types such as: secret, + configmaps and emptydir. Valid values are + "OnRootMismatch" and "Always". If not + specified defaults to "Always". + description: >- + SecurityContext holds pod-level security + attributes and common container settings. + Optional: Defaults to empty. See type + description for default values of each field. + imagePullSecrets: + type: array + items: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + LocalObjectReference contains enough + information to let you locate the referenced + object inside the same namespace. + description: >- + ImagePullSecrets is an optional list of + references to secrets in the same namespace to + use for pulling any of the images used by this + PodSpec. If specified, these secrets will be + passed to individual puller implementations + for them to use. For example, in the case of + docker, only DockerConfig type secrets are + honored. More info: + https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod + preemptionPolicy: + type: string + description: >- + PreemptionPolicy is the Policy for preempting + pods with lower priority. One of Never, + PreemptLowerPriority. Defaults to + PreemptLowerPriority if unset. This field is + beta-level, gated by the NonPreemptingPriority + feature-gate. + runtimeClassName: + type: string + description: >- + RuntimeClassName refers to a RuntimeClass + object in the node.k8s.io group, which should + be used to run this pod. If no RuntimeClass + resource matches the named class, the pod will + not be run. If unset or empty, the "legacy" + RuntimeClass will be used, which is an + implicit class with an empty definition that + uses the default runtime handler. More info: + https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md + This is a beta feature as of Kubernetes v1.14. + priorityClassName: + type: string + description: >- + If specified, indicates the pod's priority. + "system-node-critical" and + "system-cluster-critical" are two special + keywords which indicate the highest priorities + with the former being the highest priority. + Any other name must be defined by creating a + PriorityClass object with that name. If not + specified, the pod priority will be default or + zero if there is no default. + setHostnameAsFQDN: + type: boolean + description: >- + If true the pod's hostname will be configured + as the pod's FQDN, rather than the leaf name + (the default). In Linux containers, this means + setting the FQDN in the hostname field of the + kernel (the nodename field of struct utsname). + In Windows containers, this means setting the + registry value of hostname for the registry + key + HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters + to FQDN. If a pod does not have FQDN, this has + no effect. Default to false. + enableServiceLinks: + type: boolean + description: >- + EnableServiceLinks indicates whether + information about services should be injected + into pod's environment variables, matching the + syntax of Docker links. Optional: Defaults to + true. + serviceAccountName: + type: string + description: >- + ServiceAccountName is the name of the + ServiceAccount to use to run this pod. More + info: + https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ephemeralContainers: + type: array + items: + type: object + required: + - name + properties: + env: + type: array + items: + type: object + required: + - name + properties: + name: + type: string + description: >- + Name of the environment variable. Must + be a C_IDENTIFIER. + value: + type: string + description: >- + Variable references $(VAR_NAME) are + expanded using the previous defined + environment variables in the container + and any service environment variables. + If a variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Defaults to + "". + valueFrom: + type: object + properties: + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Selects a field of the pod: supports + metadata.name, metadata.namespace, + `metadata.labels['']`, + `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, + status.hostIP, status.podIP, + status.podIPs. + secretKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: >- + The key of the secret to select from. + Must be a valid secret key. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + Selects a key of a secret in the pod's + namespace + configMapKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: The key to select. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its key + must be defined + description: Selects a key of a ConfigMap. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, + limits.ephemeral-storage, requests.cpu, + requests.memory and + requests.ephemeral-storage) are + currently supported. + description: >- + Source for the environment variable's + value. Cannot be used if value is not + empty. + description: >- + EnvVar represents an environment + variable present in a Container. + description: >- + List of environment variables to set in + the container. Cannot be updated. + tty: + type: boolean + description: >- + Whether this container should allocate a + TTY for itself, also requires 'stdin' to + be true. Default is false. + args: + type: array + items: + type: string + description: >- + Arguments to the entrypoint. The docker + image's CMD is used if this is not + provided. Variable references + $(VAR_NAME) are expanded using the + container's environment. If a variable + cannot be resolved, the reference in the + input string will be unchanged. The + $(VAR_NAME) syntax can be escaped with a + double $$, ie: $$(VAR_NAME). Escaped + references will never be expanded, + regardless of whether the variable + exists or not. Cannot be updated. More + info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + name: + type: string + description: >- + Name of the ephemeral container + specified as a DNS_LABEL. This name must + be unique among all containers, init + containers and ephemeral containers. + image: + type: string + description: >- + Docker image name. More info: + https://kubernetes.io/docs/concepts/containers/images + ports: + type: array + items: + type: object + required: + - containerPort + properties: + name: + type: string + description: >- + If specified, this must be an + IANA_SVC_NAME and unique within the pod. + Each named port in a pod must have a + unique name. Name for the port that can + be referred to by services. + hostIP: + type: string + description: >- + What host IP to bind the external port + to. + hostPort: + type: integer + format: int32 + description: >- + Number of port to expose on the host. If + specified, this must be a valid port + number, 0 < x < 65536. If HostNetwork is + specified, this must match + ContainerPort. Most containers do not + need this. + protocol: + type: string + default: TCP + description: >- + Protocol for port. Must be UDP, TCP, or + SCTP. Defaults to "TCP". + containerPort: + type: integer + format: int32 + description: >- + Number of port to expose on the pod's IP + address. This must be a valid port + number, 0 < x < 65536. + description: >- + ContainerPort represents a network port + in a single container. + description: >- + Ports are not allowed for ephemeral + containers. + stdin: + type: boolean + description: >- + Whether this container should allocate a + buffer for stdin in the container + runtime. If this is not set, reads from + stdin in the container will always + result in EOF. Default is false. + command: + type: array + items: + type: string + description: >- + Entrypoint array. Not executed within a + shell. The docker image's ENTRYPOINT is + used if this is not provided. Variable + references $(VAR_NAME) are expanded + using the container's environment. If a + variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Cannot be + updated. More info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + envFrom: + type: array + items: + type: object + properties: + prefix: + type: string + description: >- + An optional identifier to prepend to + each key in the ConfigMap. Must be a + C_IDENTIFIER. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret must be + defined + description: The Secret to select from + configMapRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap must be + defined + description: The ConfigMap to select from + description: >- + EnvFromSource represents the source of a + set of ConfigMaps + description: >- + List of sources to populate environment + variables in the container. The keys + defined within a source must be a + C_IDENTIFIER. All invalid keys will be + reported as an event when the container + is starting. When a key exists in + multiple sources, the value associated + with the last source will take + precedence. Values defined by an Env + with a duplicate key will take + precedence. Cannot be updated. + lifecycle: + type: object + properties: + preStop: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PreStop is called immediately before a + container is terminated due to an API + request or management event such as + liveness/startup probe failure, + preemption, resource contention, etc. + The handler is not called if the + container crashes or exits. The reason + for termination is passed to the + handler. The Pod's termination grace + period countdown begins before the + PreStop hooked is executed. Regardless + of the outcome of the handler, the + container will eventually terminate + within the Pod's termination grace + period. Other management of the + container blocks until the hook + completes or until the termination grace + period is reached. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + postStart: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PostStart is called immediately after a + container is created. If the handler + fails, the container is terminated and + restarted according to its restart + policy. Other management of the + container blocks until the hook + completes. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + description: >- + Lifecycle is not allowed for ephemeral + containers. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Resources are not allowed for ephemeral + containers. Ephemeral containers use + spare resources already allocated to the + pod. + stdinOnce: + type: boolean + description: >- + Whether the container runtime should + close the stdin channel after it has + been opened by a single attach. When + stdin is true the stdin stream will + remain open across multiple attach + sessions. If stdinOnce is set to true, + stdin is opened on container start, is + empty until the first client attaches to + stdin, and then remains open and accepts + data until the client disconnects, at + which time stdin is closed and remains + closed until the container is restarted. + If this flag is false, a container + processes that reads from stdin will + never receive an EOF. Default is false + workingDir: + type: string + description: >- + Container's working directory. If not + specified, the container runtime's + default will be used, which might be + configured in the container image. + Cannot be updated. + startupProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Probes are not allowed for ephemeral + containers. + volumeMounts: + type: array + items: + type: object + required: + - mountPath + - name + properties: + name: + type: string + description: This must match the Name of a Volume. + subPath: + type: string + description: >- + Path within the volume from which the + container's volume should be mounted. + Defaults to "" (volume's root). + readOnly: + type: boolean + description: >- + Mounted read-only if true, read-write + otherwise (false or unspecified). + Defaults to false. + mountPath: + type: string + description: >- + Path within the container at which the + volume should be mounted. Must not + contain ':'. + subPathExpr: + type: string + description: >- + Expanded path within the volume from + which the container's volume should be + mounted. Behaves similarly to SubPath + but environment variable references + $(VAR_NAME) are expanded using the + container's environment. Defaults to "" + (volume's root). SubPathExpr and SubPath + are mutually exclusive. + mountPropagation: + type: string + description: >- + mountPropagation determines how mounts + are propagated from the host to + container and the other way around. When + not set, MountPropagationNone is used. + This field is beta in 1.10. + description: >- + VolumeMount describes a mounting of a + Volume within a container. + description: >- + Pod volumes to mount into the + container's filesystem. Cannot be + updated. + livenessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Probes are not allowed for ephemeral + containers. + volumeDevices: + type: array + items: + type: object + required: + - devicePath + - name + properties: + name: + type: string + description: >- + name must match the name of a + persistentVolumeClaim in the pod + devicePath: + type: string + description: >- + devicePath is the path inside of the + container that the device will be mapped + to. + description: >- + volumeDevice describes a mapping of a + raw block device within a container. + description: >- + volumeDevices is the list of block + devices to be used by the container. + readinessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Probes are not allowed for ephemeral + containers. + imagePullPolicy: + type: string + description: >- + Image pull policy. One of Always, Never, + IfNotPresent. Defaults to Always if + :latest tag is specified, or + IfNotPresent otherwise. Cannot be + updated. More info: + https://kubernetes.io/docs/concepts/containers/images#updating-images + securityContext: + type: object + properties: + procMount: + type: string + description: >- + procMount denotes the type of proc mount + to use for the containers. The default + is DefaultProcMount which uses the + container runtime defaults for readonly + paths and masked paths. This requires + the ProcMountType feature flag to be + enabled. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + privileged: + type: boolean + description: >- + Run container in privileged mode. + Processes in privileged containers are + essentially equivalent to root on the + host. Defaults to false. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default + if unset. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + capabilities: + type: object + properties: + add: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Added capabilities + drop: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Removed capabilities + description: >- + The capabilities to add/drop when + running containers. Defaults to the + default set of capabilities granted by + the container runtime. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as + a non-root user. If true, the Kubelet + will validate the image at runtime to + ensure that it does not run as UID 0 + (root) and fail to start the container + if it does. If unset or false, no such + validation will be performed. May also + be set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to the + container. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by this + container. If seccomp options are + provided at both the pod & container + level, the container options override + the pod options. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options from the PodSecurityContext will + be used. If set in both SecurityContext + and PodSecurityContext, the value + specified in SecurityContext takes + precedence. + readOnlyRootFilesystem: + type: boolean + description: >- + Whether this container has a read-only + root filesystem. Default is false. + allowPrivilegeEscalation: + type: boolean + description: >- + AllowPrivilegeEscalation controls + whether a process can gain more + privileges than its parent process. This + bool directly controls if the + no_new_privs flag will be set on the + container process. + AllowPrivilegeEscalation is true always + when the container is: 1) run as + Privileged 2) has CAP_SYS_ADMIN + description: >- + SecurityContext is not allowed for + ephemeral containers. + targetContainerName: + type: string + description: >- + If set, the name of the container from + PodSpec that this ephemeral container + targets. The ephemeral container will be + run in the namespaces (IPC, PID, etc) of + this container. If not set then the + ephemeral container is run in whatever + namespaces are shared for the pod. Note + that the container runtime must support + this feature. + terminationMessagePath: + type: string + description: >- + Optional: Path at which the file to + which the container's termination + message will be written is mounted into + the container's filesystem. Message + written is intended to be brief final + status, such as an assertion failure + message. Will be truncated by the node + if greater than 4096 bytes. The total + message length across all containers + will be limited to 12kb. Defaults to + /dev/termination-log. Cannot be updated. + terminationMessagePolicy: + type: string + description: >- + Indicate how the termination message + should be populated. File will use the + contents of terminationMessagePath to + populate the container status message on + both success and failure. + FallbackToLogsOnError will use the last + chunk of container log output if the + termination message file is empty and + the container exited with an error. The + log output is limited to 2048 bytes or + 80 lines, whichever is smaller. Defaults + to File. Cannot be updated. + description: >- + An EphemeralContainer is a container that + may be added temporarily to an existing pod + for user-initiated activities such as + debugging. Ephemeral containers have no + resource or scheduling guarantees, and they + will not be restarted when they exit or when + a pod is removed or restarted. If an + ephemeral container causes a pod to exceed + its resource allocation, the pod may be + evicted. Ephemeral containers may not be + added by directly updating the pod spec. + They must be added via the pod's + ephemeralcontainers subresource, and they + will appear in the pod spec once added. This + is an alpha feature enabled by the + EphemeralContainers feature flag. + description: >- + List of ephemeral containers run in this pod. + Ephemeral containers may be run in an existing + pod to perform user-initiated actions such as + debugging. This list cannot be specified when + creating a pod, and it cannot be modified by + updating the pod spec. In order to add an + ephemeral container to an existing pod, use + the pod's ephemeralcontainers subresource. + This field is alpha-level and is only honored + by servers that enable the EphemeralContainers + feature. + activeDeadlineSeconds: + type: integer + format: int64 + description: >- + Optional duration in seconds the pod may be + active on the node relative to StartTime + before the system will actively try to mark it + failed and kill associated containers. Value + must be a positive integer. + shareProcessNamespace: + type: boolean + description: >- + Share a single process namespace between all + of the containers in a pod. When this is set + containers will be able to view and signal + processes from other containers in the same + pod, and the first process in each container + will not be assigned PID 1. HostPID and + ShareProcessNamespace cannot both be set. + Optional: Default to false. + topologySpreadConstraints: + type: array + items: + type: object + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + properties: + maxSkew: + type: integer + format: int32 + description: >- + MaxSkew describes the degree to which + pods may be unevenly distributed. When + `whenUnsatisfiable=DoNotSchedule`, it is + the maximum permitted difference between + the number of matching pods in the + target topology and the global minimum. + For example, in a 3-zone cluster, + MaxSkew is set to 1, and pods with the + same labelSelector spread as 1/1/0: | + zone1 | zone2 | zone3 | | P | P + | | - if MaxSkew is 1, incoming + pod can only be scheduled to zone3 to + become 1/1/1; scheduling it onto + zone1(zone2) would make the + ActualSkew(2-0) on zone1(zone2) violate + MaxSkew(1). - if MaxSkew is 2, incoming + pod can be scheduled onto any zone. When + `whenUnsatisfiable=ScheduleAnyway`, it + is used to give higher precedence to + topologies that satisfy it. It's a + required field. Default value is 1 and 0 + is not allowed. + topologyKey: + type: string + description: >- + TopologyKey is the key of node labels. + Nodes that have a label with this key + and identical values are considered to + be in the same topology. We consider + each as a "bucket", and try + to put balanced number of pods into each + bucket. It's a required field. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + LabelSelector is used to find matching + pods. Pods that match this label + selector are counted to determine the + number of pods in their corresponding + topology domain. + whenUnsatisfiable: + type: string + description: >- + WhenUnsatisfiable indicates how to deal + with a pod if it doesn't satisfy the + spread constraint. - DoNotSchedule + (default) tells the scheduler not to + schedule it. - ScheduleAnyway tells the + scheduler to schedule the pod in any + location, but giving higher precedence + to topologies that would help reduce + the skew. A constraint is considered + "Unsatisfiable" for an incoming pod if + and only if every possible node + assigment for that pod would violate + "MaxSkew" on some topology. For example, + in a 3-zone cluster, MaxSkew is set to + 1, and pods with the same labelSelector + spread as 3/1/1: | zone1 | zone2 | zone3 + | | P P P | P | P | If + WhenUnsatisfiable is set to + DoNotSchedule, incoming pod can only be + scheduled to zone2(zone3) to become + 3/2/1(3/1/2) as ActualSkew(2-1) on + zone2(zone3) satisfies MaxSkew(1). In + other words, the cluster can still be + imbalanced, but scheduler won't make it + *more* imbalanced. It's a required + field. + description: >- + TopologySpreadConstraint specifies how to + spread matching pods among the given + topology. + description: >- + TopologySpreadConstraints describes how a + group of pods ought to spread across topology + domains. Scheduler will schedule pods in a way + which abides by the constraints. All + topologySpreadConstraints are ANDed. + x-kubernetes-list-type: map + x-kubernetes-list-map-keys: + - topologyKey + - whenUnsatisfiable + automountServiceAccountToken: + type: boolean + description: >- + AutomountServiceAccountToken indicates whether + a service account token should be + automatically mounted. + terminationGracePeriodSeconds: + type: integer + format: int64 + description: >- + Optional duration in seconds the pod needs to + terminate gracefully. May be decreased in + delete request. Value must be non-negative + integer. The value zero indicates delete + immediately. If this value is nil, the default + grace period will be used instead. The grace + period is the duration in seconds after the + processes running in the pod are sent a + termination signal and the time when the + processes are forcibly halted with a kill + signal. Set this value longer than the + expected cleanup time for your process. + Defaults to 30 seconds. + description: >- + Specification of the desired behavior of the pod. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + metadata: + type: object + description: >- + Standard object's metadata. More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + description: >- + Specifies the pod that will be created for this + TaskSpec when executing a Job + minAvailable: + type: integer + format: int32 + description: >- + The minimal available pods to run for this Task + Defaults to the task replicas + topologyPolicy: + type: string + description: Specifies the topology policy of task + description: TaskSpec specifies the task specification of Job. + description: Tasks specifies the task specification of Job + plugins: + type: object + description: >- + Specifies the plugin of job Key is plugin name, value is the + arguments of the plugin + additionalProperties: + type: array + items: + type: string + volumes: + type: array + items: + type: object + required: + - mountPath + properties: + mountPath: + type: string + description: >- + Path within the container at which the volume should + be mounted. Must not contain ':'. + volumeClaim: + type: object + properties: + selector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} pairs. A + single {key,value} in the matchLabels map is + equivalent to an element of matchExpressions, + whose key field is "key", the operator is + "In", and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a selector + that contains values, a key, and an operator + that relates the key and values. + description: >- + matchExpressions is a list of label selector + requirements. The requirements are ANDed. + description: >- + A label query over volumes to consider for + binding. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of compute + resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests is + omitted for a container, it defaults to Limits + if that is explicitly specified, otherwise to + an implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Resources represents the minimum resources the + volume should have. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + dataSource: + type: object + required: + - kind + - name + properties: + kind: + type: string + description: Kind is the type of resource being referenced + name: + type: string + description: Name is the name of resource being referenced + apiGroup: + type: string + description: >- + APIGroup is the group for the resource being + referenced. If APIGroup is not specified, the + specified Kind must be in the core API group. + For any other third-party types, APIGroup is + required. + description: >- + This field can be used to specify either: * An + existing VolumeSnapshot object + (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * + An existing PVC (PersistentVolumeClaim) * An + existing custom resource/object that implements + data population (Alpha) In order to use + VolumeSnapshot object types, the appropriate + feature gate must be enabled + (VolumeSnapshotDataSource or AnyVolumeDataSource) + If the provisioner or an external controller can + support the specified data source, it will create + a new volume based on the contents of the + specified data source. If the specified data + source is not supported, the volume will not be + created and the failure will be reported as an + event. In the future, we plan to support more data + source types and the behavior of the provisioner + may change. + volumeMode: + type: string + description: >- + volumeMode defines what type of volume is required + by the claim. Value of Filesystem is implied when + not included in claim spec. + volumeName: + type: string + description: >- + VolumeName is the binding reference to the + PersistentVolume backing this claim. + accessModes: + type: array + items: + type: string + description: >- + AccessModes contains the desired access modes the + volume should have. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + storageClassName: + type: string + description: >- + Name of the StorageClass required by the claim. + More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + description: VolumeClaim defines the PVC used by the VolumeMount. + volumeClaimName: + type: string + description: defined the PVC name + description: 'VolumeSpec defines the specification of Volume, e.g. PVC.' + description: The volumes mount on Job + maxRetry: + type: integer + format: int32 + description: >- + Specifies the maximum number of retries before marking this + Job failed. Defaults to 3. + policies: + type: array + items: + type: object + properties: + event: + type: string + description: >- + The Event recorded by scheduler; the controller takes + actions according to this Event. + action: + type: string + description: >- + The action that will be taken to the PodGroup + according to Event. One of "Restart", "None". Default + to None. + events: + type: array + items: + type: string + description: 'Event represent the phase of Job, e.g. pod-failed.' + description: >- + The Events recorded by scheduler; the controller takes + actions according to this Events. + timeout: + type: string + description: >- + Timeout is the grace period for controller to take + actions. Default to nil (take action immediately). + exitCode: + type: integer + format: int32 + description: >- + The exit code of the pod container, controller will + take action according to this code. Note: only one of + `Event` or `ExitCode` can be specified. + description: >- + LifecyclePolicy specifies the lifecycle and error handling + of task and job. + description: Specifies the default lifecycle of tasks + minSuccess: + type: integer + format: int32 + minimum: 1 + description: The minimal success pods to run for this Job + minAvailable: + type: integer + format: int32 + description: >- + The minimal available pods to run for this Job Defaults to + the summary of tasks' replicas + schedulerName: + type: string + description: >- + SchedulerName is the default value of + `tasks.template.spec.schedulerName`. + runningEstimate: + type: string + description: >- + Running Estimate is a user running duration estimate for the + job Default to nil + priorityClassName: + type: string + description: 'If specified, indicates the job''s priority.' + ttlSecondsAfterFinished: + type: integer + format: int32 + description: >- + ttlSecondsAfterFinished limits the lifetime of a Job that + has finished execution (either Completed or Failed). If this + field is set, ttlSecondsAfterFinished after the Job + finishes, it is eligible to be automatically deleted. If + this field is unset, the Job won't be automatically deleted. + If this field is set to zero, the Job becomes eligible to be + deleted immediately after it finishes. + description: >- + Specification of the desired behavior of the volcano job, + including the minAvailable + status: + type: object + properties: + state: + type: object + properties: + phase: + type: string + description: The phase of Job. + reason: + type: string + description: >- + Unique, one-word, CamelCase reason for the phase's last + transition. + message: + type: string + description: >- + Human-readable message indicating details about last + transition. + lastTransitionTime: + type: string + format: date-time + description: >- + Last time the condition transit from one phase to + another. + description: Current state of Job. + failed: + type: integer + format: int32 + description: The number of pods which reached phase Failed. + pending: + type: integer + format: int32 + description: The number of pending pods. + running: + type: integer + format: int32 + description: The number of running pods. + unknown: + type: integer + format: int32 + description: The number of pods which reached phase Unknown. + version: + type: integer + format: int32 + description: Current version of job + succeeded: + type: integer + format: int32 + description: The number of pods which reached phase Succeeded. + retryCount: + type: integer + format: int32 + description: The number of Job retries. + terminating: + type: integer + format: int32 + description: The number of pods which reached phase Terminating. + minAvailable: + type: integer + format: int32 + description: The minimal available pods to run for this Job + runningDuration: + type: string + description: >- + The job running duration is the length of time from job + running to complete. + taskStatusCount: + type: object + description: The status of pods for each task + additionalProperties: + type: object + properties: + phase: + type: object + description: The phase of Task. + additionalProperties: + type: integer + format: int32 + description: >- + TaskState contains details for the current state of the + task. + controlledResources: + type: object + description: >- + The resources that controlled by this job, e.g. Service, + ConfigMap + additionalProperties: + type: string + description: Current status of the volcano Job + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Job defines the volcano job. + served: true + storage: true + subresources: + status: {} + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: podgroups.scheduling.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: scheduling.volcano.sh + names: + kind: PodGroup + plural: podgroups + listKind: PodGroupList + singular: podgroup + shortNames: + - pg + - podgroup-v1beta1 + scope: Namespaced + versions: + - name: v1beta1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + queue: + type: string + description: >- + Queue defines the queue to allocate resource for PodGroup; + if queue does not exist, the PodGroup will not be scheduled. + Defaults to `default` Queue with the lowest weight. + minMember: + type: integer + format: int32 + description: >- + MinMember defines the minimal number of members/tasks to run + the pod group; if there's not enough resources to start all + tasks, the scheduler will not start anyone. + minResources: + type: object + description: >- + MinResources defines the minimal resource of members/tasks + to run the pod group; if there's not enough resources to + start all tasks, the scheduler will not start anyone. + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + minTaskMember: + type: object + description: >- + MinTaskMember defines the minimal number of pods to run each + task in the pod group; if there's not enough resources to + start each task, the scheduler will not start anyone. + additionalProperties: + type: integer + format: int32 + priorityClassName: + type: string + description: >- + If specified, indicates the PodGroup's priority. + "system-node-critical" and "system-cluster-critical" are two + special keywords which indicate the highest priorities with + the former being the highest priority. Any other name must + be defined by creating a PriorityClass object with that + name. If not specified, the PodGroup priority will be + default or zero if there is no default. + description: >- + Specification of the desired behavior of the pod group. More + info: + https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + status: + type: object + properties: + phase: + type: string + description: Current phase of PodGroup. + failed: + type: integer + format: int32 + description: The number of pods which reached phase Failed. + running: + type: integer + format: int32 + description: The number of actively running pods. + succeeded: + type: integer + format: int32 + description: The number of pods which reached phase Succeeded. + conditions: + type: array + items: + type: object + properties: + type: + type: string + description: Type is the type of the condition + reason: + type: string + description: >- + Unique, one-word, CamelCase reason for the phase's + last transition. + status: + type: string + description: Status is the status of the condition. + message: + type: string + description: >- + Human-readable message indicating details about last + transition. + transitionID: + type: string + description: The ID of condition transition. + lastTransitionTime: + type: string + format: date-time + description: >- + Last time the phase transitioned from another to + current phase. + description: >- + PodGroupCondition contains details for the current state + of this pod group. + description: The conditions of PodGroup. + description: >- + Status represents the current information about a pod group. + This data may not be up to date. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: PodGroup is a collection of Pod; used for batch workload. + served: true + storage: true + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: queues.scheduling.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: scheduling.volcano.sh + names: + kind: Queue + plural: queues + listKind: QueueList + singular: queue + shortNames: + - q + - queue-v1beta1 + scope: Cluster + versions: + - name: v1beta1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + weight: + type: integer + format: int32 + capability: + type: object + description: 'ResourceList is a set of (resource name, quantity) pairs.' + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + reclaimable: + type: boolean + description: >- + Reclaimable indicate whether the queue can be reclaimed by + other queue + description: >- + Specification of the desired behavior of the queue. More info: + https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + status: + type: object + properties: + state: + type: string + description: State is state of queue + inqueue: + type: integer + format: int32 + description: The number of `Inqueue` PodGroup in this queue. + pending: + type: integer + format: int32 + description: The number of 'Pending' PodGroup in this queue. + running: + type: integer + format: int32 + description: The number of 'Running' PodGroup in this queue. + unknown: + type: integer + format: int32 + description: The number of 'Unknown' PodGroup in this queue. + description: The status of queue. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Queue is a queue of PodGroup. + served: true + storage: true + subresources: + status: {} + conversion: + strategy: None +--- \ No newline at end of file diff --git a/installer/deploys/paddleflow-csi-plugin/README.md b/installer/deploys/paddleflow-csi-plugin/README.md index b71eee090..add3cbd24 100644 --- a/installer/deploys/paddleflow-csi-plugin/README.md +++ b/installer/deploys/paddleflow-csi-plugin/README.md @@ -16,9 +16,9 @@ step2. 部署 **如果前面检查命令返回的结果为空**,无需修改配置,可直接部署: ```shell # Kubernetes version >= v1.18 -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml -n paddleflow # Kubernetes v1.13= v1.18 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -n paddleflow -f - # Kubernetes version < v1.18 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -n paddleflow -f - # 为了在kubernetes == v1.13的集群中部署scsi插件,kubernetes集群需要满足以下配置。 # kube-apiserver启动参数: --feature-gates=CSIDriverRegistry=true @@ -44,7 +44,7 @@ curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14 # kubelet启动参数 --feature-gates=CSIDriverRegistry=true # 1.13环境中的csi安装命令 -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -f - +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml | sed 's@/var/lib/kubelet@{{KUBELET_DIR}}@g' | kubectl apply -n paddleflow -f - ``` diff --git a/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml b/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml index eedc91a30..aa767e3db 100644 --- a/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml +++ b/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-before-v1-18.yaml @@ -1,392 +1,607 @@ +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/ServiceAccount-csi-node-sa.yaml apiVersion: v1 -kind: Namespace +kind: ServiceAccount metadata: - name: paddleflow + creationTimestamp: null + name: csi-node-sa + namespace: 'paddleflow' --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ServiceAccount-pfs-csi-provisioner.yaml apiVersion: v1 kind: ServiceAccount metadata: - name: csi-node-sa - namespace: paddleflow - + creationTimestamp: null + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-csi-plugin-clusterrole -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete", "patch"] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [""] - resources: ["nodes/proxy"] - verbs: ["get", "list", "watch", "update", "patch"] - + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-plugin' +data: {} --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-secret.yaml +kind: Secret apiVersion: v1 -kind: ServiceAccount metadata: - name: pfs-csi-provisioner - namespace: paddleflow - + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-provisioner' +data: {} +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-plugin' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-provisioner' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} --- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRole-paddleflow-csi-plugin-clusterrole.yaml +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole +metadata: + creationTimestamp: null + name: paddleflow-csi-plugin-clusterrole +rules: +- apiGroups: + - "" + resources: + - events + verbs: + - get + - list + - watch + - create + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete + - patch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create + - update + - bind + - patch +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - nodes/proxy + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRole-external-provisioner-runner.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole metadata: + creationTimestamp: null name: external-provisioner-runner rules: - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "update"] - - apiGroups: ["storage.k8s.io"] - resources: ["storageclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["list", "watch", "create", "update", "patch"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshots"] - verbs: ["get", "list"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshotcontents"] - verbs: ["get", "list"] - - apiGroups: ["storage.k8s.io"] - resources: ["csinodes"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["get", "list", "watch"] - +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - events + verbs: + - list + - watch + - create + - update + - patch +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshots + verbs: + - get + - list +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshotcontents + verbs: + - get + - list +- apiGroups: + - storage.k8s.io + resources: + - csinodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch --- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRoleBinding-csi-plugin-clusterrolebinding.yaml +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: csi-plugin-clusterrolebinding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-csi-plugin-clusterrole +subjects: +- kind: ServiceAccount + name: csi-node-sa + namespace: paddleflow +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRoleBinding-csi-provisioner-role.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding metadata: + creationTimestamp: null name: csi-provisioner-role -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow roleRef: + apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: external-provisioner-runner - apiGroup: rbac.authorization.k8s.io - +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: Role +# Source: pfchart/charts/pfs-csi-provisioner/templates/Role-external-provisioner-cfg.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: Role metadata: - namespace: paddleflow + creationTimestamp: null name: external-provisioner-cfg + namespace: 'paddleflow' rules: - - apiGroups: [""] - resources: ["endpoints"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - - apiGroups: ["coordination.k8s.io"] - resources: ["leases"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - +- apiGroups: + - "" + resources: + - endpoints + verbs: + - get + - watch + - list + - delete + - update + - create +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - get + - watch + - list + - delete + - update + - create --- -kind: RoleBinding +# Source: pfchart/charts/pfs-csi-provisioner/templates/RoleBinding-csi-provisioner-role-cfg.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding metadata: + creationTimestamp: null name: csi-provisioner-role-cfg - namespace: paddleflow -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow + namespace: 'paddleflow' roleRef: + apiGroup: rbac.authorization.k8s.io kind: Role name: external-provisioner-cfg - apiGroup: rbac.authorization.k8s.io - +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: Service +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-service.yaml apiVersion: v1 +kind: Service metadata: - name: pfs-csi-provisioner + name: pfs-csi-provisioner-service labels: app: pfs-csi-provisioner + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + + annotations: spec: + type: ClusterIP + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: port-0 + port: 12345 + protocol: TCP + targetPort: 12345 selector: app: pfs-csi-provisioner - ports: - - name: dummy - port: 12345 - ---- -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: paddleflow-csi-node-binding -subjects: - - kind: ServiceAccount - name: csi-node-sa - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-csi-plugin-clusterrole - apiGroup: rbac.authorization.k8s.io - --- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-daemonset.yaml apiVersion: apps/v1 kind: DaemonSet metadata: + #文件里的所有pfs-csi-plugin、pfs_csi_plugin都替换成实际名称 name: pfs-csi-plugin - namespace: paddleflow + labels: + app: pfs-csi-plugin + chart: "pfs-csi-plugin-0.0.80-rrnwa0" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' + annotations: + reloader.stakater.com/auto: "false" spec: - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-plugin template: metadata: - creationTimestamp: null labels: app: pfs-csi-plugin + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' spec: + dnsPolicy: ClusterFirstWithHostNet + restartPolicy: Always + hostNetwork: true + serviceAccountName: csi-node-sa containers: - - args: - - --v=5 - - --csi-address=/csi/csi.sock - - --kubelet-registration-path=/var/lib/kubelet/plugins/pfs-csi/csi.sock - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + - name: pfs-csi-plugin + image: "paddleflow/csi-driver-registrar:1.2.0" + imagePullPolicy: "IfNotPresent" + lifecycle: + preStop: + exec: + command: + - /bin/sh + - -c + - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock + args: + - --v=5 + - --csi-address=/csi/csi.sock + - --kubelet-registration-path=$(KUBELET_DATA_PATH)/plugins/pfs-csi/csi.sock + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_plugin-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - - name: MOUNT_POINT_INTERVAL_TIME - value: "10" - image: paddleflow/csi-driver-registrar:1.2.0 - imagePullPolicy: IfNotPresent - lifecycle: - preStop: - exec: - command: - - /bin/sh - - -c - - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock - name: pfs-csi-plugin - resources: {} - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /registration - mountPropagation: None - name: registration-dir - - command: - - tini - - -- - - /bin/sh - - -c - - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) - --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow - --log-level=debug - env: - - name: CSI_ENDPOINT - value: unix:///csi/csi.sock - - name: DEFAULT_GID_ENV - value: "601" - - name: DEFAULT_UID_ENV - value: "601" - - name: KUBELET_DATA_PATH - value: /var/lib/kubelet - - name: CSI_POD_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.name - - name: CSI_NAMESPACE - valueFrom: - fieldRef: - apiVersion: v1 + + - name: "MOUNT_POINT_INTERVAL_TIME" + value: "10" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: registration-dir + mountPath: /registration + mountPropagation: None + subPath: + + - name: csi-storage-driver + image: "paddleflow/pfs-csi-plugin:1.4.6" + imagePullPolicy: + command: + - /sbin/tini + - -- + - /bin/sh + - -c + - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) + --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow + --log-level=debug + securityContext: + capabilities: + add: + - SYS_ADMIN + privileged: true + runAsGroup: 0 + runAsUser: 0 + resources: + requests: + cpu: "0.5" + memory: 1000Mi + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #env_list + - name: "CSI_ENDPOINT" + value: "unix:///csi/csi.sock" + - name: "DEFAULT_GID_ENV" + value: "601" + - name: "DEFAULT_UID_ENV" + value: "601" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + - name: "CSI_NAMESPACE" + valueFrom: + fieldRef: fieldPath: metadata.namespace - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + + - name: "CSI_POD_NAME" + valueFrom: + fieldRef: + fieldPath: metadata.name + + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - image: paddleflow/pfs-csi-plugin:1.4.2 - imagePullPolicy: IfNotPresent - name: csi-storage-driver - resources: - requests: - cpu: "500m" - memory: 1G - securityContext: - capabilities: - add: - - SYS_ADMIN - privileged: true - runAsGroup: 0 - runAsUser: 0 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /var/lib/kubelet/pods - mountPropagation: Bidirectional - name: mountpoint-dir - - mountPath: /var/lib/kubelet/plugins - mountPropagation: Bidirectional - name: plugins-dir - - mountPath: /home/paddleflow/log - mountPropagation: None - name: paddlefow-csi-log - - mountPath: /home/paddleflow/mnt - mountPropagation: Bidirectional - name: pfs-mnt - dnsPolicy: ClusterFirstWithHostNet - hostNetwork: true - restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: csi-node-sa - serviceAccountName: csi-node-sa - terminationGracePeriodSeconds: 30 + #env end + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: mountpoint-dir + mountPath: /var/lib/kubelet/pods + mountPropagation: Bidirectional + subPath: + - name: plugins-dir + mountPath: /var/lib/kubelet/plugins + mountPropagation: Bidirectional + subPath: + - name: paddlefow-csi-log + mountPath: /home/paddleflow/log + mountPropagation: None + subPath: + - name: pfs-mnt + mountPath: /home/paddleflow/mnt + mountPropagation: Bidirectional + subPath: + + #sidecar container messages + initContainers: volumes: - - hostPath: - path: /dev/fuse - type: File - name: fuse - - hostPath: - path: /var/lib/kubelet/pods - type: DirectoryOrCreate - name: mountpoint-dir - - hostPath: - path: /home/paddleflow/log - type: DirectoryOrCreate - name: paddlefow-csi-log - - hostPath: - path: /var/lib/kubelet/data/paddleflow-fs/mnt - type: DirectoryOrCreate - name: pfs-mnt - - hostPath: - path: /var/lib/kubelet/plugins - type: DirectoryOrCreate - name: plugins-dir - - hostPath: - path: /var/lib/kubelet/plugins_registry - type: DirectoryOrCreate - name: registration-dir - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir - updateStrategy: - rollingUpdate: - maxUnavailable: 1 - type: RollingUpdate + - name: fuse + hostPath: + path: /dev/fuse + type: File + - name: mountpoint-dir + hostPath: + path: /var/lib/kubelet/pods + type: DirectoryOrCreate + - name: paddlefow-csi-log + hostPath: + path: /home/paddleflow/log + type: DirectoryOrCreate + - name: pfs-mnt + hostPath: + path: /var/lib/kubelet/data/paddleflow-fs/mnt + type: DirectoryOrCreate + - name: plugins-dir + hostPath: + path: /var/lib/kubelet/plugins + type: DirectoryOrCreate + - name: registration-dir + hostPath: + path: /var/lib/kubelet/plugins_registry + type: DirectoryOrCreate + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: - annotations: - app: pfs-csi-provisioner + #文件里的所有pfs-csi-provisioner、pfs_csi_provisioner都替换成实际名称 + name: pfs-csi-provisioner labels: app: pfs-csi-provisioner - name: pfs-csi-provisioner - namespace: paddleflow + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-provisioner - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate template: metadata: - annotations: - app: pfs-csi-provisioner labels: app: pfs-csi-provisioner + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner spec: - affinity: - podAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: app - operator: In - values: - - pfs-csi-plugin - topologyKey: kubernetes.io/hostname - containers: - - args: - - -v=5 - - --csi-address=/csi/csi.sock - - --feature-gates=Topology=true - image: paddleflow/csi-provisioner:1.4.0 - imagePullPolicy: IfNotPresent - name: pfs-csi-provisioner - ports: - - containerPort: 12345 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir dnsPolicy: ClusterFirst restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: pfs-csi-provisioner - serviceAccountName: pfs-csi-provisioner - terminationGracePeriodSeconds: 30 tolerations: - effect: NoSchedule operator: Exists - effect: NoExecute operator: Exists + + affinity: + podAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: app + operator: In + values: + - pfs-csi-plugin + topologyKey: kubernetes.io/hostname + serviceAccountName: pfs-csi-provisioner + containers: + - name: pfs-csi-provisioner + image: "paddleflow/csi-provisioner:1.4.0" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - -v=5 + - --csi-address=/csi/csi.sock + - --feature-gates=Topology=true + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_provisioner-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + initContainers: volumes: - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- -apiVersion: storage.k8s.io/v1beta1 +# Source: pfchart/charts/pfs-csi-provisioner/templates/paddleflowstorage.yaml +apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: - name: paddleflowstorage + name: paddleflowstorage spec: - attachRequired: false - podInfoOnMount: false - volumeLifecycleModes: - - Persistent \ No newline at end of file + attachRequired: false + podInfoOnMount: false + volumeLifecycleModes: + - Persistent \ No newline at end of file diff --git a/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml b/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml index 9bb915223..aa767e3db 100644 --- a/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml +++ b/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy-v1-13.yaml @@ -1,418 +1,607 @@ +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/ServiceAccount-csi-node-sa.yaml apiVersion: v1 -kind: Namespace +kind: ServiceAccount metadata: - name: paddleflow + creationTimestamp: null + name: csi-node-sa + namespace: 'paddleflow' --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ServiceAccount-pfs-csi-provisioner.yaml apiVersion: v1 kind: ServiceAccount metadata: - name: csi-node-sa - namespace: paddleflow - + creationTimestamp: null + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-csi-plugin-clusterrole -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete", "patch"] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [""] - resources: ["nodes/proxy"] - verbs: ["get", "list", "watch", "update", "patch"] - + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-plugin' +data: {} --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-secret.yaml +kind: Secret apiVersion: v1 -kind: ServiceAccount metadata: - name: pfs-csi-provisioner - namespace: paddleflow - + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-provisioner' +data: {} +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-plugin' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-provisioner' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRole-paddleflow-csi-plugin-clusterrole.yaml +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole +metadata: + creationTimestamp: null + name: paddleflow-csi-plugin-clusterrole +rules: +- apiGroups: + - "" + resources: + - events + verbs: + - get + - list + - watch + - create + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete + - patch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create + - update + - bind + - patch +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - nodes/proxy + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRole-external-provisioner-runner.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole metadata: + creationTimestamp: null name: external-provisioner-runner rules: - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "update"] - - apiGroups: ["storage.k8s.io"] - resources: ["storageclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["list", "watch", "create", "update", "patch"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshots"] - verbs: ["get", "list"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshotcontents"] - verbs: ["get", "list"] - - apiGroups: ["storage.k8s.io"] - resources: ["csinodes"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["get", "list", "watch"] - +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - events + verbs: + - list + - watch + - create + - update + - patch +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshots + verbs: + - get + - list +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshotcontents + verbs: + - get + - list +- apiGroups: + - storage.k8s.io + resources: + - csinodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch --- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRoleBinding-csi-plugin-clusterrolebinding.yaml +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: csi-plugin-clusterrolebinding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-csi-plugin-clusterrole +subjects: +- kind: ServiceAccount + name: csi-node-sa + namespace: paddleflow +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRoleBinding-csi-provisioner-role.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding metadata: + creationTimestamp: null name: csi-provisioner-role -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow roleRef: + apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: external-provisioner-runner - apiGroup: rbac.authorization.k8s.io - +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: Role +# Source: pfchart/charts/pfs-csi-provisioner/templates/Role-external-provisioner-cfg.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: Role metadata: - namespace: paddleflow + creationTimestamp: null name: external-provisioner-cfg + namespace: 'paddleflow' rules: - - apiGroups: [""] - resources: ["endpoints"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - - apiGroups: ["coordination.k8s.io"] - resources: ["leases"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - +- apiGroups: + - "" + resources: + - endpoints + verbs: + - get + - watch + - list + - delete + - update + - create +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - get + - watch + - list + - delete + - update + - create --- -kind: RoleBinding +# Source: pfchart/charts/pfs-csi-provisioner/templates/RoleBinding-csi-provisioner-role-cfg.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding metadata: + creationTimestamp: null name: csi-provisioner-role-cfg - namespace: paddleflow -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow + namespace: 'paddleflow' roleRef: + apiGroup: rbac.authorization.k8s.io kind: Role name: external-provisioner-cfg - apiGroup: rbac.authorization.k8s.io - +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: Service +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-service.yaml apiVersion: v1 +kind: Service metadata: - name: pfs-csi-provisioner + name: pfs-csi-provisioner-service labels: app: pfs-csi-provisioner + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + + annotations: spec: + type: ClusterIP + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: port-0 + port: 12345 + protocol: TCP + targetPort: 12345 selector: app: pfs-csi-provisioner - ports: - - name: dummy - port: 12345 - ---- -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: paddleflow-csi-node-binding -subjects: - - kind: ServiceAccount - name: csi-node-sa - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-csi-plugin-clusterrole - apiGroup: rbac.authorization.k8s.io - --- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-daemonset.yaml apiVersion: apps/v1 kind: DaemonSet metadata: + #文件里的所有pfs-csi-plugin、pfs_csi_plugin都替换成实际名称 name: pfs-csi-plugin - namespace: paddleflow + labels: + app: pfs-csi-plugin + chart: "pfs-csi-plugin-0.0.80-rrnwa0" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' + annotations: + reloader.stakater.com/auto: "false" spec: - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-plugin template: metadata: - creationTimestamp: null labels: app: pfs-csi-plugin + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' spec: + dnsPolicy: ClusterFirstWithHostNet + restartPolicy: Always + hostNetwork: true + serviceAccountName: csi-node-sa containers: - - args: - - --v=5 - - --csi-address=/csi/csi.sock - - --kubelet-registration-path=/var/lib/kubelet/plugins/pfs-csi/csi.sock - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + - name: pfs-csi-plugin + image: "paddleflow/csi-driver-registrar:1.2.0" + imagePullPolicy: "IfNotPresent" + lifecycle: + preStop: + exec: + command: + - /bin/sh + - -c + - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock + args: + - --v=5 + - --csi-address=/csi/csi.sock + - --kubelet-registration-path=$(KUBELET_DATA_PATH)/plugins/pfs-csi/csi.sock + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_plugin-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - - name: MOUNT_POINT_INTERVAL_TIME - value: "10" - image: paddleflow/csi-driver-registrar:1.2.0 - imagePullPolicy: IfNotPresent - lifecycle: - preStop: - exec: - command: - - /bin/sh - - -c - - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock - name: pfs-csi-plugin - resources: {} - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /registration - mountPropagation: None - name: registration-dir - - command: - - tini - - -- - - /bin/sh - - -c - - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) - --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow - --log-level=debug - env: - - name: CSI_ENDPOINT - value: unix:///csi/csi.sock - - name: DEFAULT_GID_ENV - value: "601" - - name: DEFAULT_UID_ENV - value: "601" - - name: KUBELET_DATA_PATH - value: /var/lib/kubelet - - name: CSI_POD_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.name - - name: CSI_NAMESPACE - valueFrom: - fieldRef: - apiVersion: v1 + + - name: "MOUNT_POINT_INTERVAL_TIME" + value: "10" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: registration-dir + mountPath: /registration + mountPropagation: None + subPath: + + - name: csi-storage-driver + image: "paddleflow/pfs-csi-plugin:1.4.6" + imagePullPolicy: + command: + - /sbin/tini + - -- + - /bin/sh + - -c + - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) + --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow + --log-level=debug + securityContext: + capabilities: + add: + - SYS_ADMIN + privileged: true + runAsGroup: 0 + runAsUser: 0 + resources: + requests: + cpu: "0.5" + memory: 1000Mi + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #env_list + - name: "CSI_ENDPOINT" + value: "unix:///csi/csi.sock" + - name: "DEFAULT_GID_ENV" + value: "601" + - name: "DEFAULT_UID_ENV" + value: "601" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + - name: "CSI_NAMESPACE" + valueFrom: + fieldRef: fieldPath: metadata.namespace - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + + - name: "CSI_POD_NAME" + valueFrom: + fieldRef: + fieldPath: metadata.name + + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - image: paddleflow/pfs-csi-plugin:1.4.2 - imagePullPolicy: IfNotPresent - name: csi-storage-driver - resources: - requests: - cpu: "500m" - memory: 1G - securityContext: - capabilities: - add: - - SYS_ADMIN - privileged: true - runAsGroup: 0 - runAsUser: 0 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /var/lib/kubelet/pods - mountPropagation: Bidirectional - name: mountpoint-dir - - mountPath: /var/lib/kubelet/plugins - mountPropagation: Bidirectional - name: plugins-dir - - mountPath: /home/paddleflow/log - mountPropagation: None - name: paddlefow-csi-log - - mountPath: /home/paddleflow/mnt - mountPropagation: Bidirectional - name: pfs-mnt - dnsPolicy: ClusterFirstWithHostNet - hostNetwork: true - restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: csi-node-sa - serviceAccountName: csi-node-sa - terminationGracePeriodSeconds: 30 + #env end + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: mountpoint-dir + mountPath: /var/lib/kubelet/pods + mountPropagation: Bidirectional + subPath: + - name: plugins-dir + mountPath: /var/lib/kubelet/plugins + mountPropagation: Bidirectional + subPath: + - name: paddlefow-csi-log + mountPath: /home/paddleflow/log + mountPropagation: None + subPath: + - name: pfs-mnt + mountPath: /home/paddleflow/mnt + mountPropagation: Bidirectional + subPath: + + #sidecar container messages + initContainers: volumes: - - hostPath: - path: /dev/fuse - type: File - name: fuse - - hostPath: - path: /var/lib/kubelet/pods - type: DirectoryOrCreate - name: mountpoint-dir - - hostPath: - path: /home/paddleflow/log - type: DirectoryOrCreate - name: paddlefow-csi-log - - hostPath: - path: /var/lib/kubelet/data/paddleflow-fs/mnt - type: DirectoryOrCreate - name: pfs-mnt - - hostPath: - path: /var/lib/kubelet/plugins - type: DirectoryOrCreate - name: plugins-dir - - hostPath: - path: /var/lib/kubelet/plugins_registry - type: DirectoryOrCreate - name: registration-dir - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir - updateStrategy: - rollingUpdate: - maxUnavailable: 1 - type: RollingUpdate + - name: fuse + hostPath: + path: /dev/fuse + type: File + - name: mountpoint-dir + hostPath: + path: /var/lib/kubelet/pods + type: DirectoryOrCreate + - name: paddlefow-csi-log + hostPath: + path: /home/paddleflow/log + type: DirectoryOrCreate + - name: pfs-mnt + hostPath: + path: /var/lib/kubelet/data/paddleflow-fs/mnt + type: DirectoryOrCreate + - name: plugins-dir + hostPath: + path: /var/lib/kubelet/plugins + type: DirectoryOrCreate + - name: registration-dir + hostPath: + path: /var/lib/kubelet/plugins_registry + type: DirectoryOrCreate + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: - annotations: - app: pfs-csi-provisioner + #文件里的所有pfs-csi-provisioner、pfs_csi_provisioner都替换成实际名称 + name: pfs-csi-provisioner labels: app: pfs-csi-provisioner - name: pfs-csi-provisioner - namespace: paddleflow + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-provisioner - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate template: metadata: - annotations: - app: pfs-csi-provisioner labels: app: pfs-csi-provisioner + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner spec: - affinity: - podAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: app - operator: In - values: - - pfs-csi-plugin - topologyKey: kubernetes.io/hostname - containers: - - args: - - -v=5 - - --csi-address=/csi/csi.sock - - --feature-gates=Topology=true - image: paddleflow/csi-provisioner:1.4.0 - imagePullPolicy: IfNotPresent - name: pfs-csi-provisioner - ports: - - containerPort: 12345 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir dnsPolicy: ClusterFirst restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: pfs-csi-provisioner - serviceAccountName: pfs-csi-provisioner - terminationGracePeriodSeconds: 30 tolerations: - effect: NoSchedule operator: Exists - effect: NoExecute operator: Exists + + affinity: + podAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: app + operator: In + values: + - pfs-csi-plugin + topologyKey: kubernetes.io/hostname + serviceAccountName: pfs-csi-provisioner + containers: + - name: pfs-csi-provisioner + image: "paddleflow/csi-provisioner:1.4.0" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - -v=5 + - --csi-address=/csi/csi.sock + - --feature-gates=Topology=true + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_provisioner-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + initContainers: volumes: - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir ---- -kind: CustomResourceDefinition -metadata: - name: csidrivers.csi.storage.k8s.io - labels: - addonmanager.kubernetes.io/mode: Reconcile -spec: - group: csi.storage.k8s.io - names: - kind: CSIDriver - plural: csidrivers - scope: Cluster - validation: - openAPIV3Schema: - properties: - spec: - description: Specification of the CSI Driver. - properties: - attachRequired: - description: Indicates this CSI volume driver requires an attach operation, - and that Kubernetes should call attach and wait for any attach operation - to complete before proceeding to mount. - type: boolean - podInfoOnMountVersion: - description: Indicates this CSI volume driver requires additional pod - information (like podName, podUID, etc.) during mount operations. - type: string - version: v1alpha1 + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/paddleflowstorage.yaml apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: - name: paddleflowstorage + name: paddleflowstorage spec: - attachRequired: false - podInfoOnMount: false \ No newline at end of file + attachRequired: false + podInfoOnMount: false + volumeLifecycleModes: + - Persistent \ No newline at end of file diff --git a/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml b/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml index cddb42d8c..3ca69655d 100644 --- a/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml +++ b/installer/deploys/paddleflow-csi-plugin/paddleflow-csi-plugin-deploy.yaml @@ -1,386 +1,607 @@ +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/ServiceAccount-csi-node-sa.yaml apiVersion: v1 -kind: Namespace +kind: ServiceAccount metadata: - name: paddleflow + creationTimestamp: null + name: csi-node-sa + namespace: 'paddleflow' --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ServiceAccount-pfs-csi-provisioner.yaml apiVersion: v1 kind: ServiceAccount metadata: - name: csi-node-sa - namespace: paddleflow - + creationTimestamp: null + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-csi-plugin-clusterrole -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete", "patch"] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [""] - resources: ["nodes/proxy"] - verbs: ["get", "list", "watch", "update", "patch"] - + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-plugin' +data: {} --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-secret.yaml +kind: Secret apiVersion: v1 -kind: ServiceAccount metadata: - name: pfs-csi-provisioner - namespace: paddleflow - + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-provisioner' +data: {} +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-plugin' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'pfs-csi-plugin' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'pfs-csi-plugin' + name: 'pfs-csi-provisioner' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} --- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRole-paddleflow-csi-plugin-clusterrole.yaml +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole +metadata: + creationTimestamp: null + name: paddleflow-csi-plugin-clusterrole +rules: +- apiGroups: + - "" + resources: + - events + verbs: + - get + - list + - watch + - create + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete + - patch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create + - update + - bind + - patch +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - nodes/proxy + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRole-external-provisioner-runner.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole metadata: + creationTimestamp: null name: external-provisioner-runner rules: - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "update"] - - apiGroups: ["storage.k8s.io"] - resources: ["storageclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["list", "watch", "create", "update", "patch"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshots"] - verbs: ["get", "list"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshotcontents"] - verbs: ["get", "list"] - - apiGroups: ["storage.k8s.io"] - resources: ["csinodes"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["get", "list", "watch"] - +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - events + verbs: + - list + - watch + - create + - update + - patch +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshots + verbs: + - get + - list +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshotcontents + verbs: + - get + - list +- apiGroups: + - storage.k8s.io + resources: + - csinodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch --- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRoleBinding-csi-plugin-clusterrolebinding.yaml +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: csi-plugin-clusterrolebinding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-csi-plugin-clusterrole +subjects: +- kind: ServiceAccount + name: csi-node-sa + namespace: paddleflow +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRoleBinding-csi-provisioner-role.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding metadata: + creationTimestamp: null name: csi-provisioner-role -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow roleRef: + apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: external-provisioner-runner - apiGroup: rbac.authorization.k8s.io - +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: Role +# Source: pfchart/charts/pfs-csi-provisioner/templates/Role-external-provisioner-cfg.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: Role metadata: - namespace: paddleflow + creationTimestamp: null name: external-provisioner-cfg + namespace: 'paddleflow' rules: - - apiGroups: [""] - resources: ["endpoints"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - - apiGroups: ["coordination.k8s.io"] - resources: ["leases"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - +- apiGroups: + - "" + resources: + - endpoints + verbs: + - get + - watch + - list + - delete + - update + - create +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - get + - watch + - list + - delete + - update + - create --- -kind: RoleBinding +# Source: pfchart/charts/pfs-csi-provisioner/templates/RoleBinding-csi-provisioner-role-cfg.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding metadata: + creationTimestamp: null name: csi-provisioner-role-cfg - namespace: paddleflow -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow + namespace: 'paddleflow' roleRef: + apiGroup: rbac.authorization.k8s.io kind: Role name: external-provisioner-cfg - apiGroup: rbac.authorization.k8s.io - +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' --- -kind: Service +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-service.yaml apiVersion: v1 +kind: Service metadata: - name: pfs-csi-provisioner + name: pfs-csi-provisioner-service labels: app: pfs-csi-provisioner + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + + annotations: spec: + type: ClusterIP + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: port-0 + port: 12345 + protocol: TCP + targetPort: 12345 selector: app: pfs-csi-provisioner - ports: - - name: dummy - port: 12345 - ---- -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: paddleflow-csi-node-binding -subjects: - - kind: ServiceAccount - name: csi-node-sa - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-csi-plugin-clusterrole - apiGroup: rbac.authorization.k8s.io - --- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-daemonset.yaml apiVersion: apps/v1 kind: DaemonSet metadata: + #文件里的所有pfs-csi-plugin、pfs_csi_plugin都替换成实际名称 name: pfs-csi-plugin - namespace: paddleflow + labels: + app: pfs-csi-plugin + chart: "pfs-csi-plugin-0.0.80-rrnwa0" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' + annotations: + reloader.stakater.com/auto: "false" spec: - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-plugin template: metadata: - creationTimestamp: null labels: app: pfs-csi-plugin + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' spec: - containers: - - args: - - --v=5 - - --csi-address=/csi/csi.sock - - --kubelet-registration-path=/var/lib/kubelet/plugins/pfs-csi/csi.sock - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: spec.nodeName - - name: MOUNT_POINT_INTERVAL_TIME - value: "10" - image: paddleflow/csi-driver-registrar:1.2.0 - imagePullPolicy: IfNotPresent - lifecycle: - preStop: - exec: - command: - - /bin/sh - - -c - - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock - name: pfs-csi-plugin - resources: {} - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /registration - mountPropagation: None - name: registration-dir - - command: - - tini - - -- - - /bin/sh - - -c - - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) - --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --log-level=debug - env: - - name: CSI_ENDPOINT - value: unix:///csi/csi.sock - - name: DEFAULT_GID_ENV - value: "601" - - name: DEFAULT_UID_ENV - value: "601" - - name: KUBELET_DATA_PATH - value: /var/lib/kubelet - - name: CSI_POD_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.name - - name: CSI_NAMESPACE - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.namespace - image: paddleflow/pfs-csi-plugin:1.4.5 - imagePullPolicy: IfNotPresent - name: csi-storage-driver - resources: - requests: - cpu: 500m - memory: 1G - securityContext: - capabilities: - add: - - SYS_ADMIN - privileged: true - runAsGroup: 0 - runAsUser: 0 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /var/lib/kubelet/pods - mountPropagation: Bidirectional - name: mountpoint-dir - - mountPath: /var/lib/kubelet/plugins - mountPropagation: Bidirectional - name: plugins-dir - - mountPath: /home/paddleflow/log - mountPropagation: None - name: paddlefow-csi-log - - mountPath: /home/paddleflow/mnt - mountPropagation: Bidirectional - name: pfs-mnt dnsPolicy: ClusterFirstWithHostNet - hostNetwork: true restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: csi-node-sa + hostNetwork: true serviceAccountName: csi-node-sa - terminationGracePeriodSeconds: 30 + containers: + - name: pfs-csi-plugin + image: "paddleflow/csi-driver-registrar:1.2.0" + imagePullPolicy: "IfNotPresent" + lifecycle: + preStop: + exec: + command: + - /bin/sh + - -c + - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock + args: + - --v=5 + - --csi-address=/csi/csi.sock + - --kubelet-registration-path=$(KUBELET_DATA_PATH)/plugins/pfs-csi/csi.sock + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_plugin-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: + fieldPath: spec.nodeName + + - name: "MOUNT_POINT_INTERVAL_TIME" + value: "10" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: registration-dir + mountPath: /registration + mountPropagation: None + subPath: + + - name: csi-storage-driver + image: "paddleflow/pfs-csi-plugin:1.4.6" + imagePullPolicy: + command: + - /sbin/tini + - -- + - /bin/sh + - -c + - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) + --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow + --log-level=debug + securityContext: + capabilities: + add: + - SYS_ADMIN + privileged: true + runAsGroup: 0 + runAsUser: 0 + resources: + requests: + cpu: "0.5" + memory: 1000Mi + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #env_list + - name: "CSI_ENDPOINT" + value: "unix:///csi/csi.sock" + - name: "DEFAULT_GID_ENV" + value: "601" + - name: "DEFAULT_UID_ENV" + value: "601" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + - name: "CSI_NAMESPACE" + valueFrom: + fieldRef: + fieldPath: metadata.namespace + + - name: "CSI_POD_NAME" + valueFrom: + fieldRef: + fieldPath: metadata.name + + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: + fieldPath: spec.nodeName + #env end + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: mountpoint-dir + mountPath: /var/lib/kubelet/pods + mountPropagation: Bidirectional + subPath: + - name: plugins-dir + mountPath: /var/lib/kubelet/plugins + mountPropagation: Bidirectional + subPath: + - name: paddlefow-csi-log + mountPath: /home/paddleflow/log + mountPropagation: None + subPath: + - name: pfs-mnt + mountPath: /home/paddleflow/mnt + mountPropagation: Bidirectional + subPath: + + #sidecar container messages + initContainers: volumes: - - hostPath: - path: /dev/fuse - type: File - name: fuse - - hostPath: - path: /var/lib/kubelet/pods - type: DirectoryOrCreate - name: mountpoint-dir - - hostPath: - path: /home/paddleflow/log - type: DirectoryOrCreate - name: paddlefow-csi-log - - hostPath: - path: /var/lib/kubelet/data/paddleflow-fs/mnt - type: DirectoryOrCreate - name: pfs-mnt - - hostPath: - path: /var/lib/kubelet/plugins - type: DirectoryOrCreate - name: plugins-dir - - hostPath: - path: /var/lib/kubelet/plugins_registry - type: DirectoryOrCreate - name: registration-dir - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir - updateStrategy: - rollingUpdate: - maxUnavailable: 1 - type: RollingUpdate + - name: fuse + hostPath: + path: /dev/fuse + type: File + - name: mountpoint-dir + hostPath: + path: /var/lib/kubelet/pods + type: DirectoryOrCreate + - name: paddlefow-csi-log + hostPath: + path: /home/paddleflow/log + type: DirectoryOrCreate + - name: pfs-mnt + hostPath: + path: /var/lib/kubelet/data/paddleflow-fs/mnt + type: DirectoryOrCreate + - name: plugins-dir + hostPath: + path: /var/lib/kubelet/plugins + type: DirectoryOrCreate + - name: registration-dir + hostPath: + path: /var/lib/kubelet/plugins_registry + type: DirectoryOrCreate + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: - annotations: - app: pfs-csi-provisioner + #文件里的所有pfs-csi-provisioner、pfs_csi_provisioner都替换成实际名称 + name: pfs-csi-provisioner labels: app: pfs-csi-provisioner - name: pfs-csi-provisioner - namespace: paddleflow + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "pfs-csi-plugin" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-provisioner - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate template: metadata: - annotations: - app: pfs-csi-provisioner labels: app: pfs-csi-provisioner + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'pfs-csi-plugin' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner spec: - affinity: - podAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: app - operator: In - values: - - pfs-csi-plugin - topologyKey: kubernetes.io/hostname - containers: - - args: - - -v=5 - - --csi-address=/csi/csi.sock - - --feature-gates=Topology=true - image: paddleflow/csi-provisioner:1.4.0 - imagePullPolicy: IfNotPresent - name: pfs-csi-provisioner - ports: - - containerPort: 12345 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir dnsPolicy: ClusterFirst restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: pfs-csi-provisioner - serviceAccountName: pfs-csi-provisioner - terminationGracePeriodSeconds: 30 tolerations: - effect: NoSchedule operator: Exists - effect: NoExecute operator: Exists + + affinity: + podAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: app + operator: In + values: + - pfs-csi-plugin + topologyKey: kubernetes.io/hostname + serviceAccountName: pfs-csi-provisioner + containers: + - name: pfs-csi-provisioner + image: "paddleflow/csi-provisioner:1.4.0" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - -v=5 + - --csi-address=/csi/csi.sock + - --feature-gates=Topology=true + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_provisioner-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + initContainers: volumes: - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/paddleflowstorage.yaml apiVersion: storage.k8s.io/v1 kind: CSIDriver metadata: - name: paddleflowstorage + name: paddleflowstorage spec: - attachRequired: false - podInfoOnMount: false - volumeLifecycleModes: - - Persistent \ No newline at end of file + attachRequired: false + podInfoOnMount: false + volumeLifecycleModes: + - Persistent \ No newline at end of file diff --git a/installer/deploys/paddleflow-server/README.md b/installer/deploys/paddleflow-server/README.md index 69ef6ca94..d61c9145a 100644 --- a/installer/deploys/paddleflow-server/README.md +++ b/installer/deploys/paddleflow-server/README.md @@ -8,7 +8,7 @@ touch /mnt/paddleflow.db && chmod 666 /mnt/paddleflow.db # 创建基于sqllite的paddleflow-server # For x86: -kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml +kubectl create -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml -n paddleflow # For arm64: todo ``` @@ -22,12 +22,12 @@ export DB_USER=paddleflow export DB_PW=paddleflow export DB_DATABASE=paddleflow wget https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/database/paddleflow.sql -bash < <(curl -s https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/database/execute.sh) +bash < <(curl -s https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/database/execute.sh) # 创建基于mysql的paddleflow-server # For x86: -curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.5/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml | \ +curl -sSL https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/release-0.14.6/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml | \ sed -e "s/sqlite/${DB_DRIVER}/g" -e "s/host: 127.0.0.1/host: ${DB_HOST}/g" -e "s/3306/${DB_PORT}/g" -e "s/user: paddleflow/user: ${DB_USER}/g" -e "s/password: paddleflow/password: ${DB_PW}/g" -e "s/database: paddleflow/database: ${DB_DATABASE}/g" \ -| kubectl apply -f - +| kubectl apply -n paddleflow -f - # For arm64: todo ``` diff --git a/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml b/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml index 93c7b1ede..9a4474941 100644 --- a/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml +++ b/installer/deploys/paddleflow-server/paddleflow-server-deploy.yaml @@ -1,246 +1,101 @@ -apiVersion: v1 -kind: Namespace -metadata: - name: paddleflow --- -# ServiceAccount for paddleflow-server +# Source: pfchart/charts/paddleflow-server/templates/ServiceAccount-paddleflow-server.yaml apiVersion: v1 kind: ServiceAccount metadata: + creationTimestamp: null name: paddleflow-server - namespace: paddleflow - + namespace: 'paddleflow' --- -# ClusterRole for paddleflow-server -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-server -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods", "pods/log" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims", "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create", "delete" ] - - apiGroups: [ "" ] - resources: [ "namespaces" ] - verbs: [ "get", "list" ] - - apiGroups: [""] - resources: ["nodes", "nodes/proxy"] - verbs: ["get", "list", "watch"] - - apiGroups: ["sparkoperator.k8s.io"] - resources: ["sparkapplications", "sparkapplications/status", "scheduledsparkapplications", "scheduledsparkapplications/status" ] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["batch.paddlepaddle.org"] - resources: ["paddlejobs", "paddlejobs/finalizers", "paddlejobs/status"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups", "queues", "queues/status", "elasticresourcequotas", "elasticresourcequotas/status"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["bus.volcano.sh"] - resources: ["commands"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs", "jobs/status", "jobs/finalizers"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["argoproj.io"] - resources: ["workflowtemplates", "workflowtemplates/finalizers", "clusterworkflowtemplates", "clusterworkflowtemplates/finalizers"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["kubeflow.org"] - resources: ["*"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - ---- -# ClusterRoleBinding for paddleflow-server -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: paddleflow-server -subjects: - - kind: ServiceAccount - name: paddleflow-server - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-server - apiGroup: rbac.authorization.k8s.io + labels: + app: 'paddleflow-server' + app.kubernetes.io/instance: 'paddleflow-server' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'paddleflow-server' + chart: 'paddleflow-server-0.10.61-rrnw8z' + helm.sh/chart: 'paddleflow-server-0.10.61-rrnw8z' + heritage: 'Helm' + release: 'paddleflow-server' + name: 'paddleflow-server' +data: {} --- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-configmap.yaml +kind: ConfigMap apiVersion: v1 +metadata: + labels: + app: 'paddleflow-server' + app.kubernetes.io/instance: 'paddleflow-server' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'paddleflow-server' + chart: 'paddleflow-server-0.10.61-rrnw8z' + helm.sh/chart: 'paddleflow-server-0.10.61-rrnw8z' + heritage: 'Helm' + release: 'paddleflow-server' + name: 'paddleflow-server' data: - default_pv.yaml: |2- - kind: PersistentVolume - metadata: - name: pfs-$(pfs.fs.id)-$(namespace)-pv - annotations: - pv.kubernetes.io/provisioned-by: paddleflowstorage - spec: - accessModes: - - ReadWriteMany - persistentVolumeReclaimPolicy: Delete - storageClassName: paddleflowstorage - capacity: - storage: 400Gi - csi: - driver: paddleflowstorage - fsType: ext4 - volumeAttributes: - pfs.fs.id: $(pfs.fs.id) - pfs.fs.info: $(pfs.fs.info) - pfs.fs.cache: $(pfs.fs.cache) - volumeHandle: pfs-$(pfs.fs.id)-$(namespace)-pv - default_pvc.yaml: |2- - kind: PersistentVolumeClaim - metadata: - name: pfs-$(pfs.fs.id)-pvc - namespace: $(namespace) - spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: 100Gi - storageClassName: paddleflowstorage - volumeMode: Filesystem - volumeName: pfs-$(pfs.fs.id)-$(namespace)-pv - paddle_collective.yaml: |2 - apiVersion: batch.paddlepaddle.org/v1 - kind: PaddleJob - metadata: - name: default-name - spec: - cleanPodPolicy: Never - worker: - replicas: 2 - template: - spec: - containers: - - name: worker-name - image: registry.baidubce.com/paddlecloud/demo-resnet:v1 - paddle_ps.yaml: |- - apiVersion: batch.paddlepaddle.org/v1 - kind: PaddleJob - metadata: - name: default-name - spec: - withGloo: 1 - intranet: PodIP - cleanPodPolicy: OnCompletion - worker: - replicas: 2 - template: + default_pv.yaml: |4- + kind: PersistentVolume + metadata: + name: pfs-$(pfs.fs.id)-$(namespace)-pv + annotations: + pv.kubernetes.io/provisioned-by: paddleflowstorage spec: - containers: - - name: worker-name - image: registry.baidubce.com/paddlecloud/demo-wide-and-deep:v1 - ps: - replicas: 2 - template: + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Delete + storageClassName: paddleflowstorage + capacity: + storage: 400Gi + csi: + driver: paddleflowstorage + fsType: ext4 + volumeAttributes: + pfs.fs.id: $(pfs.fs.id) + pfs.server: $(pfs.server) + volumeHandle: pfs-$(pfs.fs.id)-$(namespace)-pv + default_pvc.yaml: |4- + kind: PersistentVolumeClaim + metadata: + name: pfs-$(pfs.fs.id)-pvc + namespace: $(namespace) spec: - containers: - - name: ps-name - image: registry.baidubce.com/paddlecloud/demo-wide-and-deep:v1 - paddleserver.yaml: |2 - database: - driver: sqlite - host: 127.0.0.1 - port: 3306 - user: paddleflow - password: paddleflow - database: paddleflow - - log: - dir: ./ - filePrefix: log - level: INFO - maxKeepDays: 7 - maxFileNum: 7 - maxFileSizeInMB: 100 - isCompress: true - - traceLog: - dir: ./ - filePrefix: trace-log - level: INFO - maxKeepDays: 7 - maxFileNum: 7 - maxFileSizeInMB: 100 - isCompress: true - # time units: s/m/h/d (second/minute/hour/day) - timeout: 2h - # max size for trace logger local cache - maxCacheSize: 10000 - # auto sync and delete interval for log file, and cache - syncInterval: 30s - deleteInterval: 10s - # if debug mode turn on, the trace log will be shown to stdout as well - debug: false - - apiServer: - host: "paddleflow-server" - port: 8999 - tokenExpirationHour: -1 - - fs: - defaultPVPath: "./config/fs/default_pv.yaml" - defaultPVCPath: "./config/fs/default_pvc.yaml" - servicePort: 8999 - - job: - reclaim: - isCleanJob: true - isSkipCleanFailedJob: false - succeededJobTTLSeconds: 600 - failedJobTTLSeconds: 3600 - schedulerName: volcano - clusterSyncPeriod: 30 - jobLoopPeriod: 5 - defaultJobYamlDir: "./config/server/default/job" - isSingleCluster: true - - pipeline: pipeline - - imageRepository: - server: "" - namespace: "" - username: "" - password: "" - concurrency: 10 - removeLocalImage: true - - monitor: - server: "" - - metrics: - enable: true - port: 8231 - - single.yaml: |- - apiVersion: v1 - kind: Pod - metadata: - name: default-name - namespace: default - spec: - containers: - - image: nginx - imagePullPolicy: Always - name: job-default-name - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - dnsPolicy: ClusterFirst - enableServiceLinks: true - priorityClassName: normal - restartPolicy: Always - schedulerName: volcano - securityContext: {} - serviceAccount: default - serviceAccountName: default - terminationGracePeriodSeconds: 30 - spark.yaml: |2 + accessModes: + - ReadWriteMany + resources: + requests: + storage: 100Gi + storageClassName: paddleflowstorage + volumeMode: Filesystem + volumeName: pfs-$(pfs.fs.id)-$(namespace)-pv + job_template.yaml: | + apiVersion: v1 + kind: Pod + metadata: + name: default-name + namespace: default + spec: + containers: + - image: nginx + imagePullPolicy: IfNotPresent + name: job-default-name + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + dnsPolicy: ClusterFirst + enableServiceLinks: true + priorityClassName: normal + restartPolicy: Never + schedulerName: volcano + securityContext: {} + serviceAccount: default + serviceAccountName: default + terminationGracePeriodSeconds: 30 + # single-job + --- apiVersion: sparkoperator.k8s.io/v1beta2 kind: SparkApplication metadata: @@ -249,292 +104,545 @@ data: spec: driver: serviceAccount: spark + terminationGracePeriodSeconds: 30 executor: - image: registry.baidubce.com/paddlecloud/spark:pyml-2.8.0 + terminationGracePeriodSeconds: 30 + image: imagePullPolicy: IfNotPresent - mainApplicationFile: local:///opt/spark/examples/jars/spark-examples_2.11-2.4.0.jar - mainClass: org.apache.spark.examples.SparkPi + mainApplicationFile: + mainClass: mode: cluster restartPolicy: onSubmissionFailureRetries: 3 onSubmissionFailureRetryInterval: 5 type: Never sparkConf: - spark.driver.extraJavaOptions: -Dsun.zip.disableMemoryMapping=true - spark.executor.extraJavaOptions: -Dsun.zip.disableMemoryMapping=true spark.hadoop.mapreduce.fileoutputcommitter.algorithm.version: "2" sparkVersion: 3.0.0 type: Scala batchSchedulerOptions: - queue: default - priorityClass: normal - telegraf.conf: | - [global_tags] - vcjob_collective.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + queue: + priorityClass: + # spark-job + --- + apiVersion: batch.paddlepaddle.org/v1 + kind: PaddleJob metadata: - name: vcJobName + name: default-name spec: - minAvailable: 2 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - plugins: - ssh: [] - env: [] - svc: [] - maxRetry: 5 - queue: default - tasks: - - replicas: 2 - name: "task" + withGloo: 1 + intranet: PodIP + cleanPodPolicy: OnCompletion + worker: + replicas: 2 + template: + spec: + containers: + - name: paddle + image: registry.baidubce.com/paddle-operator/demo-wide-and-deep:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + ps: + replicas: 2 + template: + spec: + containers: + - name: paddle + image: registry.baidubce.com/paddle-operator/demo-wide-and-deep:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + # paddle-ps-job + --- + apiVersion: batch.paddlepaddle.org/v1 + kind: PaddleJob + metadata: + name: default-name + spec: + cleanPodPolicy: Never + worker: + replicas: 2 + template: + spec: + containers: + - name: worker-name + image: registry.baidubce.com/paddle-operator/demo-resnet:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + # paddle-collective-job + --- + apiVersion: "kubeflow.org/v1" + kind: "PyTorchJob" + metadata: + name: "pytorch-dist-sendrecv" + spec: + pytorchReplicaSpecs: + Master: + replicas: 1 + restartPolicy: Never template: - metadata: - name: templateName spec: containers: - - image: collective-container - imagePullPolicy: IfNotPresent - name: defaultContainer - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob - vcjob_pod.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + - name: pytorch + command: + - /bin/sh + - -c + - sleep 10 + image: paddleflow/pytorch-dist-sendrecv-test:1.12.0 + Worker: + replicas: 1 + restartPolicy: Never + template: + spec: + containers: + - name: pytorch + command: + - /bin/sh + - -c + - sleep 10 + image: paddleflow/pytorch-dist-sendrecv-test:1.12.0 + # pytorch-ps-job + --- + apiVersion: "kubeflow.org/v1" + kind: "TFJob" metadata: - name: vcJobName + name: "tf-mnist-dist" spec: - minAvailable: 1 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - maxRetry: 5 - queue: default - tasks: - - replicas: 1 - name: "task" + tfReplicaSpecs: + PS: + replicas: 1 + restartPolicy: Never template: - metadata: - name: pod spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: container - resources: - requests: - cpu: "1" - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob - vcjob_ps.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + - name: tensorflow + image: tf-mnist-dist:1.2 + command: + - "python" + - "/var/tf_dist_mnist/dist_mnist.py" + - "--num_gpus=0" + # faster trainning + - "--train_steps=1" + Worker: + replicas: 1 + restartPolicy: Never + template: + spec: + containers: + - name: tensorflow + image: tf-mnist-dist:1.2 + command: + - "python" + - "/var/tf_dist_mnist/dist_mnist.py" + - "--num_gpus=0" + - "--train_steps=1" + # tensorflow-ps-job + --- + apiVersion: ray.io/v1alpha1 + kind: RayJob metadata: - name: vcJobName + name: rayjob-sample spec: - minAvailable: 3 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - plugins: - ssh: [] - env: [] - svc: [] - maxRetry: 5 - queue: default - tasks: - - replicas: 1 - name: "ps" - ports: - - ps-port: 8001 + entrypoint: sleep 60 + shutdownAfterJobFinishes: true + rayClusterSpec: + rayVersion: '2.0.0' + enableInTreeAutoscaling: true + headGroupSpec: + serviceType: ClusterIP + replicas: 1 + rayStartParams: + node-ip-address: $MY_POD_IP + block: 'true' template: metadata: - name: web + labels: + rayCluster: raycluster-heterogeneous + rayNodeType: head + groupName: headgroup + annotations: + key: value spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: ps + - name: ray-head + image: rayproject/ray:2.0.0 + env: + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + workerGroupSpecs: + - replicas: 1 + minReplicas: 1 + maxReplicas: 5 + groupName: small-group + rayStartParams: + node-ip-address: $MY_POD_IP + block: 'true' + template: + metadata: + labels: + key: value + annotations: + key: value + spec: + initContainers: + - name: init-myservice + image: busybox:1 + command: [ 'sh', '-c', "until nslookup $RAY_IP.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for myservice; sleep 2; done" ] + containers: + - name: machine-learning + image: rayproject/ray:2.0.0 + env: + - name: RAY_DISABLE_DOCKER_CPU_WARNING + value: "1" + - name: TYPE + value: "worker" + - name: CPU_REQUEST + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: requests.cpu + - name: CPU_LIMITS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: limits.cpu + - name: MEMORY_LIMITS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: limits.memory + - name: MEMORY_REQUESTS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: requests.memory + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + ports: + - containerPort: 80 + name: client + lifecycle: + preStop: + exec: + command: [ "/bin/sh","-c","ray stop" ] + # ray-job + --- + apiVersion: kubeflow.org/v1 + kind: MPIJob + metadata: + name: tensorflow-mnist + spec: + slotsPerWorker: 1 + runPolicy: + cleanPodPolicy: Running + mpiReplicaSpecs: + Launcher: + replicas: 1 + template: + spec: + containers: + - image: horovod/horovod:0.20.0-tf2.3.0-torch1.6.0-mxnet1.5.0-py3.7-cpu + name: mpi + command: + - mpirun + args: + - -np + - "2" + - --allow-run-as-root + - -bind-to + - none + - -map-by + - slot + - -x + - LD_LIBRARY_PATH + - -x + - PATH + - -mca + - pml + - ob1 + - -mca + - btl + - ^openib + - python + - /examples/tensorflow2_mnist.py resources: - requests: - cpu: "1" - restartPolicy: OnFailure - - replicas: 2 - name: "worker" - ports: - - worker-port: 8001 + limits: + cpu: 1 + memory: 2Gi + Worker: + replicas: 2 template: - metadata: - name: web spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: worker + - image: horovod/horovod:0.20.0-tf2.3.0-torch1.6.0-mxnet1.5.0-py3.7-cpu + name: mpi resources: - requests: - cpu: "1" - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob -kind: ConfigMap + limits: + cpu: 2 + memory: 4Gi + # mpi-job + --- + paddleserver.yaml: | + database: + driver: sqlite + host: mysql-standalone + port: 3306 + user: root + password: Paddle@2022 + database: paddleflow + monitor: + server: "http://127.0.0.1:8395" + metrics: + port: 8231 + enable: true + log: + dir: ./ + filePrefix: log + level: INFO + maxKeepDays: 7 + maxFileNum: 7 + maxFileSizeInMB: 100 + isCompress: true + traceLog: + dir: ./ + filePrefix: trace-log + level: INFO + maxKeepDays: 7 + maxFileNum: 7 + maxFileSizeInMB: 100 + isCompress: true + timeout: 2h + maxCacheSize: 10000 + syncInterval: 30s + deleteInterval: 10s + apiServer: + host: paddleflow-server + port: 8999 + tokenExpirationHour: -1 + fs: + defaultPVPath: "./config/fs/default_pv.yaml" + defaultPVCPath: "./config/fs/default_pvc.yaml" + servicePort: 8999 + job: + reclaim: + isCleanJob: true + isSkipCleanFailedJob: false + succeededJobTTLSeconds: 3600 + failedJobTTLSeconds: 36000 + schedulerName: volcano + clusterSyncPeriod: 30 + defaultJobYamlDir: "./config/server/default/job" + defaultJobYamlPath: "./config/server/default/job/job_template.yaml" + isSingleCluster: true + pipeline: pipeline + imageRepository: + server: "" + namespace: "" + username: "" + password: "" + concurrency: 10 + removeLocalImage: true + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/paddleflow-server/templates/ClusterRole-paddleflow-server.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole metadata: + creationTimestamp: null name: paddleflow-server - namespace: paddleflow +rules: +- apiGroups: + - "" + resources: + - events + - pods + - pods/log + - services + - persistentvolumeclaims + - persistentvolumes + verbs: + - '*' +- apiGroups: + - apps + resources: + - '*' + verbs: + - '*' +- apiGroups: + - "" + resources: + - '*' + verbs: + - get + - list + - watch +- apiGroups: + - sparkoperator.k8s.io + - batch.paddlepaddle.org + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + - bus.volcano.sh + - batch.volcano.sh + - argoproj.io + - kubeflow.org + - ray.io + resources: + - '*' + verbs: + - '*' --- -apiVersion: v1 -kind: Service +# Source: pfchart/charts/paddleflow-server/templates/ClusterRoleBinding-paddleflow-server.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding metadata: + creationTimestamp: null + name: paddleflow-server +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-server +subjects: +- kind: ServiceAccount name: paddleflow-server namespace: paddleflow - labels: - app: paddleflow-server -spec: - type: NodePort - ports: - - port: 8999 - name: listen - targetPort: 8999 - nodePort: 8999 - selector: - app: paddleflow-server --- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-service.yaml apiVersion: v1 kind: Service metadata: + name: paddleflow-server labels: app: paddleflow-server - name: paddleflow-server-metrics - namespace: paddleflow + chart: "paddleflow-server-0.10.61-rrnw8z" + release: "paddleflow-server" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow-server' + helm.sh/chart: 'paddleflow-server-0.10.61-rrnw8z' + app.kubernetes.io/name: 'paddleflow-server' + + annotations: spec: + type: NodePort + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 ports: - - name: metrics - nodePort: 8231 - port: 8231 - targetPort: 8231 - protocol: TCP + - name: port-0 + port: 8999 + nodePort: 8999 + protocol: TCP + targetPort: 8999 + - name: port-2 + port: 8231 + nodePort: 8231 + protocol: TCP + targetPort: 8231 selector: app: paddleflow-server - type: NodePort --- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: + #文件里的所有paddleflow-server、paddleflow_server都替换成实际名称 name: paddleflow-server - namespace: paddleflow labels: app: paddleflow-server + chart: "paddleflow-server-0.10.61-rrnw8z" + release: "paddleflow-server" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow-server' + helm.sh/chart: 'paddleflow-server-0.10.61-rrnw8z' + app.kubernetes.io/name: 'paddleflow-server' + annotations: + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: app: paddleflow-server - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate template: metadata: - creationTimestamp: null labels: app: paddleflow-server + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow-server' + helm.sh/chart: 'paddleflow-server-0.10.61-rrnw8z' + app.kubernetes.io/name: 'paddleflow-server' spec: - containers: - - args: - - -c - - cd /home/paddleflow/server && ./paddleflow - command: - - /bin/sh - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: spec.nodeName - image: paddleflow/paddleflow-server:1.4.2 - imagePullPolicy: IfNotPresent - name: paddleflow-server - ports: - - containerPort: 8999 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "8G" - cpu: "8000m" - securityContext: - privileged: false - runAsGroup: 1000 - runAsUser: 1000 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /home/paddleflow/server/paddleflow.db - mountPropagation: None - name: paddleflowdb - - mountPath: /home/paddleflow/server/config/server/default/paddleserver.yaml - name: conf - subPath: paddleserver.yaml - - mountPath: /home/paddleflow/server/config/fs/default_pvc.yaml - name: conf - subPath: default_pvc.yaml - - mountPath: /home/paddleflow/server/config/fs/default_pv.yaml - name: conf - subPath: default_pv.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/spark.yaml - name: conf - subPath: spark.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_ps.yaml - name: conf - subPath: vcjob_ps.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_pod.yaml - name: conf - subPath: vcjob_pod.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_collective.yaml - name: conf - subPath: vcjob_collective.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/paddle_collective.yaml - name: conf - subPath: paddle_collective.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/paddle_ps.yaml - name: conf - subPath: paddle_ps.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/single.yaml - name: conf - subPath: single.yaml dnsPolicy: ClusterFirst restartPolicy: Always - schedulerName: default-scheduler - serviceAccount: paddleflow-server - serviceAccountName: paddleflow-server securityContext: runAsGroup: 1000 runAsUser: 1000 - terminationGracePeriodSeconds: 30 + serviceAccountName: paddleflow-server + containers: + - name: paddleflow-server + image: "paddleflow/paddleflow-server:1.4.6" + imagePullPolicy: "IfNotPresent" + command: + - /bin/sh + args: + #container_args list + - -c + - cd /home/paddleflow/server && ./paddleflow + securityContext: + privileged: false + runAsGroup: 1000 + runAsUser: 1000 + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟paddleflow_server-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: + fieldPath: spec.nodeName + + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/server/default/paddleserver.yaml + #容器里配置文件名称 + subPath: paddleserver.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/fs/default_pvc.yaml + #容器里配置文件名称 + subPath: default_pvc.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/fs/default_pv.yaml + #容器里配置文件名称 + subPath: default_pv.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/server/default/job/job_template.yaml + #容器里配置文件名称 + subPath: job_template.yaml + initContainers: volumes: - - hostPath: - path: /mnt/paddleflow.db - type: FileOrCreate - name: paddleflowdb - - configMap: - defaultMode: 420 - name: paddleflow-server - name: conf + - name: paddleflowdir + hostPath: + path: /mnt/paddleflow + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: conf + configMap: + name: paddleflow-server + diff --git a/installer/deploys/volcano/README.md b/installer/deploys/volcano/README.md index 4a908f1a2..f203d2467 100644 --- a/installer/deploys/volcano/README.md +++ b/installer/deploys/volcano/README.md @@ -4,7 +4,8 @@ 目前PaddleFlow使用改造过的volcano作为默认调度器,具体改造内容参考todo(zhongzichao) ```shell # For x86_64: -kubectl apply -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/deploys/volcano/pf-volcano-deploy.yaml +kubectl apply -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/release-0.14.6/volcano/crd.yaml -n paddleflow +kubectl apply -f https://raw.githubusercontent.com/PaddlePaddle/PaddleFlow/develop/installer/release-0.14.6/volcano/pf-volcano-deploy.yaml -n paddleflow # For arm64: todo diff --git a/installer/deploys/volcano/crd.yaml b/installer/deploys/volcano/crd.yaml new file mode 100644 index 000000000..6cef55ab8 --- /dev/null +++ b/installer/deploys/volcano/crd.yaml @@ -0,0 +1,8616 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: commands.bus.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: bus.volcano.sh + names: + kind: Command + plural: commands + listKind: CommandList + singular: command + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + action: + type: string + description: >- + Action defines the action that will be took to the target + object. + reason: + type: string + description: 'Unique, one-word, CamelCase reason for this command.' + target: + type: object + required: + - apiVersion + - kind + - name + - uid + properties: + uid: + type: string + description: >- + UID of the referent. More info: + http://kubernetes.io/docs/user-guide/identifiers#uids + kind: + type: string + description: >- + Kind of the referent. More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + name: + type: string + description: >- + Name of the referent. More info: + http://kubernetes.io/docs/user-guide/identifiers#names + apiVersion: + type: string + description: API version of the referent. + controller: + type: boolean + description: 'If true, this reference points to the managing controller.' + blockOwnerDeletion: + type: boolean + description: >- + If true, AND if the owner has the "foregroundDeletion" + finalizer, then the owner cannot be deleted from the + key-value store until this reference is removed. Defaults to + false. To set this field, a user needs "delete" permission + of the owner, otherwise 422 (Unprocessable Entity) will be + returned. + description: TargetObject defines the target object of this command. + message: + type: string + description: Human-readable message indicating details of this command. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Command defines command structure. + served: true + storage: true + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: elasticresourcequotas.scheduling.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: scheduling.volcano.sh + names: + kind: ElasticResourceQuota + plural: elasticresourcequotas + listKind: ElasticResourceQuotaList + singular: elasticresourcequota + shortNames: + - equota + - equota-v1beta1 + scope: Cluster + versions: + - name: v1beta1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + max: + type: object + description: Max is the upper bound of elastic resource quota + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + min: + type: object + description: Min is the lower bound of elastic resource quota + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + namespace: + type: string + description: >- + namespace defines elastic resource quota belongs to one + namespace + reclaimable: + type: boolean + description: >- + Reclaimable indicate whether the elastic quota can be + reclaimed by other elastic resource quota + hardwareTypes: + type: array + items: + type: string + description: >- + HardwareTypes defines hardware types of elastic resource + quota + description: >- + Specification of the desired behavior of the + ElasticResourceQuota. More info: + https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + status: + type: object + properties: + used: + type: object + description: Used resource of elastic resource quota + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + isLeaf: + type: boolean + description: IsLeaf defines whether elastic resource quota is leaf or not + queueName: + type: string + description: QueueName indicate bound queue + description: The status of ElasticResourceQuota. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Elastic Resource Quota + served: true + storage: true + subresources: + status: {} + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: jobs.batch.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: batch.volcano.sh + names: + kind: Job + plural: jobs + listKind: JobList + singular: job + shortNames: + - vcjob + - vj + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + queue: + type: string + description: >- + Specifies the queue that will be used in the scheduler, + "default" queue is used this leaves empty. + tasks: + type: array + items: + type: object + properties: + name: + type: string + description: Name specifies the name of tasks + maxRetry: + type: integer + format: int32 + description: >- + Specifies the maximum number of retries before marking + this Task failed. Defaults to 3. + policies: + type: array + items: + type: object + properties: + event: + type: string + description: >- + The Event recorded by scheduler; the controller + takes actions according to this Event. + action: + type: string + description: >- + The action that will be taken to the PodGroup + according to Event. One of "Restart", "None". + Default to None. + events: + type: array + items: + type: string + description: >- + Event represent the phase of Job, e.g. + pod-failed. + description: >- + The Events recorded by scheduler; the controller + takes actions according to this Events. + timeout: + type: string + description: >- + Timeout is the grace period for controller to + take actions. Default to nil (take action + immediately). + exitCode: + type: integer + format: int32 + description: >- + The exit code of the pod container, controller + will take action according to this code. Note: + only one of `Event` or `ExitCode` can be + specified. + description: >- + LifecyclePolicy specifies the lifecycle and error + handling of task and job. + description: Specifies the lifecycle of task + replicas: + type: integer + format: int32 + description: >- + Replicas specifies the replicas of this TaskSpec in + Job + template: + type: object + properties: + spec: + type: object + required: + - containers + properties: + hostIPC: + type: boolean + description: >- + Use the host's ipc namespace. Optional: + Default to false. + hostPID: + type: boolean + description: >- + Use the host's pid namespace. Optional: + Default to false. + volumes: + type: array + items: + type: object + required: + - name + properties: + fc: + type: object + properties: + lun: + type: integer + format: int32 + description: 'Optional: FC target lun number' + wwids: + type: array + items: + type: string + description: >- + Optional: FC volume world wide + identifiers (wwids) Either wwids or + combination of targetWWNs and lun must + be set, but not both simultaneously. + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. TODO: how do we prevent + errors in the filesystem from + compromising the machine + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + targetWWNs: + type: array + items: + type: string + description: >- + Optional: FC target worldwide names + (WWNs) + description: >- + FC represents a Fibre Channel resource + that is attached to a kubelet's host + machine and then exposed to the pod. + csi: + type: object + required: + - driver + properties: + driver: + type: string + description: >- + Driver is the name of the CSI driver + that handles this volume. Consult with + your admin for the correct name as + registered in the cluster. + fsType: + type: string + description: >- + Filesystem type to mount. Ex. "ext4", + "xfs", "ntfs". If not provided, the + empty value is passed to the associated + CSI driver which will determine the + default filesystem to apply. + readOnly: + type: boolean + description: >- + Specifies a read-only configuration for + the volume. Defaults to false + (read/write). + volumeAttributes: + type: object + description: >- + VolumeAttributes stores driver-specific + properties that are passed to the CSI + driver. Consult your driver's + documentation for supported values. + additionalProperties: + type: string + nodePublishSecretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + NodePublishSecretRef is a reference to + the secret object containing sensitive + information to pass to the CSI driver to + complete the CSI NodePublishVolume and + NodeUnpublishVolume calls. This field is + optional, and may be empty if no secret + is required. If the secret object + contains more than one secret, all + secret references are passed. + description: >- + CSI (Container Storage Interface) + represents ephemeral storage that is + handled by certain external CSI drivers + (Beta feature). + nfs: + type: object + required: + - path + - server + properties: + path: + type: string + description: >- + Path that is exported by the NFS server. + More info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + server: + type: string + description: >- + Server is the hostname or IP address of + the NFS server. More info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + readOnly: + type: boolean + description: >- + ReadOnly here will force the NFS export + to be mounted with read-only + permissions. Defaults to false. More + info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + description: >- + NFS represents an NFS mount on the host + that shares a pod's lifetime More info: + https://kubernetes.io/docs/concepts/storage/volumes#nfs + rbd: + type: object + required: + - image + - monitors + properties: + pool: + type: string + description: >- + The rados pool name. Default is rbd. + More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + user: + type: string + description: >- + The rados user name. Default is admin. + More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + image: + type: string + description: >- + The rados image name. More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#rbd + TODO: how do we prevent errors in the + filesystem from compromising the machine + keyring: + type: string + description: >- + Keyring is the path to key ring for + RBDUser. Default is /etc/ceph/keyring. + More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + monitors: + type: array + items: + type: string + description: >- + A collection of Ceph monitors. More + info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + readOnly: + type: boolean + description: >- + ReadOnly here will force the ReadOnly + setting in VolumeMounts. Defaults to + false. More info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + SecretRef is name of the authentication + secret for RBDUser. If provided + overrides keyring. Default is nil. More + info: + https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + description: >- + RBD represents a Rados Block Device + mount on the host that shares a pod's + lifetime. More info: + https://examples.k8s.io/volumes/rbd/README.md + name: + type: string + description: >- + Volume's name. Must be a DNS_LABEL and + unique within the pod. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + iscsi: + type: object + required: + - iqn + - lun + - targetPortal + properties: + iqn: + type: string + description: Target iSCSI Qualified Name. + lun: + type: integer + format: int32 + description: iSCSI Target Lun number. + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#iscsi + TODO: how do we prevent errors in the + filesystem from compromising the machine + portals: + type: array + items: + type: string + description: >- + iSCSI Target Portal List. The portal is + either an IP or ip_addr:port if the port + is other than default (typically TCP + ports 860 and 3260). + readOnly: + type: boolean + description: >- + ReadOnly here will force the ReadOnly + setting in VolumeMounts. Defaults to + false. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + CHAP Secret for iSCSI target and + initiator authentication + targetPortal: + type: string + description: >- + iSCSI Target Portal. The Portal is + either an IP or ip_addr:port if the port + is other than default (typically TCP + ports 860 and 3260). + initiatorName: + type: string + description: >- + Custom iSCSI Initiator Name. If + initiatorName is specified with + iscsiInterface simultaneously, new iSCSI + interface : + will be created for the connection. + iscsiInterface: + type: string + description: >- + iSCSI Interface Name that uses an iSCSI + transport. Defaults to 'default' (tcp). + chapAuthSession: + type: boolean + description: >- + whether support iSCSI Session CHAP + authentication + chapAuthDiscovery: + type: boolean + description: >- + whether support iSCSI Discovery CHAP + authentication + description: >- + ISCSI represents an ISCSI Disk resource + that is attached to a kubelet's host + machine and then exposed to the pod. + More info: + https://examples.k8s.io/volumes/iscsi/README.md + cephfs: + type: object + required: + - monitors + properties: + path: + type: string + description: >- + Optional: Used as the mounted root, + rather than the full Ceph tree, default + is / + user: + type: string + description: >- + Optional: User is the rados user name, + default is admin More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + monitors: + type: array + items: + type: string + description: >- + Required: Monitors is a collection of + Ceph monitors More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + Optional: SecretRef is reference to the + authentication secret for User, default + is empty. More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + secretFile: + type: string + description: >- + Optional: SecretFile is the path to key + ring for User, default is + /etc/ceph/user.secret More info: + https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + description: >- + CephFS represents a Ceph FS mount on the + host that shares a pod's lifetime + cinder: + type: object + required: + - volumeID + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + volumeID: + type: string + description: >- + volume id used to identify the volume in + cinder. More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + Optional: points to a secret object + containing parameters used to connect to + OpenStack. + description: >- + Cinder represents a cinder volume + attached and mounted on kubelets host + machine. More info: + https://examples.k8s.io/mysql-cinder-pd/README.md + secret: + type: object + properties: + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced Secret + will be projected into the volume as a + file whose name is the key and content + is the value. If specified, the listed + keys will be projected into the + specified paths, and unlisted keys will + not be present. If a key is specified + which is not present in the Secret, the + volume setup will error unless it is + marked optional. Paths must be relative + and may not contain the '..' path or + start with '..'. + optional: + type: boolean + description: >- + Specify whether the Secret or its keys + must be defined + secretName: + type: string + description: >- + Name of the secret in the pod's + namespace to use. More info: + https://kubernetes.io/docs/concepts/storage/volumes#secret + defaultMode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on created files by default. + Must be an octal value between 0000 and + 0777 or a decimal value between 0 and + 511. YAML accepts both octal and decimal + values, JSON requires decimal values for + mode bits. Defaults to 0644. Directories + within the path are not affected by this + setting. This might be in conflict with + other options that affect the file mode, + like fsGroup, and the result can be + other mode bits set. + description: >- + Secret represents a secret that should + populate this volume. More info: + https://kubernetes.io/docs/concepts/storage/volumes#secret + flocker: + type: object + properties: + datasetName: + type: string + description: >- + Name of the dataset stored as metadata + -> name on the dataset for Flocker + should be considered as deprecated + datasetUUID: + type: string + description: >- + UUID of the dataset. This is unique + identifier of a Flocker dataset + description: >- + Flocker represents a Flocker volume + attached to a kubelet's host machine. + This depends on the Flocker control + service being running + gitRepo: + type: object + required: + - repository + properties: + revision: + type: string + description: Commit hash for the specified revision. + directory: + type: string + description: >- + Target directory name. Must not contain + or start with '..'. If '.' is supplied, + the volume directory will be the git + repository. Otherwise, if specified, + the volume will contain the git + repository in the subdirectory with the + given name. + repository: + type: string + description: Repository URL + description: >- + GitRepo represents a git repository at a + particular revision. DEPRECATED: GitRepo + is deprecated. To provision a container + with a git repo, mount an EmptyDir into + an InitContainer that clones the repo + using git, then mount the EmptyDir into + the Pod's container. + quobyte: + type: object + required: + - registry + - volume + properties: + user: + type: string + description: >- + User to map volume access to Defaults to + serivceaccount user + group: + type: string + description: >- + Group to map volume access to Default is + no group + tenant: + type: string + description: >- + Tenant owning the given Quobyte volume + in the Backend Used with dynamically + provisioned Quobyte volumes, value is + set by the plugin + volume: + type: string + description: >- + Volume is a string that references an + already created Quobyte volume by name. + readOnly: + type: boolean + description: >- + ReadOnly here will force the Quobyte + volume to be mounted with read-only + permissions. Defaults to false. + registry: + type: string + description: >- + Registry represents a single or multiple + Quobyte Registry services specified as a + string as host:port pair (multiple + entries are separated with commas) which + acts as the central registry for volumes + description: >- + Quobyte represents a Quobyte mount on + the host that shares a pod's lifetime + scaleIO: + type: object + required: + - gateway + - secretRef + - system + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Default is "xfs". + system: + type: string + description: >- + The name of the storage system as + configured in ScaleIO. + gateway: + type: string + description: >- + The host address of the ScaleIO API + Gateway. + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + SecretRef references to the secret for + ScaleIO user and other sensitive + information. If this is not provided, + Login operation will fail. + sslEnabled: + type: boolean + description: >- + Flag to enable/disable SSL communication + with Gateway, default false + volumeName: + type: string + description: >- + The name of a volume already created in + the ScaleIO system that is associated + with this volume source. + storageMode: + type: string + description: >- + Indicates whether the storage for a + volume should be ThickProvisioned or + ThinProvisioned. Default is + ThinProvisioned. + storagePool: + type: string + description: >- + The ScaleIO Storage Pool associated with + the protection domain. + protectionDomain: + type: string + description: >- + The name of the ScaleIO Protection + Domain for the configured storage. + description: >- + ScaleIO represents a ScaleIO persistent + volume attached and mounted on + Kubernetes nodes. + emptyDir: + type: object + properties: + medium: + type: string + description: >- + What type of storage medium should back + this directory. The default is "" which + means to use the node's default medium. + Must be an empty string (default) or + Memory. More info: + https://kubernetes.io/docs/concepts/storage/volumes#emptydir + sizeLimit: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Total amount of local storage required + for this EmptyDir volume. The size limit + is also applicable for memory medium. + The maximum usage on memory medium + EmptyDir would be the minimum value + between the SizeLimit specified here and + the sum of memory limits of all + containers in a pod. The default is nil + which means that the limit is undefined. + More info: + http://kubernetes.io/docs/user-guide/volumes#emptydir + x-kubernetes-int-or-string: true + description: >- + EmptyDir represents a temporary + directory that shares a pod's lifetime. + More info: + https://kubernetes.io/docs/concepts/storage/volumes#emptydir + hostPath: + type: object + required: + - path + properties: + path: + type: string + description: >- + Path of the directory on the host. If + the path is a symlink, it will follow + the link to the real path. More info: + https://kubernetes.io/docs/concepts/storage/volumes#hostpath + type: + type: string + description: >- + Type for HostPath Volume Defaults to "" + More info: + https://kubernetes.io/docs/concepts/storage/volumes#hostpath + description: >- + HostPath represents a pre-existing file + or directory on the host machine that is + directly exposed to the container. This + is generally used for system agents or + other privileged things that are allowed + to see the host machine. Most containers + will NOT need this. More info: + https://kubernetes.io/docs/concepts/storage/volumes#hostpath + --- TODO(jonesdl) We need to restrict + who can use host directory mounts and + who can/can not mount host directories + as read/write. + azureDisk: + type: object + required: + - diskName + - diskURI + properties: + kind: + type: string + description: >- + Expected values Shared: multiple blob + disks per storage account Dedicated: + single blob disk per storage account + Managed: azure managed data disk (only + in managed availability set). defaults + to shared + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + diskURI: + type: string + description: >- + The URI the data disk in the blob + storage + diskName: + type: string + description: >- + The Name of the data disk in the blob + storage + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + cachingMode: + type: string + description: >- + Host Caching mode: None, Read Only, Read + Write. + description: >- + AzureDisk represents an Azure Data Disk + mount on the host and bind mount to the + pod. + azureFile: + type: object + required: + - secretName + - shareName + properties: + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + shareName: + type: string + description: Share Name + secretName: + type: string + description: >- + the name of secret that contains Azure + Storage Account Name and Key + description: >- + AzureFile represents an Azure File + Service mount on the host and bind mount + to the pod. + configMap: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced + ConfigMap will be projected into the + volume as a file whose name is the key + and content is the value. If specified, + the listed keys will be projected into + the specified paths, and unlisted keys + will not be present. If a key is + specified which is not present in the + ConfigMap, the volume setup will error + unless it is marked optional. Paths must + be relative and may not contain the '..' + path or start with '..'. + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its + keys must be defined + defaultMode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on created files by default. + Must be an octal value between 0000 and + 0777 or a decimal value between 0 and + 511. YAML accepts both octal and decimal + values, JSON requires decimal values for + mode bits. Defaults to 0644. Directories + within the path are not affected by this + setting. This might be in conflict with + other options that affect the file mode, + like fsGroup, and the result can be + other mode bits set. + description: >- + ConfigMap represents a configMap that + should populate this volume + ephemeral: + type: object + properties: + readOnly: + type: boolean + description: >- + Specifies a read-only configuration for + the volume. Defaults to false + (read/write). + volumeClaimTemplate: + type: object + required: + - spec + properties: + spec: + type: object + properties: + selector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over volumes to consider + for binding. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Resources represents the minimum + resources the volume should have. More + info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + dataSource: + type: object + required: + - kind + - name + properties: + kind: + type: string + description: >- + Kind is the type of resource being + referenced + name: + type: string + description: >- + Name is the name of resource being + referenced + apiGroup: + type: string + description: >- + APIGroup is the group for the resource + being referenced. If APIGroup is not + specified, the specified Kind must be in + the core API group. For any other + third-party types, APIGroup is required. + description: >- + This field can be used to specify + either: * An existing VolumeSnapshot + object + (snapshot.storage.k8s.io/VolumeSnapshot + - Beta) * An existing PVC + (PersistentVolumeClaim) * An existing + custom resource/object that implements + data population (Alpha) In order to use + VolumeSnapshot object types, the + appropriate feature gate must be enabled + (VolumeSnapshotDataSource or + AnyVolumeDataSource) If the provisioner + or an external controller can support + the specified data source, it will + create a new volume based on the + contents of the specified data source. + If the specified data source is not + supported, the volume will not be + created and the failure will be reported + as an event. In the future, we plan to + support more data source types and the + behavior of the provisioner may change. + volumeMode: + type: string + description: >- + volumeMode defines what type of volume + is required by the claim. Value of + Filesystem is implied when not included + in claim spec. + volumeName: + type: string + description: >- + VolumeName is the binding reference to + the PersistentVolume backing this claim. + accessModes: + type: array + items: + type: string + description: >- + AccessModes contains the desired access + modes the volume should have. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + storageClassName: + type: string + description: >- + Name of the StorageClass required by the + claim. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + description: >- + The specification for the + PersistentVolumeClaim. The entire + content is copied unchanged into the PVC + that gets created from this template. + The same fields as in a + PersistentVolumeClaim are also valid + here. + metadata: + type: object + description: >- + May contain labels and annotations that + will be copied into the PVC when + creating it. No other fields are allowed + and will be rejected during validation. + description: >- + Will be used to create a stand-alone PVC + to provision the volume. The pod in + which this EphemeralVolumeSource is + embedded will be the owner of the PVC, + i.e. the PVC will be deleted together + with the pod. The name of the PVC will + be `-` where + `` is the name from the + `PodSpec.Volumes` array entry. Pod + validation will reject the pod if the + concatenated name is not valid for a PVC + (for example, too long). + An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. + This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. + Required, must not be nil. + description: >- + Ephemeral represents a volume that is + handled by a cluster storage driver + (Alpha feature). The volume's lifecycle + is tied to the pod that defines it - it + will be created before the pod starts, + and deleted when the pod is removed. + Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). + Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. + Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. + A pod can use both types of ephemeral volumes and persistent volumes at the same time. + glusterfs: + type: object + required: + - endpoints + - path + properties: + path: + type: string + description: >- + Path is the Glusterfs volume path. More + info: + https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + readOnly: + type: boolean + description: >- + ReadOnly here will force the Glusterfs + volume to be mounted with read-only + permissions. Defaults to false. More + info: + https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + endpoints: + type: string + description: >- + EndpointsName is the endpoint name that + details Glusterfs topology. More info: + https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + description: >- + Glusterfs represents a Glusterfs mount + on the host that shares a pod's + lifetime. More info: + https://examples.k8s.io/volumes/glusterfs/README.md + projected: + type: object + required: + - sources + properties: + sources: + type: array + items: + type: object + properties: + secret: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced Secret + will be projected into the volume as a + file whose name is the key and content + is the value. If specified, the listed + keys will be projected into the + specified paths, and unlisted keys will + not be present. If a key is specified + which is not present in the Secret, the + volume setup will error unless it is + marked optional. Paths must be relative + and may not contain the '..' path or + start with '..'. + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + information about the secret data to + project + configMap: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + items: + type: array + items: + type: object + required: + - key + - path + properties: + key: + type: string + description: The key to project. + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + The relative path of the file to map the + key to. May not be an absolute path. May + not contain the path element '..'. May + not start with the string '..'. + description: >- + Maps a string key to a path within a + volume. + description: >- + If unspecified, each key-value pair in + the Data field of the referenced + ConfigMap will be projected into the + volume as a file whose name is the key + and content is the value. If specified, + the listed keys will be projected into + the specified paths, and unlisted keys + will not be present. If a key is + specified which is not present in the + ConfigMap, the volume setup will error + unless it is marked optional. Paths must + be relative and may not contain the '..' + path or start with '..'. + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its + keys must be defined + description: >- + information about the configMap data to + project + downwardAPI: + type: object + properties: + items: + type: array + items: + type: object + required: + - path + properties: + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file, must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + Required: Path is the relative path + name of the file to be created. Must not + be absolute or contain the '..' path. + Must be utf-8 encoded. The first item of + the relative path must not start with + '..' + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Required: Selects a field of the pod: + only annotations, labels, name and + namespace are supported. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, requests.cpu + and requests.memory) are currently + supported. + description: >- + DownwardAPIVolumeFile represents + information to create the file + containing the pod field + description: >- + Items is a list of DownwardAPIVolume + file + description: >- + information about the downwardAPI data + to project + serviceAccountToken: + type: object + required: + - path + properties: + path: + type: string + description: >- + Path is the path relative to the mount + point of the file to project the token + into. + audience: + type: string + description: >- + Audience is the intended audience of the + token. A recipient of a token must + identify itself with an identifier + specified in the audience of the token, + and otherwise should reject the token. + The audience defaults to the identifier + of the apiserver. + expirationSeconds: + type: integer + format: int64 + description: >- + ExpirationSeconds is the requested + duration of validity of the service + account token. As the token approaches + expiration, the kubelet volume plugin + will proactively rotate the service + account token. The kubelet will start + trying to rotate the token if the token + is older than 80 percent of its time to + live or if the token is older than 24 + hours.Defaults to 1 hour and must be at + least 10 minutes. + description: >- + information about the + serviceAccountToken data to project + description: >- + Projection that may be projected along + with other supported volume types + description: list of volume projections + defaultMode: + type: integer + format: int32 + description: >- + Mode bits used to set permissions on + created files by default. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. Directories within the path are + not affected by this setting. This might + be in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + description: >- + Items for all in one resources secrets, + configmaps, and downward API + storageos: + type: object + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + SecretRef specifies the secret to use + for obtaining the StorageOS API + credentials. If not specified, default + values will be attempted. + volumeName: + type: string + description: >- + VolumeName is the human-readable name of + the StorageOS volume. Volume names are + only unique within a namespace. + volumeNamespace: + type: string + description: >- + VolumeNamespace specifies the scope of + the volume within StorageOS. If no + namespace is specified then the Pod's + namespace will be used. This allows the + Kubernetes name scoping to be mirrored + within StorageOS for tighter + integration. Set VolumeName to any name + to override the default behaviour. Set + to "default" if you are not using + namespaces within StorageOS. Namespaces + that do not pre-exist within StorageOS + will be created. + description: >- + StorageOS represents a StorageOS volume + attached and mounted on Kubernetes + nodes. + flexVolume: + type: object + required: + - driver + properties: + driver: + type: string + description: >- + Driver is the name of the driver to use + for this volume. + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". The default filesystem depends + on FlexVolume script. + options: + type: object + description: 'Optional: Extra command options if any.' + additionalProperties: + type: string + readOnly: + type: boolean + description: >- + Optional: Defaults to false + (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + Optional: SecretRef is reference to the + secret object containing sensitive + information to pass to the plugin + scripts. This may be empty if no secret + object is specified. If the secret + object contains more than one secret, + all secrets are passed to the plugin + scripts. + description: >- + FlexVolume represents a generic volume + resource that is provisioned/attached + using an exec based plugin. + downwardAPI: + type: object + properties: + items: + type: array + items: + type: object + required: + - path + properties: + mode: + type: integer + format: int32 + description: >- + Optional: mode bits used to set + permissions on this file, must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. If not specified, the volume + defaultMode will be used. This might be + in conflict with other options that + affect the file mode, like fsGroup, and + the result can be other mode bits set. + path: + type: string + description: >- + Required: Path is the relative path + name of the file to be created. Must not + be absolute or contain the '..' path. + Must be utf-8 encoded. The first item of + the relative path must not start with + '..' + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Required: Selects a field of the pod: + only annotations, labels, name and + namespace are supported. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, requests.cpu + and requests.memory) are currently + supported. + description: >- + DownwardAPIVolumeFile represents + information to create the file + containing the pod field + description: >- + Items is a list of downward API volume + file + defaultMode: + type: integer + format: int32 + description: >- + Optional: mode bits to use on created + files by default. Must be a Optional: + mode bits used to set permissions on + created files by default. Must be an + octal value between 0000 and 0777 or a + decimal value between 0 and 511. YAML + accepts both octal and decimal values, + JSON requires decimal values for mode + bits. Defaults to 0644. Directories + within the path are not affected by this + setting. This might be in conflict with + other options that affect the file mode, + like fsGroup, and the result can be + other mode bits set. + description: >- + DownwardAPI represents downward API + about the pod that should populate this + volume + vsphereVolume: + type: object + required: + - volumePath + properties: + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + volumePath: + type: string + description: Path that identifies vSphere volume vmdk + storagePolicyID: + type: string + description: >- + Storage Policy Based Management (SPBM) + profile ID associated with the + StoragePolicyName. + storagePolicyName: + type: string + description: >- + Storage Policy Based Management (SPBM) + profile name. + description: >- + VsphereVolume represents a vSphere + volume attached and mounted on kubelets + host machine + portworxVolume: + type: object + required: + - volumeID + properties: + fsType: + type: string + description: >- + FSType represents the filesystem type to + mount Must be a filesystem type + supported by the host operating system. + Ex. "ext4", "xfs". Implicitly inferred + to be "ext4" if unspecified. + readOnly: + type: boolean + description: >- + Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in + VolumeMounts. + volumeID: + type: string + description: >- + VolumeID uniquely identifies a Portworx + volume + description: >- + PortworxVolume represents a portworx + volume attached and mounted on kubelets + host machine + gcePersistentDisk: + type: object + required: + - pdName + properties: + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + TODO: how do we prevent errors in the + filesystem from compromising the machine + pdName: + type: string + description: >- + Unique name of the PD resource in GCE. + Used to identify the disk in GCE. More + info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + readOnly: + type: boolean + description: >- + ReadOnly here will force the ReadOnly + setting in VolumeMounts. Defaults to + false. More info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + partition: + type: integer + format: int32 + description: >- + The partition in the volume that you + want to mount. If omitted, the default + is to mount by volume name. Examples: + For volume /dev/sda1, you specify the + partition as "1". Similarly, the volume + partition for /dev/sda is "0" (or you + can leave the property empty). More + info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + description: >- + GCEPersistentDisk represents a GCE Disk + resource that is attached to a kubelet's + host machine and then exposed to the + pod. More info: + https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + awsElasticBlockStore: + type: object + required: + - volumeID + properties: + fsType: + type: string + description: >- + Filesystem type of the volume that you + want to mount. Tip: Ensure that the + filesystem type is supported by the host + operating system. Examples: "ext4", + "xfs", "ntfs". Implicitly inferred to be + "ext4" if unspecified. More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + TODO: how do we prevent errors in the + filesystem from compromising the machine + readOnly: + type: boolean + description: >- + Specify "true" to force and set the + ReadOnly property in VolumeMounts to + "true". If omitted, the default is + "false". More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + volumeID: + type: string + description: >- + Unique ID of the persistent disk + resource in AWS (Amazon EBS volume). + More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + partition: + type: integer + format: int32 + description: >- + The partition in the volume that you + want to mount. If omitted, the default + is to mount by volume name. Examples: + For volume /dev/sda1, you specify the + partition as "1". Similarly, the volume + partition for /dev/sda is "0" (or you + can leave the property empty). + description: >- + AWSElasticBlockStore represents an AWS + Disk resource that is attached to a + kubelet's host machine and then exposed + to the pod. More info: + https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + photonPersistentDisk: + type: object + required: + - pdID + properties: + pdID: + type: string + description: >- + ID that identifies Photon Controller + persistent disk + fsType: + type: string + description: >- + Filesystem type to mount. Must be a + filesystem type supported by the host + operating system. Ex. "ext4", "xfs", + "ntfs". Implicitly inferred to be "ext4" + if unspecified. + description: >- + PhotonPersistentDisk represents a + PhotonController persistent disk + attached and mounted on kubelets host + machine + persistentVolumeClaim: + type: object + required: + - claimName + properties: + readOnly: + type: boolean + description: >- + Will force the ReadOnly setting in + VolumeMounts. Default false. + claimName: + type: string + description: >- + ClaimName is the name of a + PersistentVolumeClaim in the same + namespace as the pod using this volume. + More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + description: >- + PersistentVolumeClaimVolumeSource + represents a reference to a + PersistentVolumeClaim in the same + namespace. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + description: >- + Volume represents a named volume in a pod + that may be accessed by any container in the + pod. + description: >- + List of volumes that can be mounted by + containers belonging to the pod. More info: + https://kubernetes.io/docs/concepts/storage/volumes + affinity: + type: object + properties: + podAffinity: + type: object + properties: + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Defines a set of pods (namely those + matching the labelSelector relative to + the given namespace(s)) that this pod + should be co-located (affinity) or not + co-located (anti-affinity) with, where + co-located is defined as running on a + node whose value of the label with key + matches that of any node + on which a pod of the set of pods is + running + description: >- + If the affinity requirements specified + by this field are not met at scheduling + time, the pod will not be scheduled onto + the node. If the affinity requirements + specified by this field cease to be met + at some point during pod execution (e.g. + due to a pod label update), the system + may or may not try to eventually evict + the pod from its node. When there are + multiple elements, the lists of nodes + corresponding to each podAffinityTerm + are intersected, i.e. all terms must be + satisfied. + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - podAffinityTerm + - weight + properties: + weight: + type: integer + format: int32 + description: >- + weight associated with matching the + corresponding podAffinityTerm, in the + range 1-100. + podAffinityTerm: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Required. A pod affinity term, + associated with the corresponding + weight. + description: >- + The weights of all of the matched + WeightedPodAffinityTerm fields are added + per-node to find the most preferred + node(s) + description: >- + The scheduler will prefer to schedule + pods to nodes that satisfy the affinity + expressions specified by this field, but + it may choose a node that violates one + or more of the expressions. The node + that is most preferred is the one with + the greatest sum of weights, i.e. for + each node that meets all of the + scheduling requirements (resource + request, requiredDuringScheduling + affinity expressions, etc.), compute a + sum by iterating through the elements of + this field and adding "weight" to the + sum if the node has pods which matches + the corresponding podAffinityTerm; the + node(s) with the highest sum are the + most preferred. + description: >- + Describes pod affinity scheduling rules + (e.g. co-locate this pod in the same node, + zone, etc. as some other pod(s)). + nodeAffinity: + type: object + properties: + requiredDuringSchedulingIgnoredDuringExecution: + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + type: array + items: + type: object + properties: + matchFields: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's fields. + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's labels. + description: >- + A null or empty node selector term + matches no objects. The requirements of + them are ANDed. The TopologySelectorTerm + type implements a subset of the + NodeSelectorTerm. + description: >- + Required. A list of node selector terms. + The terms are ORed. + description: >- + If the affinity requirements specified + by this field are not met at scheduling + time, the pod will not be scheduled onto + the node. If the affinity requirements + specified by this field cease to be met + at some point during pod execution (e.g. + due to an update), the system may or may + not try to eventually evict the pod from + its node. + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - preference + - weight + properties: + weight: + type: integer + format: int32 + description: >- + Weight associated with matching the + corresponding nodeSelectorTerm, in the + range 1-100. + preference: + type: object + properties: + matchFields: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's fields. + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + The label key that the selector applies + to. + values: + type: array + items: + type: string + description: >- + An array of string values. If the + operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. If the operator is + Gt or Lt, the values array must have a + single element, which will be + interpreted as an integer. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + Represents a key's relationship to a set + of values. Valid operators are In, + NotIn, Exists, DoesNotExist. Gt, and Lt. + description: >- + A node selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + A list of node selector requirements by + node's labels. + description: >- + A node selector term, associated with + the corresponding weight. + description: >- + An empty preferred scheduling term + matches all objects with implicit weight + 0 (i.e. it's a no-op). A null preferred + scheduling term matches no objects (i.e. + is also a no-op). + description: >- + The scheduler will prefer to schedule + pods to nodes that satisfy the affinity + expressions specified by this field, but + it may choose a node that violates one + or more of the expressions. The node + that is most preferred is the one with + the greatest sum of weights, i.e. for + each node that meets all of the + scheduling requirements (resource + request, requiredDuringScheduling + affinity expressions, etc.), compute a + sum by iterating through the elements of + this field and adding "weight" to the + sum if the node matches the + corresponding matchExpressions; the + node(s) with the highest sum are the + most preferred. + description: >- + Describes node affinity scheduling rules + for the pod. + podAntiAffinity: + type: object + properties: + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Defines a set of pods (namely those + matching the labelSelector relative to + the given namespace(s)) that this pod + should be co-located (affinity) or not + co-located (anti-affinity) with, where + co-located is defined as running on a + node whose value of the label with key + matches that of any node + on which a pod of the set of pods is + running + description: >- + If the anti-affinity requirements + specified by this field are not met at + scheduling time, the pod will not be + scheduled onto the node. If the + anti-affinity requirements specified by + this field cease to be met at some point + during pod execution (e.g. due to a pod + label update), the system may or may not + try to eventually evict the pod from its + node. When there are multiple elements, + the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. + all terms must be satisfied. + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + required: + - podAffinityTerm + - weight + properties: + weight: + type: integer + format: int32 + description: >- + weight associated with matching the + corresponding podAffinityTerm, in the + range 1-100. + podAffinityTerm: + type: object + required: + - topologyKey + properties: + namespaces: + type: array + items: + type: string + description: >- + namespaces specifies which namespaces + the labelSelector applies to (matches + against); null or empty list means "this + pod's namespace" + topologyKey: + type: string + description: >- + This pod should be co-located (affinity) + or not co-located (anti-affinity) with + the pods matching the labelSelector in + the specified namespaces, where + co-located is defined as running on a + node whose value of the label with key + topologyKey matches that of any node on + which any of the selected pods is + running. Empty topologyKey is not + allowed. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + A label query over a set of resources, + in this case pods. + description: >- + Required. A pod affinity term, + associated with the corresponding + weight. + description: >- + The weights of all of the matched + WeightedPodAffinityTerm fields are added + per-node to find the most preferred + node(s) + description: >- + The scheduler will prefer to schedule + pods to nodes that satisfy the + anti-affinity expressions specified by + this field, but it may choose a node + that violates one or more of the + expressions. The node that is most + preferred is the one with the greatest + sum of weights, i.e. for each node that + meets all of the scheduling requirements + (resource request, + requiredDuringScheduling anti-affinity + expressions, etc.), compute a sum by + iterating through the elements of this + field and adding "weight" to the sum if + the node has pods which matches the + corresponding podAffinityTerm; the + node(s) with the highest sum are the + most preferred. + description: >- + Describes pod anti-affinity scheduling + rules (e.g. avoid putting this pod in the + same node, zone, etc. as some other + pod(s)). + description: 'If specified, the pod''s scheduling constraints' + hostname: + type: string + description: >- + Specifies the hostname of the Pod If not + specified, the pod's hostname will be set to a + system-defined value. + nodeName: + type: string + description: >- + NodeName is a request to schedule this pod + onto a specific node. If it is non-empty, the + scheduler simply schedules this pod onto that + node, assuming that it fits resource + requirements. + overhead: + type: object + description: >- + Overhead represents the resource overhead + associated with running a pod for a given + RuntimeClass. This field will be autopopulated + at admission time by the RuntimeClass + admission controller. If the RuntimeClass + admission controller is enabled, overhead must + not be set in Pod create requests. The + RuntimeClass admission controller will reject + Pod create requests which have the overhead + already set. If RuntimeClass is configured and + selected in the PodSpec, Overhead will be set + to the value defined in the corresponding + RuntimeClass, otherwise it will remain unset + and treated as zero. More info: + https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md + This field is alpha-level as of Kubernetes + v1.16, and is only honored by servers that + enable the PodOverhead feature. + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + priority: + type: integer + format: int32 + description: >- + The priority value. Various system components + use this field to find the priority of the + pod. When Priority Admission Controller is + enabled, it prevents users from setting this + field. The admission controller populates this + field from PriorityClassName. The higher the + value, the higher the priority. + dnsConfig: + type: object + properties: + options: + type: array + items: + type: object + properties: + name: + type: string + description: Required. + value: + type: string + description: >- + PodDNSConfigOption defines DNS resolver + options of a pod. + description: >- + A list of DNS resolver options. This will + be merged with the base options generated + from DNSPolicy. Duplicated entries will be + removed. Resolution options given in + Options will override those that appear in + the base DNSPolicy. + searches: + type: array + items: + type: string + description: >- + A list of DNS search domains for host-name + lookup. This will be appended to the base + search paths generated from DNSPolicy. + Duplicated search paths will be removed. + nameservers: + type: array + items: + type: string + description: >- + A list of DNS name server IP addresses. + This will be appended to the base + nameservers generated from DNSPolicy. + Duplicated nameservers will be removed. + description: >- + Specifies the DNS parameters of a pod. + Parameters specified here will be merged to + the generated DNS configuration based on + DNSPolicy. + dnsPolicy: + type: string + description: >- + Set DNS policy for the pod. Defaults to + "ClusterFirst". Valid values are + 'ClusterFirstWithHostNet', 'ClusterFirst', + 'Default' or 'None'. DNS parameters given in + DNSConfig will be merged with the policy + selected with DNSPolicy. To have DNS options + set along with hostNetwork, you have to + specify DNS policy explicitly to + 'ClusterFirstWithHostNet'. + subdomain: + type: string + description: >- + If specified, the fully qualified Pod hostname + will be "...svc.". If not + specified, the pod will not have a domainname + at all. + containers: + type: array + items: + type: object + required: + - name + properties: + env: + type: array + items: + type: object + required: + - name + properties: + name: + type: string + description: >- + Name of the environment variable. Must + be a C_IDENTIFIER. + value: + type: string + description: >- + Variable references $(VAR_NAME) are + expanded using the previous defined + environment variables in the container + and any service environment variables. + If a variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Defaults to + "". + valueFrom: + type: object + properties: + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Selects a field of the pod: supports + metadata.name, metadata.namespace, + `metadata.labels['']`, + `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, + status.hostIP, status.podIP, + status.podIPs. + secretKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: >- + The key of the secret to select from. + Must be a valid secret key. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + Selects a key of a secret in the pod's + namespace + configMapKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: The key to select. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its key + must be defined + description: Selects a key of a ConfigMap. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, + limits.ephemeral-storage, requests.cpu, + requests.memory and + requests.ephemeral-storage) are + currently supported. + description: >- + Source for the environment variable's + value. Cannot be used if value is not + empty. + description: >- + EnvVar represents an environment + variable present in a Container. + description: >- + List of environment variables to set in + the container. Cannot be updated. + tty: + type: boolean + description: >- + Whether this container should allocate a + TTY for itself, also requires 'stdin' to + be true. Default is false. + args: + type: array + items: + type: string + description: >- + Arguments to the entrypoint. The docker + image's CMD is used if this is not + provided. Variable references + $(VAR_NAME) are expanded using the + container's environment. If a variable + cannot be resolved, the reference in the + input string will be unchanged. The + $(VAR_NAME) syntax can be escaped with a + double $$, ie: $$(VAR_NAME). Escaped + references will never be expanded, + regardless of whether the variable + exists or not. Cannot be updated. More + info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + name: + type: string + description: >- + Name of the container specified as a + DNS_LABEL. Each container in a pod must + have a unique name (DNS_LABEL). Cannot + be updated. + image: + type: string + description: >- + Docker image name. More info: + https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher + level config management to default or + override container images in workload + controllers like Deployments and + StatefulSets. + ports: + type: array + items: + type: object + required: + - containerPort + properties: + name: + type: string + description: >- + If specified, this must be an + IANA_SVC_NAME and unique within the pod. + Each named port in a pod must have a + unique name. Name for the port that can + be referred to by services. + hostIP: + type: string + description: >- + What host IP to bind the external port + to. + hostPort: + type: integer + format: int32 + description: >- + Number of port to expose on the host. If + specified, this must be a valid port + number, 0 < x < 65536. If HostNetwork is + specified, this must match + ContainerPort. Most containers do not + need this. + protocol: + type: string + default: TCP + description: >- + Protocol for port. Must be UDP, TCP, or + SCTP. Defaults to "TCP". + containerPort: + type: integer + format: int32 + description: >- + Number of port to expose on the pod's IP + address. This must be a valid port + number, 0 < x < 65536. + description: >- + ContainerPort represents a network port + in a single container. + description: >- + List of ports to expose from the + container. Exposing a port here gives + the system additional information about + the network connections a container + uses, but is primarily informational. + Not specifying a port here DOES NOT + prevent that port from being exposed. + Any port which is listening on the + default "0.0.0.0" address inside a + container will be accessible from the + network. Cannot be updated. + x-kubernetes-list-type: map + x-kubernetes-list-map-keys: + - containerPort + - protocol + stdin: + type: boolean + description: >- + Whether this container should allocate a + buffer for stdin in the container + runtime. If this is not set, reads from + stdin in the container will always + result in EOF. Default is false. + command: + type: array + items: + type: string + description: >- + Entrypoint array. Not executed within a + shell. The docker image's ENTRYPOINT is + used if this is not provided. Variable + references $(VAR_NAME) are expanded + using the container's environment. If a + variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Cannot be + updated. More info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + envFrom: + type: array + items: + type: object + properties: + prefix: + type: string + description: >- + An optional identifier to prepend to + each key in the ConfigMap. Must be a + C_IDENTIFIER. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret must be + defined + description: The Secret to select from + configMapRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap must be + defined + description: The ConfigMap to select from + description: >- + EnvFromSource represents the source of a + set of ConfigMaps + description: >- + List of sources to populate environment + variables in the container. The keys + defined within a source must be a + C_IDENTIFIER. All invalid keys will be + reported as an event when the container + is starting. When a key exists in + multiple sources, the value associated + with the last source will take + precedence. Values defined by an Env + with a duplicate key will take + precedence. Cannot be updated. + lifecycle: + type: object + properties: + preStop: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PreStop is called immediately before a + container is terminated due to an API + request or management event such as + liveness/startup probe failure, + preemption, resource contention, etc. + The handler is not called if the + container crashes or exits. The reason + for termination is passed to the + handler. The Pod's termination grace + period countdown begins before the + PreStop hooked is executed. Regardless + of the outcome of the handler, the + container will eventually terminate + within the Pod's termination grace + period. Other management of the + container blocks until the hook + completes or until the termination grace + period is reached. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + postStart: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PostStart is called immediately after a + container is created. If the handler + fails, the container is terminated and + restarted according to its restart + policy. Other management of the + container blocks until the hook + completes. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + description: >- + Actions that the management system + should take in response to container + lifecycle events. Cannot be updated. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Compute Resources required by this + container. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + stdinOnce: + type: boolean + description: >- + Whether the container runtime should + close the stdin channel after it has + been opened by a single attach. When + stdin is true the stdin stream will + remain open across multiple attach + sessions. If stdinOnce is set to true, + stdin is opened on container start, is + empty until the first client attaches to + stdin, and then remains open and accepts + data until the client disconnects, at + which time stdin is closed and remains + closed until the container is restarted. + If this flag is false, a container + processes that reads from stdin will + never receive an EOF. Default is false + workingDir: + type: string + description: >- + Container's working directory. If not + specified, the container runtime's + default will be used, which might be + configured in the container image. + Cannot be updated. + startupProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + StartupProbe indicates that the Pod has + successfully initialized. If specified, + no other probes are executed until this + completes successfully. If this probe + fails, the Pod will be restarted, just + as if the livenessProbe failed. This can + be used to provide different probe + parameters at the beginning of a Pod's + lifecycle, when it might take a long + time to load data or warm a cache, than + during steady-state operation. This + cannot be updated. This is a beta + feature enabled by the StartupProbe + feature flag. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeMounts: + type: array + items: + type: object + required: + - mountPath + - name + properties: + name: + type: string + description: This must match the Name of a Volume. + subPath: + type: string + description: >- + Path within the volume from which the + container's volume should be mounted. + Defaults to "" (volume's root). + readOnly: + type: boolean + description: >- + Mounted read-only if true, read-write + otherwise (false or unspecified). + Defaults to false. + mountPath: + type: string + description: >- + Path within the container at which the + volume should be mounted. Must not + contain ':'. + subPathExpr: + type: string + description: >- + Expanded path within the volume from + which the container's volume should be + mounted. Behaves similarly to SubPath + but environment variable references + $(VAR_NAME) are expanded using the + container's environment. Defaults to "" + (volume's root). SubPathExpr and SubPath + are mutually exclusive. + mountPropagation: + type: string + description: >- + mountPropagation determines how mounts + are propagated from the host to + container and the other way around. When + not set, MountPropagationNone is used. + This field is beta in 1.10. + description: >- + VolumeMount describes a mounting of a + Volume within a container. + description: >- + Pod volumes to mount into the + container's filesystem. Cannot be + updated. + livenessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container liveness. + Container will be restarted if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeDevices: + type: array + items: + type: object + required: + - devicePath + - name + properties: + name: + type: string + description: >- + name must match the name of a + persistentVolumeClaim in the pod + devicePath: + type: string + description: >- + devicePath is the path inside of the + container that the device will be mapped + to. + description: >- + volumeDevice describes a mapping of a + raw block device within a container. + description: >- + volumeDevices is the list of block + devices to be used by the container. + readinessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container service + readiness. Container will be removed + from service endpoints if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + imagePullPolicy: + type: string + description: >- + Image pull policy. One of Always, Never, + IfNotPresent. Defaults to Always if + :latest tag is specified, or + IfNotPresent otherwise. Cannot be + updated. More info: + https://kubernetes.io/docs/concepts/containers/images#updating-images + securityContext: + type: object + properties: + procMount: + type: string + description: >- + procMount denotes the type of proc mount + to use for the containers. The default + is DefaultProcMount which uses the + container runtime defaults for readonly + paths and masked paths. This requires + the ProcMountType feature flag to be + enabled. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + privileged: + type: boolean + description: >- + Run container in privileged mode. + Processes in privileged containers are + essentially equivalent to root on the + host. Defaults to false. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default + if unset. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + capabilities: + type: object + properties: + add: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Added capabilities + drop: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Removed capabilities + description: >- + The capabilities to add/drop when + running containers. Defaults to the + default set of capabilities granted by + the container runtime. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as + a non-root user. If true, the Kubelet + will validate the image at runtime to + ensure that it does not run as UID 0 + (root) and fail to start the container + if it does. If unset or false, no such + validation will be performed. May also + be set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to the + container. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by this + container. If seccomp options are + provided at both the pod & container + level, the container options override + the pod options. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options from the PodSecurityContext will + be used. If set in both SecurityContext + and PodSecurityContext, the value + specified in SecurityContext takes + precedence. + readOnlyRootFilesystem: + type: boolean + description: >- + Whether this container has a read-only + root filesystem. Default is false. + allowPrivilegeEscalation: + type: boolean + description: >- + AllowPrivilegeEscalation controls + whether a process can gain more + privileges than its parent process. This + bool directly controls if the + no_new_privs flag will be set on the + container process. + AllowPrivilegeEscalation is true always + when the container is: 1) run as + Privileged 2) has CAP_SYS_ADMIN + description: >- + Security options the pod should run + with. More info: + https://kubernetes.io/docs/concepts/policy/security-context/ + More info: + https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + terminationMessagePath: + type: string + description: >- + Optional: Path at which the file to + which the container's termination + message will be written is mounted into + the container's filesystem. Message + written is intended to be brief final + status, such as an assertion failure + message. Will be truncated by the node + if greater than 4096 bytes. The total + message length across all containers + will be limited to 12kb. Defaults to + /dev/termination-log. Cannot be updated. + terminationMessagePolicy: + type: string + description: >- + Indicate how the termination message + should be populated. File will use the + contents of terminationMessagePath to + populate the container status message on + both success and failure. + FallbackToLogsOnError will use the last + chunk of container log output if the + termination message file is empty and + the container exited with an error. The + log output is limited to 2048 bytes or + 80 lines, whichever is smaller. Defaults + to File. Cannot be updated. + description: >- + A single application container that you want + to run within a pod. + description: >- + List of containers belonging to the pod. + Containers cannot currently be added or + removed. There must be at least one container + in a Pod. Cannot be updated. + hostAliases: + type: array + items: + type: object + properties: + ip: + type: string + description: IP address of the host file entry. + hostnames: + type: array + items: + type: string + description: Hostnames for the above IP address. + description: >- + HostAlias holds the mapping between IP and + hostnames that will be injected as an entry + in the pod's hosts file. + description: >- + HostAliases is an optional list of hosts and + IPs that will be injected into the pod's hosts + file if specified. This is only valid for + non-hostNetwork pods. + hostNetwork: + type: boolean + description: >- + Host networking requested for this pod. Use + the host's network namespace. If this option + is set, the ports that will be used must be + specified. Default to false. + tolerations: + type: array + items: + type: object + properties: + key: + type: string + description: >- + Key is the taint key that the toleration + applies to. Empty means match all taint + keys. If the key is empty, operator must + be Exists; this combination means to + match all values and all keys. + value: + type: string + description: >- + Value is the taint value the toleration + matches to. If the operator is Exists, + the value should be empty, otherwise + just a regular string. + effect: + type: string + description: >- + Effect indicates the taint effect to + match. Empty means match all taint + effects. When specified, allowed values + are NoSchedule, PreferNoSchedule and + NoExecute. + operator: + type: string + description: >- + Operator represents a key's relationship + to the value. Valid operators are Exists + and Equal. Defaults to Equal. Exists is + equivalent to wildcard for value, so + that a pod can tolerate all taints of a + particular category. + tolerationSeconds: + type: integer + format: int64 + description: >- + TolerationSeconds represents the period + of time the toleration (which must be of + effect NoExecute, otherwise this field + is ignored) tolerates the taint. By + default, it is not set, which means + tolerate the taint forever (do not + evict). Zero and negative values will be + treated as 0 (evict immediately) by the + system. + description: >- + The pod this Toleration is attached to + tolerates any taint that matches the triple + using the matching + operator . + description: 'If specified, the pod''s tolerations.' + nodeSelector: + type: object + description: >- + NodeSelector is a selector which must be true + for the pod to fit on a node. Selector which + must match a node's labels for the pod to be + scheduled on that node. More info: + https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + additionalProperties: + type: string + restartPolicy: + type: string + description: >- + Restart policy for all containers within the + pod. One of Always, OnFailure, Never. Default + to Always. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy + schedulerName: + type: string + description: >- + If specified, the pod will be dispatched by + specified scheduler. If not specified, the pod + will be dispatched by default scheduler. + initContainers: + type: array + items: + type: object + required: + - name + properties: + env: + type: array + items: + type: object + required: + - name + properties: + name: + type: string + description: >- + Name of the environment variable. Must + be a C_IDENTIFIER. + value: + type: string + description: >- + Variable references $(VAR_NAME) are + expanded using the previous defined + environment variables in the container + and any service environment variables. + If a variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Defaults to + "". + valueFrom: + type: object + properties: + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Selects a field of the pod: supports + metadata.name, metadata.namespace, + `metadata.labels['']`, + `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, + status.hostIP, status.podIP, + status.podIPs. + secretKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: >- + The key of the secret to select from. + Must be a valid secret key. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + Selects a key of a secret in the pod's + namespace + configMapKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: The key to select. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its key + must be defined + description: Selects a key of a ConfigMap. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, + limits.ephemeral-storage, requests.cpu, + requests.memory and + requests.ephemeral-storage) are + currently supported. + description: >- + Source for the environment variable's + value. Cannot be used if value is not + empty. + description: >- + EnvVar represents an environment + variable present in a Container. + description: >- + List of environment variables to set in + the container. Cannot be updated. + tty: + type: boolean + description: >- + Whether this container should allocate a + TTY for itself, also requires 'stdin' to + be true. Default is false. + args: + type: array + items: + type: string + description: >- + Arguments to the entrypoint. The docker + image's CMD is used if this is not + provided. Variable references + $(VAR_NAME) are expanded using the + container's environment. If a variable + cannot be resolved, the reference in the + input string will be unchanged. The + $(VAR_NAME) syntax can be escaped with a + double $$, ie: $$(VAR_NAME). Escaped + references will never be expanded, + regardless of whether the variable + exists or not. Cannot be updated. More + info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + name: + type: string + description: >- + Name of the container specified as a + DNS_LABEL. Each container in a pod must + have a unique name (DNS_LABEL). Cannot + be updated. + image: + type: string + description: >- + Docker image name. More info: + https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher + level config management to default or + override container images in workload + controllers like Deployments and + StatefulSets. + ports: + type: array + items: + type: object + required: + - containerPort + properties: + name: + type: string + description: >- + If specified, this must be an + IANA_SVC_NAME and unique within the pod. + Each named port in a pod must have a + unique name. Name for the port that can + be referred to by services. + hostIP: + type: string + description: >- + What host IP to bind the external port + to. + hostPort: + type: integer + format: int32 + description: >- + Number of port to expose on the host. If + specified, this must be a valid port + number, 0 < x < 65536. If HostNetwork is + specified, this must match + ContainerPort. Most containers do not + need this. + protocol: + type: string + default: TCP + description: >- + Protocol for port. Must be UDP, TCP, or + SCTP. Defaults to "TCP". + containerPort: + type: integer + format: int32 + description: >- + Number of port to expose on the pod's IP + address. This must be a valid port + number, 0 < x < 65536. + description: >- + ContainerPort represents a network port + in a single container. + description: >- + List of ports to expose from the + container. Exposing a port here gives + the system additional information about + the network connections a container + uses, but is primarily informational. + Not specifying a port here DOES NOT + prevent that port from being exposed. + Any port which is listening on the + default "0.0.0.0" address inside a + container will be accessible from the + network. Cannot be updated. + x-kubernetes-list-type: map + x-kubernetes-list-map-keys: + - containerPort + - protocol + stdin: + type: boolean + description: >- + Whether this container should allocate a + buffer for stdin in the container + runtime. If this is not set, reads from + stdin in the container will always + result in EOF. Default is false. + command: + type: array + items: + type: string + description: >- + Entrypoint array. Not executed within a + shell. The docker image's ENTRYPOINT is + used if this is not provided. Variable + references $(VAR_NAME) are expanded + using the container's environment. If a + variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Cannot be + updated. More info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + envFrom: + type: array + items: + type: object + properties: + prefix: + type: string + description: >- + An optional identifier to prepend to + each key in the ConfigMap. Must be a + C_IDENTIFIER. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret must be + defined + description: The Secret to select from + configMapRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap must be + defined + description: The ConfigMap to select from + description: >- + EnvFromSource represents the source of a + set of ConfigMaps + description: >- + List of sources to populate environment + variables in the container. The keys + defined within a source must be a + C_IDENTIFIER. All invalid keys will be + reported as an event when the container + is starting. When a key exists in + multiple sources, the value associated + with the last source will take + precedence. Values defined by an Env + with a duplicate key will take + precedence. Cannot be updated. + lifecycle: + type: object + properties: + preStop: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PreStop is called immediately before a + container is terminated due to an API + request or management event such as + liveness/startup probe failure, + preemption, resource contention, etc. + The handler is not called if the + container crashes or exits. The reason + for termination is passed to the + handler. The Pod's termination grace + period countdown begins before the + PreStop hooked is executed. Regardless + of the outcome of the handler, the + container will eventually terminate + within the Pod's termination grace + period. Other management of the + container blocks until the hook + completes or until the termination grace + period is reached. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + postStart: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PostStart is called immediately after a + container is created. If the handler + fails, the container is terminated and + restarted according to its restart + policy. Other management of the + container blocks until the hook + completes. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + description: >- + Actions that the management system + should take in response to container + lifecycle events. Cannot be updated. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Compute Resources required by this + container. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + stdinOnce: + type: boolean + description: >- + Whether the container runtime should + close the stdin channel after it has + been opened by a single attach. When + stdin is true the stdin stream will + remain open across multiple attach + sessions. If stdinOnce is set to true, + stdin is opened on container start, is + empty until the first client attaches to + stdin, and then remains open and accepts + data until the client disconnects, at + which time stdin is closed and remains + closed until the container is restarted. + If this flag is false, a container + processes that reads from stdin will + never receive an EOF. Default is false + workingDir: + type: string + description: >- + Container's working directory. If not + specified, the container runtime's + default will be used, which might be + configured in the container image. + Cannot be updated. + startupProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + StartupProbe indicates that the Pod has + successfully initialized. If specified, + no other probes are executed until this + completes successfully. If this probe + fails, the Pod will be restarted, just + as if the livenessProbe failed. This can + be used to provide different probe + parameters at the beginning of a Pod's + lifecycle, when it might take a long + time to load data or warm a cache, than + during steady-state operation. This + cannot be updated. This is a beta + feature enabled by the StartupProbe + feature flag. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeMounts: + type: array + items: + type: object + required: + - mountPath + - name + properties: + name: + type: string + description: This must match the Name of a Volume. + subPath: + type: string + description: >- + Path within the volume from which the + container's volume should be mounted. + Defaults to "" (volume's root). + readOnly: + type: boolean + description: >- + Mounted read-only if true, read-write + otherwise (false or unspecified). + Defaults to false. + mountPath: + type: string + description: >- + Path within the container at which the + volume should be mounted. Must not + contain ':'. + subPathExpr: + type: string + description: >- + Expanded path within the volume from + which the container's volume should be + mounted. Behaves similarly to SubPath + but environment variable references + $(VAR_NAME) are expanded using the + container's environment. Defaults to "" + (volume's root). SubPathExpr and SubPath + are mutually exclusive. + mountPropagation: + type: string + description: >- + mountPropagation determines how mounts + are propagated from the host to + container and the other way around. When + not set, MountPropagationNone is used. + This field is beta in 1.10. + description: >- + VolumeMount describes a mounting of a + Volume within a container. + description: >- + Pod volumes to mount into the + container's filesystem. Cannot be + updated. + livenessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container liveness. + Container will be restarted if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + volumeDevices: + type: array + items: + type: object + required: + - devicePath + - name + properties: + name: + type: string + description: >- + name must match the name of a + persistentVolumeClaim in the pod + devicePath: + type: string + description: >- + devicePath is the path inside of the + container that the device will be mapped + to. + description: >- + volumeDevice describes a mapping of a + raw block device within a container. + description: >- + volumeDevices is the list of block + devices to be used by the container. + readinessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Periodic probe of container service + readiness. Container will be removed + from service endpoints if the probe + fails. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + imagePullPolicy: + type: string + description: >- + Image pull policy. One of Always, Never, + IfNotPresent. Defaults to Always if + :latest tag is specified, or + IfNotPresent otherwise. Cannot be + updated. More info: + https://kubernetes.io/docs/concepts/containers/images#updating-images + securityContext: + type: object + properties: + procMount: + type: string + description: >- + procMount denotes the type of proc mount + to use for the containers. The default + is DefaultProcMount which uses the + container runtime defaults for readonly + paths and masked paths. This requires + the ProcMountType feature flag to be + enabled. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + privileged: + type: boolean + description: >- + Run container in privileged mode. + Processes in privileged containers are + essentially equivalent to root on the + host. Defaults to false. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default + if unset. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + capabilities: + type: object + properties: + add: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Added capabilities + drop: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Removed capabilities + description: >- + The capabilities to add/drop when + running containers. Defaults to the + default set of capabilities granted by + the container runtime. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as + a non-root user. If true, the Kubelet + will validate the image at runtime to + ensure that it does not run as UID 0 + (root) and fail to start the container + if it does. If unset or false, no such + validation will be performed. May also + be set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to the + container. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by this + container. If seccomp options are + provided at both the pod & container + level, the container options override + the pod options. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options from the PodSecurityContext will + be used. If set in both SecurityContext + and PodSecurityContext, the value + specified in SecurityContext takes + precedence. + readOnlyRootFilesystem: + type: boolean + description: >- + Whether this container has a read-only + root filesystem. Default is false. + allowPrivilegeEscalation: + type: boolean + description: >- + AllowPrivilegeEscalation controls + whether a process can gain more + privileges than its parent process. This + bool directly controls if the + no_new_privs flag will be set on the + container process. + AllowPrivilegeEscalation is true always + when the container is: 1) run as + Privileged 2) has CAP_SYS_ADMIN + description: >- + Security options the pod should run + with. More info: + https://kubernetes.io/docs/concepts/policy/security-context/ + More info: + https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + terminationMessagePath: + type: string + description: >- + Optional: Path at which the file to + which the container's termination + message will be written is mounted into + the container's filesystem. Message + written is intended to be brief final + status, such as an assertion failure + message. Will be truncated by the node + if greater than 4096 bytes. The total + message length across all containers + will be limited to 12kb. Defaults to + /dev/termination-log. Cannot be updated. + terminationMessagePolicy: + type: string + description: >- + Indicate how the termination message + should be populated. File will use the + contents of terminationMessagePath to + populate the container status message on + both success and failure. + FallbackToLogsOnError will use the last + chunk of container log output if the + termination message file is empty and + the container exited with an error. The + log output is limited to 2048 bytes or + 80 lines, whichever is smaller. Defaults + to File. Cannot be updated. + description: >- + A single application container that you want + to run within a pod. + description: >- + List of initialization containers belonging to + the pod. Init containers are executed in order + prior to containers being started. If any init + container fails, the pod is considered to have + failed and is handled according to its + restartPolicy. The name for an init container + or normal container must be unique among all + containers. Init containers may not have + Lifecycle actions, Readiness probes, Liveness + probes, or Startup probes. The + resourceRequirements of an init container are + taken into account during scheduling by + finding the highest request/limit for each + resource type, and then using the max of of + that value or the sum of the normal + containers. Limits are applied to init + containers in a similar fashion. Init + containers cannot currently be added or + removed. Cannot be updated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + readinessGates: + type: array + items: + type: object + required: + - conditionType + properties: + conditionType: + type: string + description: >- + ConditionType refers to a condition in + the pod's condition list with matching + type. + description: >- + PodReadinessGate contains the reference to a + pod condition + description: >- + If specified, all readiness gates will be + evaluated for pod readiness. A pod is ready + when all its containers are ready AND all + conditions specified in the readiness gates + have status equal to "True" More info: + https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md + serviceAccount: + type: string + description: >- + DeprecatedServiceAccount is a depreciated + alias for ServiceAccountName. Deprecated: Use + serviceAccountName instead. + securityContext: + type: object + properties: + fsGroup: + type: integer + format: int64 + description: >- + A special supplemental group that applies + to all containers in a pod. Some volume + types allow the Kubelet to change the + ownership of that volume to be owned by + the pod: + 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- + If unset, the Kubelet will not modify the ownership and permissions of any volume. + sysctls: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: Name of a property to set + value: + type: string + description: Value of a property to set + description: >- + Sysctl defines a kernel parameter to be + set + description: >- + Sysctls hold a list of namespaced sysctls + used for the pod. Pods with unsupported + sysctls (by the container runtime) might + fail to launch. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence for that container. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default if + unset. May also be set in + SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence for that container. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as a + non-root user. If true, the Kubelet will + validate the image at runtime to ensure + that it does not run as UID 0 (root) and + fail to start the container if it does. If + unset or false, no such validation will be + performed. May also be set in + SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to all + containers. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in SecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence for that container. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by the + containers in this pod. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options within a container's + SecurityContext will be used. If set in + both SecurityContext and + PodSecurityContext, the value specified in + SecurityContext takes precedence. + supplementalGroups: + type: array + items: + type: integer + format: int64 + description: >- + A list of groups applied to the first + process run in each container, in addition + to the container's primary GID. If + unspecified, no groups will be added to + any container. + fsGroupChangePolicy: + type: string + description: >- + fsGroupChangePolicy defines behavior of + changing ownership and permission of the + volume before being exposed inside Pod. + This field will only apply to volume types + which support fsGroup based ownership(and + permissions). It will have no effect on + ephemeral volume types such as: secret, + configmaps and emptydir. Valid values are + "OnRootMismatch" and "Always". If not + specified defaults to "Always". + description: >- + SecurityContext holds pod-level security + attributes and common container settings. + Optional: Defaults to empty. See type + description for default values of each field. + imagePullSecrets: + type: array + items: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + description: >- + LocalObjectReference contains enough + information to let you locate the referenced + object inside the same namespace. + description: >- + ImagePullSecrets is an optional list of + references to secrets in the same namespace to + use for pulling any of the images used by this + PodSpec. If specified, these secrets will be + passed to individual puller implementations + for them to use. For example, in the case of + docker, only DockerConfig type secrets are + honored. More info: + https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod + preemptionPolicy: + type: string + description: >- + PreemptionPolicy is the Policy for preempting + pods with lower priority. One of Never, + PreemptLowerPriority. Defaults to + PreemptLowerPriority if unset. This field is + beta-level, gated by the NonPreemptingPriority + feature-gate. + runtimeClassName: + type: string + description: >- + RuntimeClassName refers to a RuntimeClass + object in the node.k8s.io group, which should + be used to run this pod. If no RuntimeClass + resource matches the named class, the pod will + not be run. If unset or empty, the "legacy" + RuntimeClass will be used, which is an + implicit class with an empty definition that + uses the default runtime handler. More info: + https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md + This is a beta feature as of Kubernetes v1.14. + priorityClassName: + type: string + description: >- + If specified, indicates the pod's priority. + "system-node-critical" and + "system-cluster-critical" are two special + keywords which indicate the highest priorities + with the former being the highest priority. + Any other name must be defined by creating a + PriorityClass object with that name. If not + specified, the pod priority will be default or + zero if there is no default. + setHostnameAsFQDN: + type: boolean + description: >- + If true the pod's hostname will be configured + as the pod's FQDN, rather than the leaf name + (the default). In Linux containers, this means + setting the FQDN in the hostname field of the + kernel (the nodename field of struct utsname). + In Windows containers, this means setting the + registry value of hostname for the registry + key + HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters + to FQDN. If a pod does not have FQDN, this has + no effect. Default to false. + enableServiceLinks: + type: boolean + description: >- + EnableServiceLinks indicates whether + information about services should be injected + into pod's environment variables, matching the + syntax of Docker links. Optional: Defaults to + true. + serviceAccountName: + type: string + description: >- + ServiceAccountName is the name of the + ServiceAccount to use to run this pod. More + info: + https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ephemeralContainers: + type: array + items: + type: object + required: + - name + properties: + env: + type: array + items: + type: object + required: + - name + properties: + name: + type: string + description: >- + Name of the environment variable. Must + be a C_IDENTIFIER. + value: + type: string + description: >- + Variable references $(VAR_NAME) are + expanded using the previous defined + environment variables in the container + and any service environment variables. + If a variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Defaults to + "". + valueFrom: + type: object + properties: + fieldRef: + type: object + required: + - fieldPath + properties: + fieldPath: + type: string + description: >- + Path of the field to select in the + specified API version. + apiVersion: + type: string + description: >- + Version of the schema the FieldPath is + written in terms of, defaults to "v1". + description: >- + Selects a field of the pod: supports + metadata.name, metadata.namespace, + `metadata.labels['']`, + `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, + status.hostIP, status.podIP, + status.podIPs. + secretKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: >- + The key of the secret to select from. + Must be a valid secret key. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret or its key + must be defined + description: >- + Selects a key of a secret in the pod's + namespace + configMapKeyRef: + type: object + required: + - key + properties: + key: + type: string + description: The key to select. + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap or its key + must be defined + description: Selects a key of a ConfigMap. + resourceFieldRef: + type: object + required: + - resource + properties: + divisor: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + description: >- + Specifies the output format of the + exposed resources, defaults to "1" + x-kubernetes-int-or-string: true + resource: + type: string + description: 'Required: resource to select' + containerName: + type: string + description: >- + Container name: required for volumes, + optional for env vars + description: >- + Selects a resource of the container: + only resources limits and requests + (limits.cpu, limits.memory, + limits.ephemeral-storage, requests.cpu, + requests.memory and + requests.ephemeral-storage) are + currently supported. + description: >- + Source for the environment variable's + value. Cannot be used if value is not + empty. + description: >- + EnvVar represents an environment + variable present in a Container. + description: >- + List of environment variables to set in + the container. Cannot be updated. + tty: + type: boolean + description: >- + Whether this container should allocate a + TTY for itself, also requires 'stdin' to + be true. Default is false. + args: + type: array + items: + type: string + description: >- + Arguments to the entrypoint. The docker + image's CMD is used if this is not + provided. Variable references + $(VAR_NAME) are expanded using the + container's environment. If a variable + cannot be resolved, the reference in the + input string will be unchanged. The + $(VAR_NAME) syntax can be escaped with a + double $$, ie: $$(VAR_NAME). Escaped + references will never be expanded, + regardless of whether the variable + exists or not. Cannot be updated. More + info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + name: + type: string + description: >- + Name of the ephemeral container + specified as a DNS_LABEL. This name must + be unique among all containers, init + containers and ephemeral containers. + image: + type: string + description: >- + Docker image name. More info: + https://kubernetes.io/docs/concepts/containers/images + ports: + type: array + items: + type: object + required: + - containerPort + properties: + name: + type: string + description: >- + If specified, this must be an + IANA_SVC_NAME and unique within the pod. + Each named port in a pod must have a + unique name. Name for the port that can + be referred to by services. + hostIP: + type: string + description: >- + What host IP to bind the external port + to. + hostPort: + type: integer + format: int32 + description: >- + Number of port to expose on the host. If + specified, this must be a valid port + number, 0 < x < 65536. If HostNetwork is + specified, this must match + ContainerPort. Most containers do not + need this. + protocol: + type: string + default: TCP + description: >- + Protocol for port. Must be UDP, TCP, or + SCTP. Defaults to "TCP". + containerPort: + type: integer + format: int32 + description: >- + Number of port to expose on the pod's IP + address. This must be a valid port + number, 0 < x < 65536. + description: >- + ContainerPort represents a network port + in a single container. + description: >- + Ports are not allowed for ephemeral + containers. + stdin: + type: boolean + description: >- + Whether this container should allocate a + buffer for stdin in the container + runtime. If this is not set, reads from + stdin in the container will always + result in EOF. Default is false. + command: + type: array + items: + type: string + description: >- + Entrypoint array. Not executed within a + shell. The docker image's ENTRYPOINT is + used if this is not provided. Variable + references $(VAR_NAME) are expanded + using the container's environment. If a + variable cannot be resolved, the + reference in the input string will be + unchanged. The $(VAR_NAME) syntax can be + escaped with a double $$, ie: + $$(VAR_NAME). Escaped references will + never be expanded, regardless of whether + the variable exists or not. Cannot be + updated. More info: + https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + envFrom: + type: array + items: + type: object + properties: + prefix: + type: string + description: >- + An optional identifier to prepend to + each key in the ConfigMap. Must be a + C_IDENTIFIER. + secretRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the Secret must be + defined + description: The Secret to select from + configMapRef: + type: object + properties: + name: + type: string + description: >- + Name of the referent. More info: + https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. + apiVersion, kind, uid? + optional: + type: boolean + description: >- + Specify whether the ConfigMap must be + defined + description: The ConfigMap to select from + description: >- + EnvFromSource represents the source of a + set of ConfigMaps + description: >- + List of sources to populate environment + variables in the container. The keys + defined within a source must be a + C_IDENTIFIER. All invalid keys will be + reported as an event when the container + is starting. When a key exists in + multiple sources, the value associated + with the last source will take + precedence. Values defined by an Env + with a duplicate key will take + precedence. Cannot be updated. + lifecycle: + type: object + properties: + preStop: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PreStop is called immediately before a + container is terminated due to an API + request or management event such as + liveness/startup probe failure, + preemption, resource contention, etc. + The handler is not called if the + container crashes or exits. The reason + for termination is passed to the + handler. The Pod's termination grace + period countdown begins before the + PreStop hooked is executed. Regardless + of the outcome of the handler, the + container will eventually terminate + within the Pod's termination grace + period. Other management of the + container blocks until the hook + completes or until the termination grace + period is reached. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + postStart: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + description: >- + PostStart is called immediately after a + container is created. If the handler + fails, the container is terminated and + restarted according to its restart + policy. Other management of the + container blocks until the hook + completes. More info: + https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + description: >- + Lifecycle is not allowed for ephemeral + containers. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of + compute resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests + is omitted for a container, it defaults + to Limits if that is explicitly + specified, otherwise to an + implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Resources are not allowed for ephemeral + containers. Ephemeral containers use + spare resources already allocated to the + pod. + stdinOnce: + type: boolean + description: >- + Whether the container runtime should + close the stdin channel after it has + been opened by a single attach. When + stdin is true the stdin stream will + remain open across multiple attach + sessions. If stdinOnce is set to true, + stdin is opened on container start, is + empty until the first client attaches to + stdin, and then remains open and accepts + data until the client disconnects, at + which time stdin is closed and remains + closed until the container is restarted. + If this flag is false, a container + processes that reads from stdin will + never receive an EOF. Default is false + workingDir: + type: string + description: >- + Container's working directory. If not + specified, the container runtime's + default will be used, which might be + configured in the container image. + Cannot be updated. + startupProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Probes are not allowed for ephemeral + containers. + volumeMounts: + type: array + items: + type: object + required: + - mountPath + - name + properties: + name: + type: string + description: This must match the Name of a Volume. + subPath: + type: string + description: >- + Path within the volume from which the + container's volume should be mounted. + Defaults to "" (volume's root). + readOnly: + type: boolean + description: >- + Mounted read-only if true, read-write + otherwise (false or unspecified). + Defaults to false. + mountPath: + type: string + description: >- + Path within the container at which the + volume should be mounted. Must not + contain ':'. + subPathExpr: + type: string + description: >- + Expanded path within the volume from + which the container's volume should be + mounted. Behaves similarly to SubPath + but environment variable references + $(VAR_NAME) are expanded using the + container's environment. Defaults to "" + (volume's root). SubPathExpr and SubPath + are mutually exclusive. + mountPropagation: + type: string + description: >- + mountPropagation determines how mounts + are propagated from the host to + container and the other way around. When + not set, MountPropagationNone is used. + This field is beta in 1.10. + description: >- + VolumeMount describes a mounting of a + Volume within a container. + description: >- + Pod volumes to mount into the + container's filesystem. Cannot be + updated. + livenessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Probes are not allowed for ephemeral + containers. + volumeDevices: + type: array + items: + type: object + required: + - devicePath + - name + properties: + name: + type: string + description: >- + name must match the name of a + persistentVolumeClaim in the pod + devicePath: + type: string + description: >- + devicePath is the path inside of the + container that the device will be mapped + to. + description: >- + volumeDevice describes a mapping of a + raw block device within a container. + description: >- + volumeDevices is the list of block + devices to be used by the container. + readinessProbe: + type: object + properties: + exec: + type: object + properties: + command: + type: array + items: + type: string + description: >- + Command is the command line to execute + inside the container, the working + directory for the command is root ('/') + in the container's filesystem. The + command is simply exec'd, it is not run + inside a shell, so traditional shell + instructions ('|', etc) won't work. To + use a shell, you need to explicitly call + out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is + unhealthy. + description: >- + One and only one of the following should + be specified. Exec specifies the action + to take. + httpGet: + type: object + required: + - port + properties: + host: + type: string + description: >- + Host name to connect to, defaults to the + pod IP. You probably want to set "Host" + in httpHeaders instead. + path: + type: string + description: Path to access on the HTTP server. + port: + anyOf: + - type: integer + - type: string + description: >- + Name or number of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + type: string + description: >- + Scheme to use for connecting to the + host. Defaults to HTTP. + httpHeaders: + type: array + items: + type: object + required: + - name + - value + properties: + name: + type: string + description: The header field name + value: + type: string + description: The header field value + description: >- + HTTPHeader describes a custom header to + be used in HTTP probes + description: >- + Custom headers to set in the request. + HTTP allows repeated headers. + description: >- + HTTPGet specifies the http request to + perform. + tcpSocket: + type: object + required: + - port + properties: + host: + type: string + description: >- + Optional: Host name to connect to, + defaults to the pod IP. + port: + anyOf: + - type: integer + - type: string + description: >- + Number or name of the port to access on + the container. Number must be in the + range 1 to 65535. Name must be an + IANA_SVC_NAME. + x-kubernetes-int-or-string: true + description: >- + TCPSocket specifies an action involving + a TCP port. TCP hooks not yet supported + TODO: implement a realistic TCP + lifecycle hook + periodSeconds: + type: integer + format: int32 + description: >- + How often (in seconds) to perform the + probe. Default to 10 seconds. Minimum + value is 1. + timeoutSeconds: + type: integer + format: int32 + description: >- + Number of seconds after which the probe + times out. Defaults to 1 second. Minimum + value is 1. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + failureThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive failures for the + probe to be considered failed after + having succeeded. Defaults to 3. Minimum + value is 1. + successThreshold: + type: integer + format: int32 + description: >- + Minimum consecutive successes for the + probe to be considered successful after + having failed. Defaults to 1. Must be 1 + for liveness and startup. Minimum value + is 1. + initialDelaySeconds: + type: integer + format: int32 + description: >- + Number of seconds after the container + has started before liveness probes are + initiated. More info: + https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + description: >- + Probes are not allowed for ephemeral + containers. + imagePullPolicy: + type: string + description: >- + Image pull policy. One of Always, Never, + IfNotPresent. Defaults to Always if + :latest tag is specified, or + IfNotPresent otherwise. Cannot be + updated. More info: + https://kubernetes.io/docs/concepts/containers/images#updating-images + securityContext: + type: object + properties: + procMount: + type: string + description: >- + procMount denotes the type of proc mount + to use for the containers. The default + is DefaultProcMount which uses the + container runtime defaults for readonly + paths and masked paths. This requires + the ProcMountType feature flag to be + enabled. + runAsUser: + type: integer + format: int64 + description: >- + The UID to run the entrypoint of the + container process. Defaults to user + specified in image metadata if + unspecified. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + privileged: + type: boolean + description: >- + Run container in privileged mode. + Processes in privileged containers are + essentially equivalent to root on the + host. Defaults to false. + runAsGroup: + type: integer + format: int64 + description: >- + The GID to run the entrypoint of the + container process. Uses runtime default + if unset. May also be set in + PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + capabilities: + type: object + properties: + add: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Added capabilities + drop: + type: array + items: + type: string + description: >- + Capability represent POSIX capabilities + type + description: Removed capabilities + description: >- + The capabilities to add/drop when + running containers. Defaults to the + default set of capabilities granted by + the container runtime. + runAsNonRoot: + type: boolean + description: >- + Indicates that the container must run as + a non-root user. If true, the Kubelet + will validate the image at runtime to + ensure that it does not run as UID 0 + (root) and fail to start the container + if it does. If unset or false, no such + validation will be performed. May also + be set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seLinuxOptions: + type: object + properties: + role: + type: string + description: >- + Role is a SELinux role label that + applies to the container. + type: + type: string + description: >- + Type is a SELinux type label that + applies to the container. + user: + type: string + description: >- + User is a SELinux user label that + applies to the container. + level: + type: string + description: >- + Level is SELinux level label that + applies to the container. + description: >- + The SELinux context to be applied to the + container. If unspecified, the container + runtime will allocate a random SELinux + context for each container. May also be + set in PodSecurityContext. If set in + both SecurityContext and + PodSecurityContext, the value specified + in SecurityContext takes precedence. + seccompProfile: + type: object + required: + - type + properties: + type: + type: string + description: >- + type indicates which kind of seccomp + profile will be applied. Valid options + are: + Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + localhostProfile: + type: string + description: >- + localhostProfile indicates a profile + defined in a file on the node should be + used. The profile must be preconfigured + on the node to work. Must be a + descending path, relative to the + kubelet's configured seccomp profile + location. Must only be set if type is + "Localhost". + description: >- + The seccomp options to use by this + container. If seccomp options are + provided at both the pod & container + level, the container options override + the pod options. + windowsOptions: + type: object + properties: + runAsUserName: + type: string + description: >- + The UserName in Windows to run the + entrypoint of the container process. + Defaults to the user specified in image + metadata if unspecified. May also be set + in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, + the value specified in SecurityContext + takes precedence. + gmsaCredentialSpec: + type: string + description: >- + GMSACredentialSpec is where the GMSA + admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA + credential spec named by the + GMSACredentialSpecName field. + gmsaCredentialSpecName: + type: string + description: >- + GMSACredentialSpecName is the name of + the GMSA credential spec to use. + description: >- + The Windows specific settings applied to + all containers. If unspecified, the + options from the PodSecurityContext will + be used. If set in both SecurityContext + and PodSecurityContext, the value + specified in SecurityContext takes + precedence. + readOnlyRootFilesystem: + type: boolean + description: >- + Whether this container has a read-only + root filesystem. Default is false. + allowPrivilegeEscalation: + type: boolean + description: >- + AllowPrivilegeEscalation controls + whether a process can gain more + privileges than its parent process. This + bool directly controls if the + no_new_privs flag will be set on the + container process. + AllowPrivilegeEscalation is true always + when the container is: 1) run as + Privileged 2) has CAP_SYS_ADMIN + description: >- + SecurityContext is not allowed for + ephemeral containers. + targetContainerName: + type: string + description: >- + If set, the name of the container from + PodSpec that this ephemeral container + targets. The ephemeral container will be + run in the namespaces (IPC, PID, etc) of + this container. If not set then the + ephemeral container is run in whatever + namespaces are shared for the pod. Note + that the container runtime must support + this feature. + terminationMessagePath: + type: string + description: >- + Optional: Path at which the file to + which the container's termination + message will be written is mounted into + the container's filesystem. Message + written is intended to be brief final + status, such as an assertion failure + message. Will be truncated by the node + if greater than 4096 bytes. The total + message length across all containers + will be limited to 12kb. Defaults to + /dev/termination-log. Cannot be updated. + terminationMessagePolicy: + type: string + description: >- + Indicate how the termination message + should be populated. File will use the + contents of terminationMessagePath to + populate the container status message on + both success and failure. + FallbackToLogsOnError will use the last + chunk of container log output if the + termination message file is empty and + the container exited with an error. The + log output is limited to 2048 bytes or + 80 lines, whichever is smaller. Defaults + to File. Cannot be updated. + description: >- + An EphemeralContainer is a container that + may be added temporarily to an existing pod + for user-initiated activities such as + debugging. Ephemeral containers have no + resource or scheduling guarantees, and they + will not be restarted when they exit or when + a pod is removed or restarted. If an + ephemeral container causes a pod to exceed + its resource allocation, the pod may be + evicted. Ephemeral containers may not be + added by directly updating the pod spec. + They must be added via the pod's + ephemeralcontainers subresource, and they + will appear in the pod spec once added. This + is an alpha feature enabled by the + EphemeralContainers feature flag. + description: >- + List of ephemeral containers run in this pod. + Ephemeral containers may be run in an existing + pod to perform user-initiated actions such as + debugging. This list cannot be specified when + creating a pod, and it cannot be modified by + updating the pod spec. In order to add an + ephemeral container to an existing pod, use + the pod's ephemeralcontainers subresource. + This field is alpha-level and is only honored + by servers that enable the EphemeralContainers + feature. + activeDeadlineSeconds: + type: integer + format: int64 + description: >- + Optional duration in seconds the pod may be + active on the node relative to StartTime + before the system will actively try to mark it + failed and kill associated containers. Value + must be a positive integer. + shareProcessNamespace: + type: boolean + description: >- + Share a single process namespace between all + of the containers in a pod. When this is set + containers will be able to view and signal + processes from other containers in the same + pod, and the first process in each container + will not be assigned PID 1. HostPID and + ShareProcessNamespace cannot both be set. + Optional: Default to false. + topologySpreadConstraints: + type: array + items: + type: object + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + properties: + maxSkew: + type: integer + format: int32 + description: >- + MaxSkew describes the degree to which + pods may be unevenly distributed. When + `whenUnsatisfiable=DoNotSchedule`, it is + the maximum permitted difference between + the number of matching pods in the + target topology and the global minimum. + For example, in a 3-zone cluster, + MaxSkew is set to 1, and pods with the + same labelSelector spread as 1/1/0: | + zone1 | zone2 | zone3 | | P | P + | | - if MaxSkew is 1, incoming + pod can only be scheduled to zone3 to + become 1/1/1; scheduling it onto + zone1(zone2) would make the + ActualSkew(2-0) on zone1(zone2) violate + MaxSkew(1). - if MaxSkew is 2, incoming + pod can be scheduled onto any zone. When + `whenUnsatisfiable=ScheduleAnyway`, it + is used to give higher precedence to + topologies that satisfy it. It's a + required field. Default value is 1 and 0 + is not allowed. + topologyKey: + type: string + description: >- + TopologyKey is the key of node labels. + Nodes that have a label with this key + and identical values are considered to + be in the same topology. We consider + each as a "bucket", and try + to put balanced number of pods into each + bucket. It's a required field. + labelSelector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} + pairs. A single {key,value} in the + matchLabels map is equivalent to an + element of matchExpressions, whose key + field is "key", the operator is "In", + and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a + selector that contains values, a key, + and an operator that relates the key and + values. + description: >- + matchExpressions is a list of label + selector requirements. The requirements + are ANDed. + description: >- + LabelSelector is used to find matching + pods. Pods that match this label + selector are counted to determine the + number of pods in their corresponding + topology domain. + whenUnsatisfiable: + type: string + description: >- + WhenUnsatisfiable indicates how to deal + with a pod if it doesn't satisfy the + spread constraint. - DoNotSchedule + (default) tells the scheduler not to + schedule it. - ScheduleAnyway tells the + scheduler to schedule the pod in any + location, but giving higher precedence + to topologies that would help reduce + the skew. A constraint is considered + "Unsatisfiable" for an incoming pod if + and only if every possible node + assigment for that pod would violate + "MaxSkew" on some topology. For example, + in a 3-zone cluster, MaxSkew is set to + 1, and pods with the same labelSelector + spread as 3/1/1: | zone1 | zone2 | zone3 + | | P P P | P | P | If + WhenUnsatisfiable is set to + DoNotSchedule, incoming pod can only be + scheduled to zone2(zone3) to become + 3/2/1(3/1/2) as ActualSkew(2-1) on + zone2(zone3) satisfies MaxSkew(1). In + other words, the cluster can still be + imbalanced, but scheduler won't make it + *more* imbalanced. It's a required + field. + description: >- + TopologySpreadConstraint specifies how to + spread matching pods among the given + topology. + description: >- + TopologySpreadConstraints describes how a + group of pods ought to spread across topology + domains. Scheduler will schedule pods in a way + which abides by the constraints. All + topologySpreadConstraints are ANDed. + x-kubernetes-list-type: map + x-kubernetes-list-map-keys: + - topologyKey + - whenUnsatisfiable + automountServiceAccountToken: + type: boolean + description: >- + AutomountServiceAccountToken indicates whether + a service account token should be + automatically mounted. + terminationGracePeriodSeconds: + type: integer + format: int64 + description: >- + Optional duration in seconds the pod needs to + terminate gracefully. May be decreased in + delete request. Value must be non-negative + integer. The value zero indicates delete + immediately. If this value is nil, the default + grace period will be used instead. The grace + period is the duration in seconds after the + processes running in the pod are sent a + termination signal and the time when the + processes are forcibly halted with a kill + signal. Set this value longer than the + expected cleanup time for your process. + Defaults to 30 seconds. + description: >- + Specification of the desired behavior of the pod. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + metadata: + type: object + description: >- + Standard object's metadata. More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + description: >- + Specifies the pod that will be created for this + TaskSpec when executing a Job + minAvailable: + type: integer + format: int32 + description: >- + The minimal available pods to run for this Task + Defaults to the task replicas + topologyPolicy: + type: string + description: Specifies the topology policy of task + description: TaskSpec specifies the task specification of Job. + description: Tasks specifies the task specification of Job + plugins: + type: object + description: >- + Specifies the plugin of job Key is plugin name, value is the + arguments of the plugin + additionalProperties: + type: array + items: + type: string + volumes: + type: array + items: + type: object + required: + - mountPath + properties: + mountPath: + type: string + description: >- + Path within the container at which the volume should + be mounted. Must not contain ':'. + volumeClaim: + type: object + properties: + selector: + type: object + properties: + matchLabels: + type: object + description: >- + matchLabels is a map of {key,value} pairs. A + single {key,value} in the matchLabels map is + equivalent to an element of matchExpressions, + whose key field is "key", the operator is + "In", and the values array contains only + "value". The requirements are ANDed. + additionalProperties: + type: string + matchExpressions: + type: array + items: + type: object + required: + - key + - operator + properties: + key: + type: string + description: >- + key is the label key that the selector + applies to. + values: + type: array + items: + type: string + description: >- + values is an array of string values. If + the operator is In or NotIn, the values + array must be non-empty. If the operator + is Exists or DoesNotExist, the values + array must be empty. This array is + replaced during a strategic merge patch. + operator: + type: string + description: >- + operator represents a key's relationship + to a set of values. Valid operators are + In, NotIn, Exists and DoesNotExist. + description: >- + A label selector requirement is a selector + that contains values, a key, and an operator + that relates the key and values. + description: >- + matchExpressions is a list of label selector + requirements. The requirements are ANDed. + description: >- + A label query over volumes to consider for + binding. + resources: + type: object + properties: + limits: + type: object + description: >- + Limits describes the maximum amount of compute + resources allowed. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + requests: + type: object + description: >- + Requests describes the minimum amount of + compute resources required. If Requests is + omitted for a container, it defaults to Limits + if that is explicitly specified, otherwise to + an implementation-defined value. More info: + https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: >- + Resources represents the minimum resources the + volume should have. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + dataSource: + type: object + required: + - kind + - name + properties: + kind: + type: string + description: Kind is the type of resource being referenced + name: + type: string + description: Name is the name of resource being referenced + apiGroup: + type: string + description: >- + APIGroup is the group for the resource being + referenced. If APIGroup is not specified, the + specified Kind must be in the core API group. + For any other third-party types, APIGroup is + required. + description: >- + This field can be used to specify either: * An + existing VolumeSnapshot object + (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * + An existing PVC (PersistentVolumeClaim) * An + existing custom resource/object that implements + data population (Alpha) In order to use + VolumeSnapshot object types, the appropriate + feature gate must be enabled + (VolumeSnapshotDataSource or AnyVolumeDataSource) + If the provisioner or an external controller can + support the specified data source, it will create + a new volume based on the contents of the + specified data source. If the specified data + source is not supported, the volume will not be + created and the failure will be reported as an + event. In the future, we plan to support more data + source types and the behavior of the provisioner + may change. + volumeMode: + type: string + description: >- + volumeMode defines what type of volume is required + by the claim. Value of Filesystem is implied when + not included in claim spec. + volumeName: + type: string + description: >- + VolumeName is the binding reference to the + PersistentVolume backing this claim. + accessModes: + type: array + items: + type: string + description: >- + AccessModes contains the desired access modes the + volume should have. More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + storageClassName: + type: string + description: >- + Name of the StorageClass required by the claim. + More info: + https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + description: VolumeClaim defines the PVC used by the VolumeMount. + volumeClaimName: + type: string + description: defined the PVC name + description: 'VolumeSpec defines the specification of Volume, e.g. PVC.' + description: The volumes mount on Job + maxRetry: + type: integer + format: int32 + description: >- + Specifies the maximum number of retries before marking this + Job failed. Defaults to 3. + policies: + type: array + items: + type: object + properties: + event: + type: string + description: >- + The Event recorded by scheduler; the controller takes + actions according to this Event. + action: + type: string + description: >- + The action that will be taken to the PodGroup + according to Event. One of "Restart", "None". Default + to None. + events: + type: array + items: + type: string + description: 'Event represent the phase of Job, e.g. pod-failed.' + description: >- + The Events recorded by scheduler; the controller takes + actions according to this Events. + timeout: + type: string + description: >- + Timeout is the grace period for controller to take + actions. Default to nil (take action immediately). + exitCode: + type: integer + format: int32 + description: >- + The exit code of the pod container, controller will + take action according to this code. Note: only one of + `Event` or `ExitCode` can be specified. + description: >- + LifecyclePolicy specifies the lifecycle and error handling + of task and job. + description: Specifies the default lifecycle of tasks + minSuccess: + type: integer + format: int32 + minimum: 1 + description: The minimal success pods to run for this Job + minAvailable: + type: integer + format: int32 + description: >- + The minimal available pods to run for this Job Defaults to + the summary of tasks' replicas + schedulerName: + type: string + description: >- + SchedulerName is the default value of + `tasks.template.spec.schedulerName`. + runningEstimate: + type: string + description: >- + Running Estimate is a user running duration estimate for the + job Default to nil + priorityClassName: + type: string + description: 'If specified, indicates the job''s priority.' + ttlSecondsAfterFinished: + type: integer + format: int32 + description: >- + ttlSecondsAfterFinished limits the lifetime of a Job that + has finished execution (either Completed or Failed). If this + field is set, ttlSecondsAfterFinished after the Job + finishes, it is eligible to be automatically deleted. If + this field is unset, the Job won't be automatically deleted. + If this field is set to zero, the Job becomes eligible to be + deleted immediately after it finishes. + description: >- + Specification of the desired behavior of the volcano job, + including the minAvailable + status: + type: object + properties: + state: + type: object + properties: + phase: + type: string + description: The phase of Job. + reason: + type: string + description: >- + Unique, one-word, CamelCase reason for the phase's last + transition. + message: + type: string + description: >- + Human-readable message indicating details about last + transition. + lastTransitionTime: + type: string + format: date-time + description: >- + Last time the condition transit from one phase to + another. + description: Current state of Job. + failed: + type: integer + format: int32 + description: The number of pods which reached phase Failed. + pending: + type: integer + format: int32 + description: The number of pending pods. + running: + type: integer + format: int32 + description: The number of running pods. + unknown: + type: integer + format: int32 + description: The number of pods which reached phase Unknown. + version: + type: integer + format: int32 + description: Current version of job + succeeded: + type: integer + format: int32 + description: The number of pods which reached phase Succeeded. + retryCount: + type: integer + format: int32 + description: The number of Job retries. + terminating: + type: integer + format: int32 + description: The number of pods which reached phase Terminating. + minAvailable: + type: integer + format: int32 + description: The minimal available pods to run for this Job + runningDuration: + type: string + description: >- + The job running duration is the length of time from job + running to complete. + taskStatusCount: + type: object + description: The status of pods for each task + additionalProperties: + type: object + properties: + phase: + type: object + description: The phase of Task. + additionalProperties: + type: integer + format: int32 + description: >- + TaskState contains details for the current state of the + task. + controlledResources: + type: object + description: >- + The resources that controlled by this job, e.g. Service, + ConfigMap + additionalProperties: + type: string + description: Current status of the volcano Job + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Job defines the volcano job. + served: true + storage: true + subresources: + status: {} + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: podgroups.scheduling.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: scheduling.volcano.sh + names: + kind: PodGroup + plural: podgroups + listKind: PodGroupList + singular: podgroup + shortNames: + - pg + - podgroup-v1beta1 + scope: Namespaced + versions: + - name: v1beta1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + queue: + type: string + description: >- + Queue defines the queue to allocate resource for PodGroup; + if queue does not exist, the PodGroup will not be scheduled. + Defaults to `default` Queue with the lowest weight. + minMember: + type: integer + format: int32 + description: >- + MinMember defines the minimal number of members/tasks to run + the pod group; if there's not enough resources to start all + tasks, the scheduler will not start anyone. + minResources: + type: object + description: >- + MinResources defines the minimal resource of members/tasks + to run the pod group; if there's not enough resources to + start all tasks, the scheduler will not start anyone. + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + minTaskMember: + type: object + description: >- + MinTaskMember defines the minimal number of pods to run each + task in the pod group; if there's not enough resources to + start each task, the scheduler will not start anyone. + additionalProperties: + type: integer + format: int32 + priorityClassName: + type: string + description: >- + If specified, indicates the PodGroup's priority. + "system-node-critical" and "system-cluster-critical" are two + special keywords which indicate the highest priorities with + the former being the highest priority. Any other name must + be defined by creating a PriorityClass object with that + name. If not specified, the PodGroup priority will be + default or zero if there is no default. + description: >- + Specification of the desired behavior of the pod group. More + info: + https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + status: + type: object + properties: + phase: + type: string + description: Current phase of PodGroup. + failed: + type: integer + format: int32 + description: The number of pods which reached phase Failed. + running: + type: integer + format: int32 + description: The number of actively running pods. + succeeded: + type: integer + format: int32 + description: The number of pods which reached phase Succeeded. + conditions: + type: array + items: + type: object + properties: + type: + type: string + description: Type is the type of the condition + reason: + type: string + description: >- + Unique, one-word, CamelCase reason for the phase's + last transition. + status: + type: string + description: Status is the status of the condition. + message: + type: string + description: >- + Human-readable message indicating details about last + transition. + transitionID: + type: string + description: The ID of condition transition. + lastTransitionTime: + type: string + format: date-time + description: >- + Last time the phase transitioned from another to + current phase. + description: >- + PodGroupCondition contains details for the current state + of this pod group. + description: The conditions of PodGroup. + description: >- + Status represents the current information about a pod group. + This data may not be up to date. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: PodGroup is a collection of Pod; used for batch workload. + served: true + storage: true + conversion: + strategy: None +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: queues.scheduling.volcano.sh + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 +spec: + group: scheduling.volcano.sh + names: + kind: Queue + plural: queues + listKind: QueueList + singular: queue + shortNames: + - q + - queue-v1beta1 + scope: Cluster + versions: + - name: v1beta1 + schema: + openAPIV3Schema: + type: object + properties: + kind: + type: string + description: >- + Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the + client submits requests to. Cannot be updated. In CamelCase. + More info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + spec: + type: object + properties: + weight: + type: integer + format: int32 + capability: + type: object + description: 'ResourceList is a set of (resource name, quantity) pairs.' + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: >- + ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + reclaimable: + type: boolean + description: >- + Reclaimable indicate whether the queue can be reclaimed by + other queue + description: >- + Specification of the desired behavior of the queue. More info: + https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status + status: + type: object + properties: + state: + type: string + description: State is state of queue + inqueue: + type: integer + format: int32 + description: The number of `Inqueue` PodGroup in this queue. + pending: + type: integer + format: int32 + description: The number of 'Pending' PodGroup in this queue. + running: + type: integer + format: int32 + description: The number of 'Running' PodGroup in this queue. + unknown: + type: integer + format: int32 + description: The number of 'Unknown' PodGroup in this queue. + description: The status of queue. + metadata: + type: object + apiVersion: + type: string + description: >- + APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the + latest internal value, and may reject unrecognized values. More + info: + https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + description: Queue is a queue of PodGroup. + served: true + storage: true + subresources: + status: {} + conversion: + strategy: None +--- \ No newline at end of file diff --git a/installer/deploys/volcano/pf-volcano-deploy.yaml b/installer/deploys/volcano/pf-volcano-deploy.yaml index 3001f0ef4..7b72ef40b 100644 --- a/installer/deploys/volcano/pf-volcano-deploy.yaml +++ b/installer/deploys/volcano/pf-volcano-deploy.yaml @@ -1,94 +1,729 @@ --- +# Source: pfchart/charts/volcano-admission/templates/ServiceAccount-volcano-admission.yaml apiVersion: v1 -kind: Namespace +kind: ServiceAccount metadata: - name: volcano-system + creationTimestamp: null + name: volcano-admission + namespace: 'paddleflow' --- +# Source: pfchart/charts/volcano-controller/templates/ServiceAccount-volcano-controllers.yaml apiVersion: v1 -kind: Namespace +kind: ServiceAccount metadata: - name: volcano-monitoring + creationTimestamp: null + name: volcano-controllers + namespace: 'paddleflow' --- -# Source: volcano/templates/admission.yaml +# Source: pfchart/charts/volcano-scheduler/templates/ServiceAccount-volcano-scheduler.yaml apiVersion: v1 kind: ServiceAccount metadata: + creationTimestamp: null + name: volcano-scheduler + namespace: 'paddleflow' +--- +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-secret.yaml +kind: Secret +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission-init' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission-init' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission-init' +data: {} +--- +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-secret.yaml +kind: Secret +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission' +data: {} +--- +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-secret.yaml +kind: Secret +apiVersion: v1 +metadata: + labels: + app: 'volcano-controller' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-controller' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-controller' +data: {} +--- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-secret.yaml +kind: Secret +apiVersion: v1 +metadata: + labels: + app: 'volcano-scheduler' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-scheduler' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-scheduler' +data: {} +--- +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission-init' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission-init' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission-init' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-controller' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-controller' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-controller' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-scheduler' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-scheduler' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-scheduler' +data: + telegraf.conf: |4 + [global_tags] + volcano-scheduler-pf.conf: |4 + actions: "enqueue, allocate, preemptpf, backfill" + tiers: + - plugins: + - name: priority + enableJobOrder: true + - name: gang + - name: conformance + - plugins: + - name: kmpredicates + arguments: + kmpredicate.GPUTopoEnable: true + kmpredicate.AvailableGPUTypes: "baidu.com/gpu_p40_8,baidu.com/v100_cgpu,baidu.com/p40_cgpu" + - name: proportionpf + enableJobEnqueued: true + - name: nodeorder + - name: binpack + arguments: + binpack.weight: 10 + binpack.cpu: 3 + binpack.memory: 1 + binpack.resources: baidu.com/p40_cgpu, baidu.com/p40_cgpu_core, baidu.com/p40_cgpu_memory, baidu.com/v100_cgpu, baidu.com/v100_cgpu_core, baidu.com/v100_cgpu_memory + binpack.resources.baidu.com/v100_cgpu_memory: 6 + binpack.resources.baidu.com/p40_cgpu: 0 + binpack.resources.baidu.com/p40_cgpu_core: 0 + binpack.resources.baidu.com/p40_cgpu_memory: 6 +binaryData: {} +--- +# Source: pfchart/charts/volcano-admission/templates/ClusterRole-volcano-admission.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null name: volcano-admission - namespace: volcano-system +rules: +- apiGroups: + - "" + resources: + - configmaps + - nodes + - namespaces + verbs: + - get + - list + - watch +- apiGroups: + - admissionregistration.k8s.io + resources: + - mutatingwebhookconfigurations + - validatingwebhookconfigurations + verbs: + - get + - list + - watch + - create + - update +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests + verbs: + - get + - list + - create + - delete +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests/approval + verbs: + - create + - update +- apiGroups: + - "" + resources: + - secrets + verbs: + - create + - get + - patch +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - queues + verbs: + - get + - list +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - elasticresourcequotas + - elasticresourcequotas/status + verbs: + - get + - list + - update +- apiGroups: + - "" + resources: + - services + verbs: + - get +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + verbs: + - get + - list + - watch --- -# Source: volcano/templates/admission.yaml +# Source: pfchart/charts/volcano-controller/templates/ClusterRole-volcano-controllers.yaml +apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole +metadata: + creationTimestamp: null + name: volcano-controllers +rules: +- apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - create + - get + - list + - watch + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs + verbs: + - get + - list + - watch + - update + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs/status + - jobs/finalizers + verbs: + - update + - patch +- apiGroups: + - bus.volcano.sh + resources: + - commands + verbs: + - get + - list + - watch + - delete +- apiGroups: + - "" + resources: + - events + verbs: + - create + - list + - watch + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - services + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - "" + resources: + - secrets + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + - queues + - queues/status + - elasticresourcequotas + - elasticresourcequotas/status + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - scheduling.k8s.io + resources: + - priorityclasses + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - networking.k8s.io + resources: + - networkpolicies + verbs: + - get + - create + - delete +--- +# Source: pfchart/charts/volcano-scheduler/templates/ClusterRole-volcano-scheduler.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole metadata: - name: volcano-admission + creationTimestamp: null + name: volcano-scheduler rules: - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "list", "watch"] - - apiGroups: ["admissionregistration.k8s.io"] - resources: ["mutatingwebhookconfigurations", "validatingwebhookconfigurations"] - verbs: ["get", "list", "watch", "create", "update"] - - apiGroups: ["certificates.k8s.io"] - resources: ["certificatesigningrequests"] - verbs: ["get", "list", "create", "delete"] - - apiGroups: ["certificates.k8s.io"] - resources: ["certificatesigningrequests/approval"] - verbs: ["create", "update"] - - apiGroups: [""] - resources: ["secrets"] - verbs: ["create", "get", "patch"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["queues"] - verbs: ["get", "list"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["elasticresourcequotas"] - verbs: ["get", "list", "update"] - - apiGroups: [""] - resources: ["services"] - verbs: ["get"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups"] - verbs: ["get", "list", "watch"] +- apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - create + - get + - list + - watch + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs + verbs: + - get + - list + - watch + - update + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs/status + verbs: + - update + - patch +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - "" + resources: + - events + verbs: + - create + - list + - watch + - update + - patch +- apiGroups: + - "" + resources: + - pods + - pods/status + verbs: + - create + - get + - list + - watch + - update + - patch + - bind + - updateStatus + - delete +- apiGroups: + - "" + resources: + - pods/binding + verbs: + - create +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - list + - watch + - get +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - list + - watch + - get +- apiGroups: + - "" + resources: + - namespaces + verbs: + - list + - watch +- apiGroups: + - "" + resources: + - resourcequotas + verbs: + - list + - watch + - create + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - list + - watch +- apiGroups: + - policy + resources: + - poddisruptionbudgets + verbs: + - list + - watch +- apiGroups: + - scheduling.k8s.io + resources: + - priorityclasses + verbs: + - get + - list + - watch +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - queues + - elasticresourcequotas + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + verbs: + - list + - watch + - update --- -# Source: volcano/templates/admission.yaml -kind: ClusterRoleBinding +# Source: pfchart/charts/volcano-admission/templates/ClusterRoleBinding-volcano-admission-role.yaml apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding metadata: + creationTimestamp: null name: volcano-admission-role -subjects: - - kind: ServiceAccount - name: volcano-admission - namespace: volcano-system roleRef: + apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: volcano-admission +subjects: +- kind: ServiceAccount + name: volcano-admission + namespace: paddleflow +--- +# Source: pfchart/charts/volcano-controller/templates/ClusterRoleBinding-volcano-controllers-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-controllers-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-controllers +subjects: +- kind: ServiceAccount + name: volcano-controllers + namespace: paddleflow +--- +# Source: pfchart/charts/volcano-scheduler/templates/ClusterRoleBinding-volcano-scheduler-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-scheduler-role +roleRef: apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-scheduler +subjects: +- kind: ServiceAccount + name: volcano-scheduler + namespace: paddleflow --- -# Source: volcano/templates/admission.yaml +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-service.yaml apiVersion: v1 kind: Service metadata: + name: volcano-admission-service labels: app: volcano-admission - name: volcano-admission-service - namespace: volcano-system + chart: "volcano-admission-0.0.21-rrm1l0" + release: "volcano" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' + + annotations: spec: + type: NodePort + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 ports: - - port: 443 - protocol: TCP - targetPort: 8443 + - name: + port: 443 + nodePort: 18443 + protocol: TCP + targetPort: 8443 selector: app: volcano-admission +--- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: volcano-scheduler-service + labels: + app: volcano-scheduler + chart: "volcano-scheduler-0.0.23-rrm1mf" + release: "volcano" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + + annotations: +spec: + type: ClusterIP sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: port-0 + port: 8080 + protocol: TCP + targetPort: 8080 + selector: + app: volcano-scheduler +--- +kind: ElasticResourceQuota +spec: + max: + cpu: '0' + memory: '0' + min: + cpu: '0' + memory: '0' + namespace: default +metadata: + name: root + labels: + paddleflow.baidu.com/resource-isolation-type: logical +apiVersion: scheduling.volcano.sh/v1beta1 --- -# Source: volcano/templates/admission.yaml +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: + #文件里的所有volcano-admission、volcano_admission都替换成实际名称 + name: volcano-admission labels: app: volcano-admission - name: volcano-admission - namespace: volcano-system + chart: "volcano-admission-0.0.21-rrm1l0" + release: "volcano" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' + app: volcano-admission + annotations: + app: volcano-admission + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -98,7346 +733,86 @@ spec: metadata: labels: app: volcano-admission + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' + app: volcano-admission + annotations: + app: volcano-admission spec: - serviceAccount: volcano-admission - containers: - - args: - - --tls-cert-file=/admission.local.config/certificates/tls.crt - - --tls-private-key-file=/admission.local.config/certificates/tls.key - - --ca-cert-file=/admission.local.config/certificates/ca.crt - - --webhook-namespace=volcano-system - - --webhook-service-name=volcano-admission-service - - --logtostderr - - --port=8443 - - -v=4 - - 2>&1 - image: paddleflow/vc-webhook-manager:pf-1.4-vc-1.3 - imagePullPolicy: IfNotPresent - name: admission - volumeMounts: - - mountPath: /admission.local.config/certificates - name: admission-certs - readOnly: true - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - volumes: - - name: admission-certs - secret: - defaultMode: 420 - secretName: volcano-admission-secret ---- -# Source: volcano/templates/admission.yaml -apiVersion: batch/v1 -kind: Job -metadata: - name: volcano-admission-init - namespace: volcano-system - labels: - app: volcano-admission-init -spec: - backoffLimit: 3 - template: - spec: + + dnsPolicy: ClusterFirst + restartPolicy: Always serviceAccountName: volcano-admission - restartPolicy: Never containers: - - name: main - image: paddleflow/vc-webhook-manager:pf-1.4-vc-1.3 - imagePullPolicy: IfNotPresent - command: ["./gen-admission-secret.sh", "--service", "volcano-admission-service", "--namespace", - "volcano-system", "--secret", "volcano-admission-secret"] ---- -# Source: volcano/templates/batch_v1alpha1_job.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: jobs.batch.volcano.sh -spec: - group: batch.volcano.sh - names: - kind: Job - listKind: JobList - plural: jobs - shortNames: - - vcjob - - vj - singular: job - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: Job defines the volcano job. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Specification of the desired behavior of the volcano job, - including the minAvailable - properties: - maxRetry: - description: Specifies the maximum number of retries before marking - this Job failed. Defaults to 3. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Job Defaults - to the summary of tasks' replicas - format: int32 - type: integer - minSuccess: - description: The minimal success pods to run for this Job - format: int32 - minimum: 1 - type: integer - plugins: - additionalProperties: - items: - type: string - type: array - description: Specifies the plugin of job Key is plugin name, value - is the arguments of the plugin - type: object - policies: - description: Specifies the default lifecycle of tasks - items: - description: LifecyclePolicy specifies the lifecycle and error handling - of task and job. - properties: - action: - description: The action that will be taken to the PodGroup according - to Event. One of "Restart", "None". Default to None. - type: string - event: - description: The Event recorded by scheduler; the controller - takes actions according to this Event. - type: string - events: - description: The Events recorded by scheduler; the controller - takes actions according to this Events. - items: - description: Event represent the phase of Job, e.g. pod-failed. - type: string - type: array - exitCode: - description: 'The exit code of the pod container, controller - will take action according to this code. Note: only one of - `Event` or `ExitCode` can be specified.' - format: int32 - type: integer - timeout: - description: Timeout is the grace period for controller to take - actions. Default to nil (take action immediately). - type: string - type: object - type: array - priorityClassName: - description: If specified, indicates the job's priority. - type: string - queue: - description: Specifies the queue that will be used in the scheduler, - "default" queue is used this leaves empty. - type: string - runningEstimate: - description: Running Estimate is a user running duration estimate - for the job Default to nil - type: string - schedulerName: - description: SchedulerName is the default value of `tasks.template.spec.schedulerName`. - type: string - tasks: - description: Tasks specifies the task specification of Job - items: - description: TaskSpec specifies the task specification of Job. - properties: - maxRetry: - description: Specifies the maximum number of retries before - marking this Task failed. Defaults to 3. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Task - Defaults to the task replicas - format: int32 - type: integer - name: - description: Name specifies the name of tasks - type: string - policies: - description: Specifies the lifecycle of task - items: - description: LifecyclePolicy specifies the lifecycle and error - handling of task and job. - properties: - action: - description: The action that will be taken to the PodGroup - according to Event. One of "Restart", "None". Default - to None. - type: string - event: - description: The Event recorded by scheduler; the controller - takes actions according to this Event. - type: string - events: - description: The Events recorded by scheduler; the controller - takes actions according to this Events. - items: - description: Event represent the phase of Job, e.g. - pod-failed. - type: string - type: array - exitCode: - description: 'The exit code of the pod container, controller - will take action according to this code. Note: only - one of `Event` or `ExitCode` can be specified.' - format: int32 - type: integer - timeout: - description: Timeout is the grace period for controller - to take actions. Default to nil (take action immediately). - type: string - type: object - type: array - replicas: - description: Replicas specifies the replicas of this TaskSpec - in Job - format: int32 - type: integer - template: - description: Specifies the pod that will be created for this - TaskSpec when executing a Job - properties: - metadata: - description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' - type: object - spec: - description: 'Specification of the desired behavior of the - pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - activeDeadlineSeconds: - description: Optional duration in seconds the pod may - be active on the node relative to StartTime before - the system will actively try to mark it failed and - kill associated containers. Value must be a positive - integer. - format: int64 - type: integer - affinity: - description: If specified, the pod's scheduling constraints - properties: - nodeAffinity: - description: Describes node affinity scheduling - rules for the pod. - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the affinity expressions - specified by this field, but it may choose - a node that violates one or more of the expressions. - The node that is most preferred is the one - with the greatest sum of weights, i.e. for - each node that meets all of the scheduling - requirements (resource request, requiredDuringScheduling - affinity expressions, etc.), compute a sum - by iterating through the elements of this - field and adding "weight" to the sum if the - node matches the corresponding matchExpressions; - the node(s) with the highest sum are the most - preferred. - items: - description: An empty preferred scheduling - term matches all objects with implicit weight - 0 (i.e. it's a no-op). A null preferred - scheduling term matches no objects (i.e. - is also a no-op). - properties: - preference: - description: A node selector term, associated - with the corresponding weight. - properties: - matchExpressions: - description: A list of node selector - requirements by node's labels. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchFields: - description: A list of node selector - requirements by node's fields. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - weight: - description: Weight associated with matching - the corresponding nodeSelectorTerm, - in the range 1-100. - format: int32 - type: integer - required: - - preference - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified - by this field are not met at scheduling time, - the pod will not be scheduled onto the node. - If the affinity requirements specified by - this field cease to be met at some point during - pod execution (e.g. due to an update), the - system may or may not try to eventually evict - the pod from its node. - properties: - nodeSelectorTerms: - description: Required. A list of node selector - terms. The terms are ORed. - items: - description: A null or empty node selector - term matches no objects. The requirements - of them are ANDed. The TopologySelectorTerm - type implements a subset of the NodeSelectorTerm. - properties: - matchExpressions: - description: A list of node selector - requirements by node's labels. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchFields: - description: A list of node selector - requirements by node's fields. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - type: array - required: - - nodeSelectorTerms - type: object - type: object - podAffinity: - description: Describes pod affinity scheduling rules - (e.g. co-locate this pod in the same node, zone, - etc. as some other pod(s)). - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the affinity expressions - specified by this field, but it may choose - a node that violates one or more of the expressions. - The node that is most preferred is the one - with the greatest sum of weights, i.e. for - each node that meets all of the scheduling - requirements (resource request, requiredDuringScheduling - affinity expressions, etc.), compute a sum - by iterating through the elements of this - field and adding "weight" to the sum if the - node has pods which matches the corresponding - podAffinityTerm; the node(s) with the highest - sum are the most preferred. - items: - description: The weights of all of the matched - WeightedPodAffinityTerm fields are added - per-node to find the most preferred node(s) - properties: - podAffinityTerm: - description: Required. A pod affinity - term, associated with the corresponding - weight. - properties: - labelSelector: - description: A label query over a - set of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies - which namespaces the labelSelector - applies to (matches against); null - or empty list means "this pod's - namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where - co-located is defined as running - on a node whose value of the label - with key topologyKey matches that - of any node on which any of the - selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching - the corresponding podAffinityTerm, in - the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified - by this field are not met at scheduling time, - the pod will not be scheduled onto the node. - If the affinity requirements specified by - this field cease to be met at some point during - pod execution (e.g. due to a pod label update), - the system may or may not try to eventually - evict the pod from its node. When there are - multiple elements, the lists of nodes corresponding - to each podAffinityTerm are intersected, i.e. - all terms must be satisfied. - items: - description: Defines a set of pods (namely - those matching the labelSelector relative - to the given namespace(s)) that this pod - should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is - defined as running on a node whose value - of the label with key matches - that of any node on which a pod of the set - of pods is running - properties: - labelSelector: - description: A label query over a set - of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions is a - list of label selector requirements. - The requirements are ANDed. - items: - description: A label selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: key is the label - key that the selector applies - to. - type: string - operator: - description: operator represents - a key's relationship to a - set of values. Valid operators - are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array - of string values. If the operator - is In or NotIn, the values - array must be non-empty. If - the operator is Exists or - DoesNotExist, the values array - must be empty. This array - is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map - of {key,value} pairs. A single {key,value} - in the matchLabels map is equivalent - to an element of matchExpressions, - whose key field is "key", the operator - is "In", and the values array contains - only "value". The requirements are - ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which - namespaces the labelSelector applies - to (matches against); null or empty - list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where co-located - is defined as running on a node whose - value of the label with key topologyKey - matches that of any node on which any - of the selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - podAntiAffinity: - description: Describes pod anti-affinity scheduling - rules (e.g. avoid putting this pod in the same - node, zone, etc. as some other pod(s)). - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the anti-affinity - expressions specified by this field, but it - may choose a node that violates one or more - of the expressions. The node that is most - preferred is the one with the greatest sum - of weights, i.e. for each node that meets - all of the scheduling requirements (resource - request, requiredDuringScheduling anti-affinity - expressions, etc.), compute a sum by iterating - through the elements of this field and adding - "weight" to the sum if the node has pods which - matches the corresponding podAffinityTerm; - the node(s) with the highest sum are the most - preferred. - items: - description: The weights of all of the matched - WeightedPodAffinityTerm fields are added - per-node to find the most preferred node(s) - properties: - podAffinityTerm: - description: Required. A pod affinity - term, associated with the corresponding - weight. - properties: - labelSelector: - description: A label query over a - set of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies - which namespaces the labelSelector - applies to (matches against); null - or empty list means "this pod's - namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where - co-located is defined as running - on a node whose value of the label - with key topologyKey matches that - of any node on which any of the - selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching - the corresponding podAffinityTerm, in - the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements - specified by this field are not met at scheduling - time, the pod will not be scheduled onto the - node. If the anti-affinity requirements specified - by this field cease to be met at some point - during pod execution (e.g. due to a pod label - update), the system may or may not try to - eventually evict the pod from its node. When - there are multiple elements, the lists of - nodes corresponding to each podAffinityTerm - are intersected, i.e. all terms must be satisfied. - items: - description: Defines a set of pods (namely - those matching the labelSelector relative - to the given namespace(s)) that this pod - should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is - defined as running on a node whose value - of the label with key matches - that of any node on which a pod of the set - of pods is running - properties: - labelSelector: - description: A label query over a set - of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions is a - list of label selector requirements. - The requirements are ANDed. - items: - description: A label selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: key is the label - key that the selector applies - to. - type: string - operator: - description: operator represents - a key's relationship to a - set of values. Valid operators - are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array - of string values. If the operator - is In or NotIn, the values - array must be non-empty. If - the operator is Exists or - DoesNotExist, the values array - must be empty. This array - is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map - of {key,value} pairs. A single {key,value} - in the matchLabels map is equivalent - to an element of matchExpressions, - whose key field is "key", the operator - is "In", and the values array contains - only "value". The requirements are - ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which - namespaces the labelSelector applies - to (matches against); null or empty - list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where co-located - is defined as running on a node whose - value of the label with key topologyKey - matches that of any node on which any - of the selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - type: object - automountServiceAccountToken: - description: AutomountServiceAccountToken indicates - whether a service account token should be automatically - mounted. - type: boolean - containers: - description: List of containers belonging to the pod. - Containers cannot currently be added or removed. There - must be at least one container in a Pod. Cannot be - updated. - items: - description: A single application container that you - want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level - config management to default or override container - images in workload controllers like Deployments - and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system - should take in response to container lifecycle - events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. - Container will be restarted if the probe fails. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as - a DNS_LABEL. Each container in a pod must have - a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the - container. Exposing a port here gives the system - additional information about the network connections - a container uses, but is primarily informational. - Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which - is listening on the default "0.0.0.0" address - inside a container will be accessible from the - network. Cannot be updated. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service - readiness. Container will be removed from service - endpoints if the probe fails. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this - container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should - run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the - Pod has successfully initialized. If specified, - no other probes are executed until this completes - successfully. If this probe fails, the Pod will - be restarted, just as if the livenessProbe failed. - This can be used to provide different probe - parameters at the beginning of a Pod''s lifecycle, - when it might take a long time to load data - or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature - enabled by the StartupProbe feature flag. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - dnsConfig: - description: Specifies the DNS parameters of a pod. - Parameters specified here will be merged to the generated - DNS configuration based on DNSPolicy. - properties: - nameservers: - description: A list of DNS name server IP addresses. - This will be appended to the base nameservers - generated from DNSPolicy. Duplicated nameservers - will be removed. - items: - type: string - type: array - options: - description: A list of DNS resolver options. This - will be merged with the base options generated - from DNSPolicy. Duplicated entries will be removed. - Resolution options given in Options will override - those that appear in the base DNSPolicy. - items: - description: PodDNSConfigOption defines DNS resolver - options of a pod. - properties: - name: - description: Required. - type: string - value: - type: string - type: object - type: array - searches: - description: A list of DNS search domains for host-name - lookup. This will be appended to the base search - paths generated from DNSPolicy. Duplicated search - paths will be removed. - items: - type: string - type: array - type: object - dnsPolicy: - description: Set DNS policy for the pod. Defaults to - "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', - 'ClusterFirst', 'Default' or 'None'. DNS parameters - given in DNSConfig will be merged with the policy - selected with DNSPolicy. To have DNS options set along - with hostNetwork, you have to specify DNS policy explicitly - to 'ClusterFirstWithHostNet'. - type: string - enableServiceLinks: - description: 'EnableServiceLinks indicates whether information - about services should be injected into pod''s environment - variables, matching the syntax of Docker links. Optional: - Defaults to true.' - type: boolean - ephemeralContainers: - description: List of ephemeral containers run in this - pod. Ephemeral containers may be run in an existing - pod to perform user-initiated actions such as debugging. - This list cannot be specified when creating a pod, - and it cannot be modified by updating the pod spec. - In order to add an ephemeral container to an existing - pod, use the pod's ephemeralcontainers subresource. - This field is alpha-level and is only honored by servers - that enable the EphemeralContainers feature. - items: - description: An EphemeralContainer is a container - that may be added temporarily to an existing pod - for user-initiated activities such as debugging. - Ephemeral containers have no resource or scheduling - guarantees, and they will not be restarted when - they exit or when a pod is removed or restarted. - If an ephemeral container causes a pod to exceed - its resource allocation, the pod may be evicted. - Ephemeral containers may not be added by directly - updating the pod spec. They must be added via the - pod's ephemeralcontainers subresource, and they - will appear in the pod spec once added. This is - an alpha feature enabled by the EphemeralContainers - feature flag. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Lifecycle is not allowed for ephemeral - containers. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the ephemeral container specified - as a DNS_LABEL. This name must be unique among - all containers, init containers and ephemeral - containers. - type: string - ports: - description: Ports are not allowed for ephemeral - containers. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - readinessProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: Resources are not allowed for ephemeral - containers. Ephemeral containers use spare resources - already allocated to the pod. - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: SecurityContext is not allowed for - ephemeral containers. - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - targetContainerName: - description: If set, the name of the container - from PodSpec that this ephemeral container targets. - The ephemeral container will be run in the namespaces - (IPC, PID, etc) of this container. If not set - then the ephemeral container is run in whatever - namespaces are shared for the pod. Note that - the container runtime must support this feature. - type: string - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - hostAliases: - description: HostAliases is an optional list of hosts - and IPs that will be injected into the pod's hosts - file if specified. This is only valid for non-hostNetwork - pods. - items: - description: HostAlias holds the mapping between IP - and hostnames that will be injected as an entry - in the pod's hosts file. - properties: - hostnames: - description: Hostnames for the above IP address. - items: - type: string - type: array - ip: - description: IP address of the host file entry. - type: string - type: object - type: array - hostIPC: - description: 'Use the host''s ipc namespace. Optional: - Default to false.' - type: boolean - hostNetwork: - description: Host networking requested for this pod. - Use the host's network namespace. If this option is - set, the ports that will be used must be specified. - Default to false. - type: boolean - hostPID: - description: 'Use the host''s pid namespace. Optional: - Default to false.' - type: boolean - hostname: - description: Specifies the hostname of the Pod If not - specified, the pod's hostname will be set to a system-defined - value. - type: string - imagePullSecrets: - description: 'ImagePullSecrets is an optional list of - references to secrets in the same namespace to use - for pulling any of the images used by this PodSpec. - If specified, these secrets will be passed to individual - puller implementations for them to use. For example, - in the case of docker, only DockerConfig type secrets - are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' - items: - description: LocalObjectReference contains enough - information to let you locate the referenced object - inside the same namespace. - properties: - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - type: object - type: array - initContainers: - description: 'List of initialization containers belonging - to the pod. Init containers are executed in order - prior to containers being started. If any init container - fails, the pod is considered to have failed and is - handled according to its restartPolicy. The name for - an init container or normal container must be unique - among all containers. Init containers may not have - Lifecycle actions, Readiness probes, Liveness probes, - or Startup probes. The resourceRequirements of an - init container are taken into account during scheduling - by finding the highest request/limit for each resource - type, and then using the max of of that value or the - sum of the normal containers. Limits are applied to - init containers in a similar fashion. Init containers - cannot currently be added or removed. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' - items: - description: A single application container that you - want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level - config management to default or override container - images in workload controllers like Deployments - and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system - should take in response to container lifecycle - events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. - Container will be restarted if the probe fails. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as - a DNS_LABEL. Each container in a pod must have - a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the - container. Exposing a port here gives the system - additional information about the network connections - a container uses, but is primarily informational. - Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which - is listening on the default "0.0.0.0" address - inside a container will be accessible from the - network. Cannot be updated. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service - readiness. Container will be removed from service - endpoints if the probe fails. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this - container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should - run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the - Pod has successfully initialized. If specified, - no other probes are executed until this completes - successfully. If this probe fails, the Pod will - be restarted, just as if the livenessProbe failed. - This can be used to provide different probe - parameters at the beginning of a Pod''s lifecycle, - when it might take a long time to load data - or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature - enabled by the StartupProbe feature flag. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - nodeName: - description: NodeName is a request to schedule this - pod onto a specific node. If it is non-empty, the - scheduler simply schedules this pod onto that node, - assuming that it fits resource requirements. - type: string - nodeSelector: - additionalProperties: - type: string - description: 'NodeSelector is a selector which must - be true for the pod to fit on a node. Selector which - must match a node''s labels for the pod to be scheduled - on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' - type: object - overhead: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Overhead represents the resource overhead - associated with running a pod for a given RuntimeClass. - This field will be autopopulated at admission time - by the RuntimeClass admission controller. If the RuntimeClass - admission controller is enabled, overhead must not - be set in Pod create requests. The RuntimeClass admission - controller will reject Pod create requests which have - the overhead already set. If RuntimeClass is configured - and selected in the PodSpec, Overhead will be set - to the value defined in the corresponding RuntimeClass, - otherwise it will remain unset and treated as zero. - More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md - This field is alpha-level as of Kubernetes v1.16, - and is only honored by servers that enable the PodOverhead - feature.' - type: object - preemptionPolicy: - description: PreemptionPolicy is the Policy for preempting - pods with lower priority. One of Never, PreemptLowerPriority. - Defaults to PreemptLowerPriority if unset. This field - is beta-level, gated by the NonPreemptingPriority - feature-gate. - type: string - priority: - description: The priority value. Various system components - use this field to find the priority of the pod. When - Priority Admission Controller is enabled, it prevents - users from setting this field. The admission controller - populates this field from PriorityClassName. The higher - the value, the higher the priority. - format: int32 - type: integer - priorityClassName: - description: If specified, indicates the pod's priority. - "system-node-critical" and "system-cluster-critical" - are two special keywords which indicate the highest - priorities with the former being the highest priority. - Any other name must be defined by creating a PriorityClass - object with that name. If not specified, the pod priority - will be default or zero if there is no default. - type: string - readinessGates: - description: 'If specified, all readiness gates will - be evaluated for pod readiness. A pod is ready when - all its containers are ready AND all conditions specified - in the readiness gates have status equal to "True" - More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md' - items: - description: PodReadinessGate contains the reference - to a pod condition - properties: - conditionType: - description: ConditionType refers to a condition - in the pod's condition list with matching type. - type: string - required: - - conditionType - type: object - type: array - restartPolicy: - description: 'Restart policy for all containers within - the pod. One of Always, OnFailure, Never. Default - to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy' - type: string - runtimeClassName: - description: 'RuntimeClassName refers to a RuntimeClass - object in the node.k8s.io group, which should be used - to run this pod. If no RuntimeClass resource matches - the named class, the pod will not be run. If unset - or empty, the "legacy" RuntimeClass will be used, - which is an implicit class with an empty definition - that uses the default runtime handler. More info: - https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md - This is a beta feature as of Kubernetes v1.14.' - type: string - schedulerName: - description: If specified, the pod will be dispatched - by specified scheduler. If not specified, the pod - will be dispatched by default scheduler. - type: string - securityContext: - description: 'SecurityContext holds pod-level security - attributes and common container settings. Optional: - Defaults to empty. See type description for default - values of each field.' - properties: - fsGroup: - description: "A special supplemental group that - applies to all containers in a pod. Some volume - types allow the Kubelet to change the ownership - of that volume to be owned by the pod: \n 1. The - owning GID will be the FSGroup 2. The setgid bit - is set (new files created in the volume will be - owned by FSGroup) 3. The permission bits are OR'd - with rw-rw---- \n If unset, the Kubelet will not - modify the ownership and permissions of any volume." - format: int64 - type: integer - fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior - of changing ownership and permission of the volume - before being exposed inside Pod. This field will - only apply to volume types which support fsGroup - based ownership(and permissions). It will have - no effect on ephemeral volume types such as: secret, - configmaps and emptydir. Valid values are "OnRootMismatch" - and "Always". If not specified defaults to "Always".' - type: string - runAsGroup: - description: The GID to run the entrypoint of the - container process. Uses runtime default if unset. - May also be set in SecurityContext. If set in - both SecurityContext and PodSecurityContext, the - value specified in SecurityContext takes precedence - for that container. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run - as a non-root user. If true, the Kubelet will - validate the image at runtime to ensure that it - does not run as UID 0 (root) and fail to start - the container if it does. If unset or false, no - such validation will be performed. May also be - set in SecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in - SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the - container process. Defaults to user specified - in image metadata if unspecified. May also be - set in SecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in - SecurityContext takes precedence for that container. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to - all containers. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in SecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence - for that container. - properties: - level: - description: Level is SELinux level label that - applies to the container. - type: string - role: - description: Role is a SELinux role label that - applies to the container. - type: string - type: - description: Type is a SELinux type label that - applies to the container. - type: string - user: - description: User is a SELinux user label that - applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by the containers - in this pod. - properties: - localhostProfile: - description: localhostProfile indicates a profile - defined in a file on the node should be used. - The profile must be preconfigured on the node - to work. Must be a descending path, relative - to the kubelet's configured seccomp profile - location. Must only be set if type is "Localhost". - type: string - type: - description: "type indicates which kind of seccomp - profile will be applied. Valid options are: - \n Localhost - a profile defined in a file - on the node should be used. RuntimeDefault - - the container runtime default profile should - be used. Unconfined - no profile should be - applied." - type: string - required: - - type - type: object - supplementalGroups: - description: A list of groups applied to the first - process run in each container, in addition to - the container's primary GID. If unspecified, - no groups will be added to any container. - items: - format: int64 - type: integer - type: array - sysctls: - description: Sysctls hold a list of namespaced sysctls - used for the pod. Pods with unsupported sysctls - (by the container runtime) might fail to launch. - items: - description: Sysctl defines a kernel parameter - to be set - properties: - name: - description: Name of a property to set - type: string - value: - description: Value of a property to set - type: string - required: - - name - - value - type: object - type: array - windowsOptions: - description: The Windows specific settings applied - to all containers. If unspecified, the options - within a container's SecurityContext will be used. - If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the - GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name - of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run - the entrypoint of the container process. Defaults - to the user specified in image metadata if - unspecified. May also be set in PodSecurityContext. - If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: string - type: object - type: object - serviceAccount: - description: 'DeprecatedServiceAccount is a depreciated - alias for ServiceAccountName. Deprecated: Use serviceAccountName - instead.' - type: string - serviceAccountName: - description: 'ServiceAccountName is the name of the - ServiceAccount to use to run this pod. More info: - https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' - type: string - setHostnameAsFQDN: - description: If true the pod's hostname will be configured - as the pod's FQDN, rather than the leaf name (the - default). In Linux containers, this means setting - the FQDN in the hostname field of the kernel (the - nodename field of struct utsname). In Windows containers, - this means setting the registry value of hostname - for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters - to FQDN. If a pod does not have FQDN, this has no - effect. Default to false. - type: boolean - shareProcessNamespace: - description: 'Share a single process namespace between - all of the containers in a pod. When this is set containers - will be able to view and signal processes from other - containers in the same pod, and the first process - in each container will not be assigned PID 1. HostPID - and ShareProcessNamespace cannot both be set. Optional: - Default to false.' - type: boolean - subdomain: - description: If specified, the fully qualified Pod hostname - will be "...svc.". If not specified, the pod will not have - a domainname at all. - type: string - terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs - to terminate gracefully. May be decreased in delete - request. Value must be non-negative integer. The value - zero indicates delete immediately. If this value is - nil, the default grace period will be used instead. - The grace period is the duration in seconds after - the processes running in the pod are sent a termination - signal and the time when the processes are forcibly - halted with a kill signal. Set this value longer than - the expected cleanup time for your process. Defaults - to 30 seconds. - format: int64 - type: integer - tolerations: - description: If specified, the pod's tolerations. - items: - description: The pod this Toleration is attached to - tolerates any taint that matches the triple - using the matching operator . - properties: - effect: - description: Effect indicates the taint effect - to match. Empty means match all taint effects. - When specified, allowed values are NoSchedule, - PreferNoSchedule and NoExecute. - type: string - key: - description: Key is the taint key that the toleration - applies to. Empty means match all taint keys. - If the key is empty, operator must be Exists; - this combination means to match all values and - all keys. - type: string - operator: - description: Operator represents a key's relationship - to the value. Valid operators are Exists and - Equal. Defaults to Equal. Exists is equivalent - to wildcard for value, so that a pod can tolerate - all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the - period of time the toleration (which must be - of effect NoExecute, otherwise this field is - ignored) tolerates the taint. By default, it - is not set, which means tolerate the taint forever - (do not evict). Zero and negative values will - be treated as 0 (evict immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration - matches to. If the operator is Exists, the value - should be empty, otherwise just a regular string. - type: string - type: object - type: array - topologySpreadConstraints: - description: TopologySpreadConstraints describes how - a group of pods ought to spread across topology domains. - Scheduler will schedule pods in a way which abides - by the constraints. All topologySpreadConstraints - are ANDed. - items: - description: TopologySpreadConstraint specifies how - to spread matching pods among the given topology. - properties: - labelSelector: - description: LabelSelector is used to find matching - pods. Pods that match this label selector are - counted to determine the number of pods in their - corresponding topology domain. - properties: - matchExpressions: - description: matchExpressions is a list of - label selector requirements. The requirements - are ANDed. - items: - description: A label selector requirement - is a selector that contains values, a - key, and an operator that relates the - key and values. - properties: - key: - description: key is the label key that - the selector applies to. - type: string - operator: - description: operator represents a key's - relationship to a set of values. Valid - operators are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array of string - values. If the operator is In or NotIn, - the values array must be non-empty. - If the operator is Exists or DoesNotExist, - the values array must be empty. This - array is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator is - "In", and the values array contains only - "value". The requirements are ANDed. - type: object - type: object - maxSkew: - description: 'MaxSkew describes the degree to - which pods may be unevenly distributed. When - `whenUnsatisfiable=DoNotSchedule`, it is the - maximum permitted difference between the number - of matching pods in the target topology and - the global minimum. For example, in a 3-zone - cluster, MaxSkew is set to 1, and pods with - the same labelSelector spread as 1/1/0: | zone1 - | zone2 | zone3 | | P | P | | - - if MaxSkew is 1, incoming pod can only be - scheduled to zone3 to become 1/1/1; scheduling - it onto zone1(zone2) would make the ActualSkew(2-0) - on zone1(zone2) violate MaxSkew(1). - if MaxSkew - is 2, incoming pod can be scheduled onto any - zone. When `whenUnsatisfiable=ScheduleAnyway`, - it is used to give higher precedence to topologies - that satisfy it. It''s a required field. Default - value is 1 and 0 is not allowed.' - format: int32 - type: integer - topologyKey: - description: TopologyKey is the key of node labels. - Nodes that have a label with this key and identical - values are considered to be in the same topology. - We consider each as a "bucket", - and try to put balanced number of pods into - each bucket. It's a required field. - type: string - whenUnsatisfiable: - description: 'WhenUnsatisfiable indicates how - to deal with a pod if it doesn''t satisfy the - spread constraint. - DoNotSchedule (default) - tells the scheduler not to schedule it. - ScheduleAnyway - tells the scheduler to schedule the pod in any - location, but giving higher precedence to - topologies that would help reduce the skew. - A constraint is considered "Unsatisfiable" for - an incoming pod if and only if every possible - node assigment for that pod would violate "MaxSkew" - on some topology. For example, in a 3-zone cluster, - MaxSkew is set to 1, and pods with the same - labelSelector spread as 3/1/1: | zone1 | zone2 - | zone3 | | P P P | P | P | If WhenUnsatisfiable - is set to DoNotSchedule, incoming pod can only - be scheduled to zone2(zone3) to become 3/2/1(3/1/2) - as ActualSkew(2-1) on zone2(zone3) satisfies - MaxSkew(1). In other words, the cluster can - still be imbalanced, but scheduler won''t make - it *more* imbalanced. It''s a required field.' - type: string - required: - - maxSkew - - topologyKey - - whenUnsatisfiable - type: object - type: array - x-kubernetes-list-map-keys: - - topologyKey - - whenUnsatisfiable - x-kubernetes-list-type: map - volumes: - description: 'List of volumes that can be mounted by - containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' - items: - description: Volume represents a named volume in a - pod that may be accessed by any container in the - pod. - properties: - awsElasticBlockStore: - description: 'AWSElasticBlockStore represents - an AWS Disk resource that is attached to a kubelet''s - host machine and then exposed to the pod. More - info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - partition: - description: 'The partition in the volume - that you want to mount. If omitted, the - default is to mount by volume name. Examples: - For volume /dev/sda1, you specify the partition - as "1". Similarly, the volume partition - for /dev/sda is "0" (or you can leave the - property empty).' - format: int32 - type: integer - readOnly: - description: 'Specify "true" to force and - set the ReadOnly property in VolumeMounts - to "true". If omitted, the default is "false". - More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: boolean - volumeID: - description: 'Unique ID of the persistent - disk resource in AWS (Amazon EBS volume). - More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: string - required: - - volumeID - type: object - azureDisk: - description: AzureDisk represents an Azure Data - Disk mount on the host and bind mount to the - pod. - properties: - cachingMode: - description: 'Host Caching mode: None, Read - Only, Read Write.' - type: string - diskName: - description: The Name of the data disk in - the blob storage - type: string - diskURI: - description: The URI the data disk in the - blob storage - type: string - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - kind: - description: 'Expected values Shared: multiple - blob disks per storage account Dedicated: - single blob disk per storage account Managed: - azure managed data disk (only in managed - availability set). defaults to shared' - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - required: - - diskName - - diskURI - type: object - azureFile: - description: AzureFile represents an Azure File - Service mount on the host and bind mount to - the pod. - properties: - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretName: - description: the name of secret that contains - Azure Storage Account Name and Key - type: string - shareName: - description: Share Name - type: string - required: - - secretName - - shareName - type: object - cephfs: - description: CephFS represents a Ceph FS mount - on the host that shares a pod's lifetime - properties: - monitors: - description: 'Required: Monitors is a collection - of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - items: - type: string - type: array - path: - description: 'Optional: Used as the mounted - root, rather than the full Ceph tree, default - is /' - type: string - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts. More info: - https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: boolean - secretFile: - description: 'Optional: SecretFile is the - path to key ring for User, default is /etc/ceph/user.secret - More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - secretRef: - description: 'Optional: SecretRef is reference - to the authentication secret for User, default - is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - user: - description: 'Optional: User is the rados - user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - required: - - monitors - type: object - cinder: - description: 'Cinder represents a cinder volume - attached and mounted on kubelets host machine. - More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - properties: - fsType: - description: 'Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Examples: "ext4", "xfs", - "ntfs". Implicitly inferred to be "ext4" - if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts. More info: - https://examples.k8s.io/mysql-cinder-pd/README.md' - type: boolean - secretRef: - description: 'Optional: points to a secret - object containing parameters used to connect - to OpenStack.' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - volumeID: - description: 'volume id used to identify the - volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - required: - - volumeID - type: object - configMap: - description: ConfigMap represents a configMap - that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits used to - set permissions on created files by default. - Must be an octal value between 0000 and - 0777 or a decimal value between 0 and 511. - YAML accepts both octal and decimal values, - JSON requires decimal values for mode bits. - Defaults to 0644. Directories within the - path are not affected by this setting. This - might be in conflict with other options - that affect the file mode, like fsGroup, - and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value - pair in the Data field of the referenced - ConfigMap will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the ConfigMap, the volume setup will - error unless it is marked optional. Paths - must be relative and may not contain the - '..' path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used - to set permissions on this file. Must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its keys must be defined - type: boolean - type: object - csi: - description: CSI (Container Storage Interface) - represents ephemeral storage that is handled - by certain external CSI drivers (Beta feature). - properties: - driver: - description: Driver is the name of the CSI - driver that handles this volume. Consult - with your admin for the correct name as - registered in the cluster. - type: string - fsType: - description: Filesystem type to mount. Ex. - "ext4", "xfs", "ntfs". If not provided, - the empty value is passed to the associated - CSI driver which will determine the default - filesystem to apply. - type: string - nodePublishSecretRef: - description: NodePublishSecretRef is a reference - to the secret object containing sensitive - information to pass to the CSI driver to - complete the CSI NodePublishVolume and NodeUnpublishVolume - calls. This field is optional, and may - be empty if no secret is required. If the - secret object contains more than one secret, - all secret references are passed. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - readOnly: - description: Specifies a read-only configuration - for the volume. Defaults to false (read/write). - type: boolean - volumeAttributes: - additionalProperties: - type: string - description: VolumeAttributes stores driver-specific - properties that are passed to the CSI driver. - Consult your driver's documentation for - supported values. - type: object - required: - - driver - type: object - downwardAPI: - description: DownwardAPI represents downward API - about the pod that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on - created files by default. Must be a Optional: - mode bits used to set permissions on created - files by default. Must be an octal value - between 0000 and 0777 or a decimal value - between 0 and 511. YAML accepts both octal - and decimal values, JSON requires decimal - values for mode bits. Defaults to 0644. - Directories within the path are not affected - by this setting. This might be in conflict - with other options that affect the file - mode, like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - items: - description: Items is a list of downward API - volume file - items: - description: DownwardAPIVolumeFile represents - information to create the file containing - the pod field - properties: - fieldRef: - description: 'Required: Selects a field - of the pod: only annotations, labels, - name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits used - to set permissions on this file, must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the - relative path name of the file to - be created. Must not be absolute or - contain the ''..'' path. Must be utf-8 - encoded. The first item of the relative - path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - requests.cpu and requests.memory) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - emptyDir: - description: 'EmptyDir represents a temporary - directory that shares a pod''s lifetime. More - info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - properties: - medium: - description: 'What type of storage medium - should back this directory. The default - is "" which means to use the node''s default - medium. Must be an empty string (default) - or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage - required for this EmptyDir volume. The size - limit is also applicable for memory medium. - The maximum usage on memory medium EmptyDir - would be the minimum value between the SizeLimit - specified here and the sum of memory limits - of all containers in a pod. The default - is nil which means that the limit is undefined. - More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - ephemeral: - description: "Ephemeral represents a volume that - is handled by a cluster storage driver (Alpha - feature). The volume's lifecycle is tied to - the pod that defines it - it will be created - before the pod starts, and deleted when the - pod is removed. \n Use this if: a) the volume - is only needed while the pod runs, b) features - of normal volumes like restoring from snapshot - or capacity tracking are needed, c) the storage - driver is specified through a storage class, - and d) the storage driver supports dynamic volume - provisioning through a PersistentVolumeClaim - (see EphemeralVolumeSource for more information - on the connection between this volume type and - PersistentVolumeClaim). \n Use PersistentVolumeClaim - or one of the vendor-specific APIs for volumes - that persist for longer than the lifecycle of - an individual pod. \n Use CSI for light-weight - local ephemeral volumes if the CSI driver is - meant to be used that way - see the documentation - of the driver for more information. \n A pod - can use both types of ephemeral volumes and - persistent volumes at the same time." - properties: - readOnly: - description: Specifies a read-only configuration - for the volume. Defaults to false (read/write). - type: boolean - volumeClaimTemplate: - description: "Will be used to create a stand-alone - PVC to provision the volume. The pod in - which this EphemeralVolumeSource is embedded - will be the owner of the PVC, i.e. the PVC - will be deleted together with the pod. The - name of the PVC will be `-` where `` is the name - from the `PodSpec.Volumes` array entry. - Pod validation will reject the pod if the - concatenated name is not valid for a PVC - (for example, too long). \n An existing - PVC with that name that is not owned by - the pod will *not* be used for the pod to - avoid using an unrelated volume by mistake. - Starting the pod is then blocked until the - unrelated PVC is removed. If such a pre-created - PVC is meant to be used by the pod, the - PVC has to updated with an owner reference - to the pod once the pod exists. Normally - this should not be necessary, but it may - be useful when manually reconstructing a - broken cluster. \n This field is read-only - and no changes will be made by Kubernetes - to the PVC after it has been created. \n - Required, must not be nil." - properties: - metadata: - description: May contain labels and annotations - that will be copied into the PVC when - creating it. No other fields are allowed - and will be rejected during validation. - type: object - spec: - description: The specification for the - PersistentVolumeClaim. The entire content - is copied unchanged into the PVC that - gets created from this template. The - same fields as in a PersistentVolumeClaim - are also valid here. - properties: - accessModes: - description: 'AccessModes contains - the desired access modes the volume - should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used - to specify either: * An existing - VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - - Beta) * An existing PVC (PersistentVolumeClaim) - * An existing custom resource/object - that implements data population - (Alpha) In order to use VolumeSnapshot - object types, the appropriate feature - gate must be enabled (VolumeSnapshotDataSource - or AnyVolumeDataSource) If the provisioner - or an external controller can support - the specified data source, it will - create a new volume based on the - contents of the specified data source. - If the specified data source is - not supported, the volume will not - be created and the failure will - be reported as an event. In the - future, we plan to support more - data source types and the behavior - of the provisioner may change.' - properties: - apiGroup: - description: APIGroup is the group - for the resource being referenced. - If APIGroup is not specified, - the specified Kind must be in - the core API group. For any - other third-party types, APIGroup - is required. - type: string - kind: - description: Kind is the type - of resource being referenced - type: string - name: - description: Name is the name - of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents - the minimum resources the volume - should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes - the maximum amount of compute - resources allowed. More info: - https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes - the minimum amount of compute - resources required. If Requests - is omitted for a container, - it defaults to Limits if that - is explicitly specified, otherwise - to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes - to consider for binding. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass - required by the claim. More info: - https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what - type of volume is required by the - claim. Value of Filesystem is implied - when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding - reference to the PersistentVolume - backing this claim. - type: string - type: object - required: - - spec - type: object - type: object - fc: - description: FC represents a Fibre Channel resource - that is attached to a kubelet's host machine - and then exposed to the pod. - properties: - fsType: - description: 'Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - lun: - description: 'Optional: FC target lun number' - format: int32 - type: integer - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts.' - type: boolean - targetWWNs: - description: 'Optional: FC target worldwide - names (WWNs)' - items: - type: string - type: array - wwids: - description: 'Optional: FC volume world wide - identifiers (wwids) Either wwids or combination - of targetWWNs and lun must be set, but not - both simultaneously.' - items: - type: string - type: array - type: object - flexVolume: - description: FlexVolume represents a generic volume - resource that is provisioned/attached using - an exec based plugin. - properties: - driver: - description: Driver is the name of the driver - to use for this volume. - type: string - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - The default filesystem depends on FlexVolume - script. - type: string - options: - additionalProperties: - type: string - description: 'Optional: Extra command options - if any.' - type: object - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts.' - type: boolean - secretRef: - description: 'Optional: SecretRef is reference - to the secret object containing sensitive - information to pass to the plugin scripts. - This may be empty if no secret object is - specified. If the secret object contains - more than one secret, all secrets are passed - to the plugin scripts.' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - required: - - driver - type: object - flocker: - description: Flocker represents a Flocker volume - attached to a kubelet's host machine. This depends - on the Flocker control service being running - properties: - datasetName: - description: Name of the dataset stored as - metadata -> name on the dataset for Flocker - should be considered as deprecated - type: string - datasetUUID: - description: UUID of the dataset. This is - unique identifier of a Flocker dataset - type: string - type: object - gcePersistentDisk: - description: 'GCEPersistentDisk represents a GCE - Disk resource that is attached to a kubelet''s - host machine and then exposed to the pod. More - info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - partition: - description: 'The partition in the volume - that you want to mount. If omitted, the - default is to mount by volume name. Examples: - For volume /dev/sda1, you specify the partition - as "1". Similarly, the volume partition - for /dev/sda is "0" (or you can leave the - property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - format: int32 - type: integer - pdName: - description: 'Unique name of the PD resource - in GCE. Used to identify the disk in GCE. - More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: string - readOnly: - description: 'ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: boolean - required: - - pdName - type: object - gitRepo: - description: 'GitRepo represents a git repository - at a particular revision. DEPRECATED: GitRepo - is deprecated. To provision a container with - a git repo, mount an EmptyDir into an InitContainer - that clones the repo using git, then mount the - EmptyDir into the Pod''s container.' - properties: - directory: - description: Target directory name. Must not - contain or start with '..'. If '.' is supplied, - the volume directory will be the git repository. Otherwise, - if specified, the volume will contain the - git repository in the subdirectory with - the given name. - type: string - repository: - description: Repository URL - type: string - revision: - description: Commit hash for the specified - revision. - type: string - required: - - repository - type: object - glusterfs: - description: 'Glusterfs represents a Glusterfs - mount on the host that shares a pod''s lifetime. - More info: https://examples.k8s.io/volumes/glusterfs/README.md' - properties: - endpoints: - description: 'EndpointsName is the endpoint - name that details Glusterfs topology. More - info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - path: - description: 'Path is the Glusterfs volume - path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - readOnly: - description: 'ReadOnly here will force the - Glusterfs volume to be mounted with read-only - permissions. Defaults to false. More info: - https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: boolean - required: - - endpoints - - path - type: object - hostPath: - description: 'HostPath represents a pre-existing - file or directory on the host machine that is - directly exposed to the container. This is generally - used for system agents or other privileged things - that are allowed to see the host machine. Most - containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath - --- TODO(jonesdl) We need to restrict who can - use host directory mounts and who can/can not - mount host directories as read/write.' - properties: - path: - description: 'Path of the directory on the - host. If the path is a symlink, it will - follow the link to the real path. More info: - https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - type: - description: 'Type for HostPath Volume Defaults - to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - required: - - path - type: object - iscsi: - description: 'ISCSI represents an ISCSI Disk resource - that is attached to a kubelet''s host machine - and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' - properties: - chapAuthDiscovery: - description: whether support iSCSI Discovery - CHAP authentication - type: boolean - chapAuthSession: - description: whether support iSCSI Session - CHAP authentication - type: boolean - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - initiatorName: - description: Custom iSCSI Initiator Name. - If initiatorName is specified with iscsiInterface - simultaneously, new iSCSI interface : will be created for - the connection. - type: string - iqn: - description: Target iSCSI Qualified Name. - type: string - iscsiInterface: - description: iSCSI Interface Name that uses - an iSCSI transport. Defaults to 'default' - (tcp). - type: string - lun: - description: iSCSI Target Lun number. - format: int32 - type: integer - portals: - description: iSCSI Target Portal List. The - portal is either an IP or ip_addr:port if - the port is other than default (typically - TCP ports 860 and 3260). - items: - type: string - type: array - readOnly: - description: ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. - type: boolean - secretRef: - description: CHAP Secret for iSCSI target - and initiator authentication - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - targetPortal: - description: iSCSI Target Portal. The Portal - is either an IP or ip_addr:port if the port - is other than default (typically TCP ports - 860 and 3260). - type: string - required: - - iqn - - lun - - targetPortal - type: object - name: - description: 'Volume''s name. Must be a DNS_LABEL - and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' - type: string - nfs: - description: 'NFS represents an NFS mount on the - host that shares a pod''s lifetime More info: - https://kubernetes.io/docs/concepts/storage/volumes#nfs' - properties: - path: - description: 'Path that is exported by the - NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - readOnly: - description: 'ReadOnly here will force the - NFS export to be mounted with read-only - permissions. Defaults to false. More info: - https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: boolean - server: - description: 'Server is the hostname or IP - address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - required: - - path - - server - type: object - persistentVolumeClaim: - description: 'PersistentVolumeClaimVolumeSource - represents a reference to a PersistentVolumeClaim - in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - claimName: - description: 'ClaimName is the name of a PersistentVolumeClaim - in the same namespace as the pod using this - volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - type: string - readOnly: - description: Will force the ReadOnly setting - in VolumeMounts. Default false. - type: boolean - required: - - claimName - type: object - photonPersistentDisk: - description: PhotonPersistentDisk represents a - PhotonController persistent disk attached and - mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - pdID: - description: ID that identifies Photon Controller - persistent disk - type: string - required: - - pdID - type: object - portworxVolume: - description: PortworxVolume represents a portworx - volume attached and mounted on kubelets host - machine - properties: - fsType: - description: FSType represents the filesystem - type to mount Must be a filesystem type - supported by the host operating system. - Ex. "ext4", "xfs". Implicitly inferred to - be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - volumeID: - description: VolumeID uniquely identifies - a Portworx volume - type: string - required: - - volumeID - type: object - projected: - description: Items for all in one resources secrets, - configmaps, and downward API - properties: - defaultMode: - description: Mode bits used to set permissions - on created files by default. Must be an - octal value between 0000 and 0777 or a decimal - value between 0 and 511. YAML accepts both - octal and decimal values, JSON requires - decimal values for mode bits. Directories - within the path are not affected by this - setting. This might be in conflict with - other options that affect the file mode, - like fsGroup, and the result can be other - mode bits set. - format: int32 - type: integer - sources: - description: list of volume projections - items: - description: Projection that may be projected - along with other supported volume types - properties: - configMap: - description: information about the configMap - data to project - properties: - items: - description: If unspecified, each - key-value pair in the Data field - of the referenced ConfigMap will - be projected into the volume as - a file whose name is the key and - content is the value. If specified, - the listed keys will be projected - into the specified paths, and - unlisted keys will not be present. - If a key is specified which is - not present in the ConfigMap, - the volume setup will error unless - it is marked optional. Paths must - be relative and may not contain - the '..' path or start with '..'. - items: - description: Maps a string key - to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode - bits used to set permissions - on this file. Must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative - path of the file to map - the key to. May not be an - absolute path. May not contain - the path element '..'. May - not start with the string - '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its keys must be - defined - type: boolean - type: object - downwardAPI: - description: information about the downwardAPI - data to project - properties: - items: - description: Items is a list of - DownwardAPIVolume file - items: - description: DownwardAPIVolumeFile - represents information to create - the file containing the pod - field - properties: - fieldRef: - description: 'Required: Selects - a field of the pod: only - annotations, labels, name - and namespace are supported.' - properties: - apiVersion: - description: Version of - the schema the FieldPath - is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the - field to select in the - specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode - bits used to set permissions - on this file, must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path - is the relative path name - of the file to be created. - Must not be absolute or - contain the ''..'' path. - Must be utf-8 encoded. The - first item of the relative - path must not start with - ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource - of the container: only resources - limits and requests (limits.cpu, - limits.memory, requests.cpu - and requests.memory) are - currently supported.' - properties: - containerName: - description: 'Container - name: required for volumes, - optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies - the output format of - the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: - resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - secret: - description: information about the secret - data to project - properties: - items: - description: If unspecified, each - key-value pair in the Data field - of the referenced Secret will - be projected into the volume as - a file whose name is the key and - content is the value. If specified, - the listed keys will be projected - into the specified paths, and - unlisted keys will not be present. - If a key is specified which is - not present in the Secret, the - volume setup will error unless - it is marked optional. Paths must - be relative and may not contain - the '..' path or start with '..'. - items: - description: Maps a string key - to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode - bits used to set permissions - on this file. Must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative - path of the file to map - the key to. May not be an - absolute path. May not contain - the path element '..'. May - not start with the string - '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - type: object - serviceAccountToken: - description: information about the serviceAccountToken - data to project - properties: - audience: - description: Audience is the intended - audience of the token. A recipient - of a token must identify itself - with an identifier specified in - the audience of the token, and - otherwise should reject the token. - The audience defaults to the identifier - of the apiserver. - type: string - expirationSeconds: - description: ExpirationSeconds is - the requested duration of validity - of the service account token. - As the token approaches expiration, - the kubelet volume plugin will - proactively rotate the service - account token. The kubelet will - start trying to rotate the token - if the token is older than 80 - percent of its time to live or - if the token is older than 24 - hours.Defaults to 1 hour and must - be at least 10 minutes. - format: int64 - type: integer - path: - description: Path is the path relative - to the mount point of the file - to project the token into. - type: string - required: - - path - type: object - type: object - type: array - required: - - sources - type: object - quobyte: - description: Quobyte represents a Quobyte mount - on the host that shares a pod's lifetime - properties: - group: - description: Group to map volume access to - Default is no group - type: string - readOnly: - description: ReadOnly here will force the - Quobyte volume to be mounted with read-only - permissions. Defaults to false. - type: boolean - registry: - description: Registry represents a single - or multiple Quobyte Registry services specified - as a string as host:port pair (multiple - entries are separated with commas) which - acts as the central registry for volumes - type: string - tenant: - description: Tenant owning the given Quobyte - volume in the Backend Used with dynamically - provisioned Quobyte volumes, value is set - by the plugin - type: string - user: - description: User to map volume access to - Defaults to serivceaccount user - type: string - volume: - description: Volume is a string that references - an already created Quobyte volume by name. - type: string - required: - - registry - - volume - type: object - rbd: - description: 'RBD represents a Rados Block Device - mount on the host that shares a pod''s lifetime. - More info: https://examples.k8s.io/volumes/rbd/README.md' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - image: - description: 'The rados image name. More info: - https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - keyring: - description: 'Keyring is the path to key ring - for RBDUser. Default is /etc/ceph/keyring. - More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - monitors: - description: 'A collection of Ceph monitors. - More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - items: - type: string - type: array - pool: - description: 'The rados pool name. Default - is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - readOnly: - description: 'ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: boolean - secretRef: - description: 'SecretRef is name of the authentication - secret for RBDUser. If provided overrides - keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - user: - description: 'The rados user name. Default - is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - required: - - image - - monitors - type: object - scaleIO: - description: ScaleIO represents a ScaleIO persistent - volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Default is "xfs". - type: string - gateway: - description: The host address of the ScaleIO - API Gateway. - type: string - protectionDomain: - description: The name of the ScaleIO Protection - Domain for the configured storage. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretRef: - description: SecretRef references to the secret - for ScaleIO user and other sensitive information. - If this is not provided, Login operation - will fail. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - sslEnabled: - description: Flag to enable/disable SSL communication - with Gateway, default false - type: boolean - storageMode: - description: Indicates whether the storage - for a volume should be ThickProvisioned - or ThinProvisioned. Default is ThinProvisioned. - type: string - storagePool: - description: The ScaleIO Storage Pool associated - with the protection domain. - type: string - system: - description: The name of the storage system - as configured in ScaleIO. - type: string - volumeName: - description: The name of a volume already - created in the ScaleIO system that is associated - with this volume source. - type: string - required: - - gateway - - secretRef - - system - type: object - secret: - description: 'Secret represents a secret that - should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - properties: - defaultMode: - description: 'Optional: mode bits used to - set permissions on created files by default. - Must be an octal value between 0000 and - 0777 or a decimal value between 0 and 511. - YAML accepts both octal and decimal values, - JSON requires decimal values for mode bits. - Defaults to 0644. Directories within the - path are not affected by this setting. This - might be in conflict with other options - that affect the file mode, like fsGroup, - and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value - pair in the Data field of the referenced - Secret will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the Secret, the volume setup will error - unless it is marked optional. Paths must - be relative and may not contain the '..' - path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used - to set permissions on this file. Must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - optional: - description: Specify whether the Secret or - its keys must be defined - type: boolean - secretName: - description: 'Name of the secret in the pod''s - namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - type: string - type: object - storageos: - description: StorageOS represents a StorageOS - volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretRef: - description: SecretRef specifies the secret - to use for obtaining the StorageOS API credentials. If - not specified, default values will be attempted. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - volumeName: - description: VolumeName is the human-readable - name of the StorageOS volume. Volume names - are only unique within a namespace. - type: string - volumeNamespace: - description: VolumeNamespace specifies the - scope of the volume within StorageOS. If - no namespace is specified then the Pod's - namespace will be used. This allows the - Kubernetes name scoping to be mirrored within - StorageOS for tighter integration. Set VolumeName - to any name to override the default behaviour. - Set to "default" if you are not using namespaces - within StorageOS. Namespaces that do not - pre-exist within StorageOS will be created. - type: string - type: object - vsphereVolume: - description: VsphereVolume represents a vSphere - volume attached and mounted on kubelets host - machine - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - storagePolicyID: - description: Storage Policy Based Management - (SPBM) profile ID associated with the StoragePolicyName. - type: string - storagePolicyName: - description: Storage Policy Based Management - (SPBM) profile name. - type: string - volumePath: - description: Path that identifies vSphere - volume vmdk - type: string - required: - - volumePath - type: object - required: - - name - type: object - type: array - required: - - containers - type: object - type: object - topologyPolicy: - description: Specifies the topology policy of task - type: string - type: object - type: array - ttlSecondsAfterFinished: - description: ttlSecondsAfterFinished limits the lifetime of a Job - that has finished execution (either Completed or Failed). If this - field is set, ttlSecondsAfterFinished after the Job finishes, it - is eligible to be automatically deleted. If this field is unset, - the Job won't be automatically deleted. If this field is set to - zero, the Job becomes eligible to be deleted immediately after it - finishes. - format: int32 - type: integer - volumes: - description: The volumes mount on Job - items: - description: VolumeSpec defines the specification of Volume, e.g. - PVC. - properties: - mountPath: - description: Path within the container at which the volume should - be mounted. Must not contain ':'. - type: string - volumeClaim: - description: VolumeClaim defines the PVC used by the VolumeMount. - properties: - accessModes: - description: 'AccessModes contains the desired access modes - the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify either: - * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - - Beta) * An existing PVC (PersistentVolumeClaim) * An - existing custom resource/object that implements data population - (Alpha) In order to use VolumeSnapshot object types, the - appropriate feature gate must be enabled (VolumeSnapshotDataSource - or AnyVolumeDataSource) If the provisioner or an external - controller can support the specified data source, it will - create a new volume based on the contents of the specified - data source. If the specified data source is not supported, - the volume will not be created and the failure will be - reported as an event. In the future, we plan to support - more data source types and the behavior of the provisioner - may change.' - properties: - apiGroup: - description: APIGroup is the group for the resource - being referenced. If APIGroup is not specified, the - specified Kind must be in the core API group. For - any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum resources - the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of - compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount - of compute resources required. If Requests is omitted - for a container, it defaults to Limits if that is - explicitly specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider for - binding. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: A label selector requirement is a selector - that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: operator represents a key's relationship - to a set of values. Valid operators are In, - NotIn, Exists and DoesNotExist. - type: string - values: - description: values is an array of string values. - If the operator is In or NotIn, the values array - must be non-empty. If the operator is Exists - or DoesNotExist, the values array must be empty. - This array is replaced during a strategic merge - patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. - A single {key,value} in the matchLabels map is equivalent - to an element of matchExpressions, whose key field - is "key", the operator is "In", and the values array - contains only "value". The requirements are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass required by the claim. - More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is required - by the claim. Value of Filesystem is implied when not - included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the - PersistentVolume backing this claim. - type: string - type: object - volumeClaimName: - description: defined the PVC name - type: string - required: - - mountPath - type: object - type: array - type: object - status: - description: Current status of the volcano Job - properties: - controlledResources: - additionalProperties: - type: string - description: The resources that controlled by this job, e.g. Service, - ConfigMap - type: object - failed: - description: The number of pods which reached phase Failed. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Job - format: int32 - type: integer - pending: - description: The number of pending pods. - format: int32 - type: integer - retryCount: - description: The number of Job retries. - format: int32 - type: integer - running: - description: The number of running pods. - format: int32 - type: integer - runningDuration: - description: The job running duration is the length of time from job - running to complete. - type: string - state: - description: Current state of Job. - properties: - lastTransitionTime: - description: Last time the condition transit from one phase to - another. - format: date-time - type: string - message: - description: Human-readable message indicating details about last - transition. - type: string - phase: - description: The phase of Job. - type: string - reason: - description: Unique, one-word, CamelCase reason for the phase's - last transition. - type: string - type: object - succeeded: - description: The number of pods which reached phase Succeeded. - format: int32 - type: integer - taskStatusCount: - additionalProperties: - description: TaskState contains details for the current state of - the task. - properties: - phase: - additionalProperties: - format: int32 - type: integer - description: The phase of Task. - type: object - type: object - description: The status of pods for each task - type: object - terminating: - description: The number of pods which reached phase Terminating. - format: int32 - type: integer - unknown: - description: The number of pods which reached phase Unknown. - format: int32 - type: integer - version: - description: Current version of job - format: int32 - type: integer - type: object - type: object - served: true - storage: true - subresources: - status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/bus_v1alpha1_command.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: commands.bus.volcano.sh -spec: - group: bus.volcano.sh - names: - kind: Command - listKind: CommandList - plural: commands - singular: command - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: Command defines command structure. - properties: - action: - description: Action defines the action that will be took to the target - object. - type: string - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - message: - description: Human-readable message indicating details of this command. - type: string - metadata: - type: object - reason: - description: Unique, one-word, CamelCase reason for this command. - type: string - target: - description: TargetObject defines the target object of this command. - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: If true, AND if the owner has the "foregroundDeletion" - finalizer, then the owner cannot be deleted from the key-value store - until this reference is removed. Defaults to false. To set this - field, a user needs "delete" permission of the owner, otherwise - 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - name: - description: 'Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - uid: - description: 'UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids' - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/controllers.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-controllers - namespace: volcano-system ---- -# Source: volcano/templates/controllers.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-controllers -rules: - - apiGroups: ["apiextensions.k8s.io"] - resources: ["customresourcedefinitions"] - verbs: ["create", "get", "list", "watch", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs"] - verbs: ["get", "list", "watch", "update", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs/status", "jobs/finalizers"] - verbs: ["update", "patch"] - - apiGroups: ["bus.volcano.sh"] - resources: ["commands"] - verbs: ["get", "list", "watch", "delete"] - - apiGroups: [""] - resources: ["events"] - verbs: ["create", "list", "watch", "update", "patch"] - - apiGroups: [""] - resources: ["pods"] - verbs: ["create", "get", "list", "watch", "update", "bind", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "create"] - - apiGroups: [""] - resources: ["services"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: [""] - resources: ["secrets"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups", "queues", "queues/status", "elasticresourcequotas", "elasticresourcequotas/status"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: ["scheduling.k8s.io"] - resources: ["priorityclasses"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: ["networking.k8s.io"] - resources: ["networkpolicies"] - verbs: ["get", "create", "delete"] ---- -# Source: volcano/templates/controllers.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-controllers-role -subjects: - - kind: ServiceAccount - name: volcano-controllers - namespace: volcano-system -roleRef: - kind: ClusterRole - name: volcano-controllers - apiGroup: rbac.authorization.k8s.io + - name: volcano-admission + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc3" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --tls-cert-file=/admission.local.config/certificates/tls.crt + - --tls-private-key-file=/admission.local.config/certificates/tls.key + - --ca-cert-file=/admission.local.config/certificates/ca.crt + - --webhook-namespace=paddleflow + - --webhook-service-name=volcano-admission-service + - --logtostderr=false + - --port=8443 + - -v=4 + - 2>&1 + - --alsologtostderr + - --log_dir=/tmp/log + - --log_file=/tmp/log/webhook.log + - --log_file_max_size=300 + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_admission-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + - name: volcano-admission-secret + #容器里配置文件存放路径 + mountPath: /admission.local.config/certificates + #容器里配置文件名称 + subPath: + initContainers: + volumes: + - name: logdir + hostPath: + path: /mnt/log/volcano/admission + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: volcano-admission-secret + secret: + secretName: volcano-admission-secret --- -# Source: volcano/templates/controllers.yaml -kind: Deployment +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-deployment.yaml apiVersion: apps/v1 +kind: Deployment metadata: - name: volcano-controllers - namespace: volcano-system + #文件里的所有volcano-controller、volcano_controller都替换成实际名称 + name: volcano-controller labels: app: volcano-controller + chart: "volcano-controller-0.0.11-rrm1js" + release: "volcano" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + app.kubernetes.io/name: 'volcano-controller' + app: volcano-controller + annotations: + app: volcano-controller + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -7447,151 +822,71 @@ spec: metadata: labels: app: volcano-controller + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + app.kubernetes.io/name: 'volcano-controller' + app: volcano-controller + annotations: + app: volcano-controller spec: - serviceAccount: volcano-controllers + dnsPolicy: ClusterFirst + restartPolicy: Always + serviceAccountName: volcano-controllers containers: - - name: volcano-controllers - image: paddleflow/vc-controller-manager:pf-1.4-vc-1.3 - args: - - --logtostderr - - -v=4 - - 2>&1 - imagePullPolicy: "IfNotPresent" - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-scheduler - namespace: volcano-system ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: ConfigMap -metadata: - name: volcano-scheduler-configmap - namespace: volcano-system -data: - volcano-scheduler.conf: | - actions: "enqueue, allocate, backfill" - tiers: - - plugins: - - name: priority - - name: gang - - name: conformance - - plugins: - - name: drf - - name: predicates - - name: proportion - - name: nodeorder - - name: binpack ---- -# Source: volcano/templates/scheduler.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-scheduler -rules: - - apiGroups: ["apiextensions.k8s.io"] - resources: ["customresourcedefinitions"] - verbs: ["create", "get", "list", "watch", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs"] - verbs: ["get", "list", "watch", "update", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs/status"] - verbs: ["update", "patch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["create", "list", "watch", "update", "patch"] - - apiGroups: [""] - resources: ["pods", "pods/status"] - verbs: ["create", "get", "list", "watch", "update", "patch", "bind", "updateStatus", "delete"] - - apiGroups: [""] - resources: ["pods/binding"] - verbs: ["create"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["list", "watch", "update"] - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["namespaces"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["resourcequotas"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["list", "watch"] - - apiGroups: [ "storage.k8s.io" ] - resources: ["storageclasses", "csinodes", "csidrivers", "csistoragecapacities"] - verbs: [ "list", "watch" ] - - apiGroups: ["policy"] - resources: ["poddisruptionbudgets"] - verbs: ["list", "watch"] - - apiGroups: ["scheduling.k8s.io"] - resources: ["priorityclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["queues", "elasticresourcequotas"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups"] - verbs: ["list", "watch", "update"] - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "create", "delete", "update"] ---- -# Source: volcano/templates/scheduler.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-scheduler-role -subjects: - - kind: ServiceAccount - name: volcano-scheduler - namespace: volcano-system -roleRef: - kind: ClusterRole - name: volcano-scheduler - apiGroup: rbac.authorization.k8s.io ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: Service -metadata: - annotations: - prometheus.io/path: /metrics - prometheus.io/port: "8080" - prometheus.io/scrape: "true" - name: volcano-scheduler-service - namespace: volcano-system -spec: - ports: - - port: 8080 - protocol: TCP - targetPort: 8080 - selector: - app: volcano-scheduler - type: ClusterIP + - name: volcano-controller + image: "paddleflow/vc-controller-manager:pf1.4-vc1.3-rc3" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --logtostderr=false + - -v=4 + - 2>&1 + - --log_dir=/tmp/log + - --alsologtostderr + - --log_file=/tmp/log/controller.log + - --log_file_max_size=300 + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_controller-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + initContainers: + volumes: + - name: logdir + hostPath: + path: /mnt/log/volcano/controller + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- -# Source: volcano/templates/scheduler.yaml -kind: Deployment +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-deployment.yaml apiVersion: apps/v1 +kind: Deployment metadata: + #文件里的所有volcano-scheduler、volcano_scheduler都替换成实际名称 name: volcano-scheduler - namespace: volcano-system labels: app: volcano-scheduler + chart: "volcano-scheduler-0.0.23-rrm1mf" + release: "volcano" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + app: volcano-scheduler + annotations: + app: volcano-scheduler + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -7601,429 +896,165 @@ spec: metadata: labels: app: volcano-scheduler + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + app: volcano-scheduler + annotations: + app: volcano-scheduler spec: - serviceAccount: volcano-scheduler + dnsPolicy: ClusterFirst + restartPolicy: Always + serviceAccountName: volcano-scheduler containers: - - name: volcano-scheduler - image: paddleflow/vc-scheduler:pf-1.4-vc-1.3 - args: - - --logtostderr - - --scheduler-conf=/volcano.scheduler/volcano-scheduler.conf - - -v=3 - - 2>&1 - imagePullPolicy: "IfNotPresent" - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - volumeMounts: - - name: scheduler-config - mountPath: /volcano.scheduler + - name: volcano-scheduler + image: "paddleflow/vc-scheduler:pf1.4-vc1.3-rc3" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --alsologtostderr + - --scheduler-conf=/volcano.scheduler/volcano-scheduler-pf.conf + - -v=4 + - 2>&1 + - --scheduler-name=volcano + - --log_dir=/tmp/log + - --logtostderr=false + - --log_file_max_size=100 + - --log_file=/tmp/log/scheduler.log + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_scheduler-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: scheduler-logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + - name: conf + #容器里配置文件存放路径 + mountPath: /volcano.scheduler/volcano-scheduler-pf.conf + #容器里配置文件名称 + subPath: volcano-scheduler-pf.conf + initContainers: volumes: - - name: scheduler-config - configMap: - name: volcano-scheduler-configmap ---- -# Source: volcano/templates/scheduling_v1beta1_podgroup.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: podgroups.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: PodGroup - listKind: PodGroupList - plural: podgroups - shortNames: - - pg - - podgroup-v1beta1 - singular: podgroup - scope: Namespaced - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - description: PodGroup is a collection of Pod; used for batch workload. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the pod group. - More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' - properties: - minMember: - description: MinMember defines the minimal number of members/tasks - to run the pod group; if there's not enough resources to start all - tasks, the scheduler will not start anyone. - format: int32 - type: integer - minResources: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: MinResources defines the minimal resource of members/tasks - to run the pod group; if there's not enough resources to start all - tasks, the scheduler will not start anyone. - type: object - minTaskMember: - additionalProperties: - format: int32 - type: integer - description: MinTaskMember defines the minimal number of pods to run - each task in the pod group; if there's not enough resources to start - each task, the scheduler will not start anyone. - type: object - priorityClassName: - description: If specified, indicates the PodGroup's priority. "system-node-critical" - and "system-cluster-critical" are two special keywords which indicate - the highest priorities with the former being the highest priority. - Any other name must be defined by creating a PriorityClass object - with that name. If not specified, the PodGroup priority will be - default or zero if there is no default. - type: string - queue: - description: Queue defines the queue to allocate resource for PodGroup; - if queue does not exist, the PodGroup will not be scheduled. Defaults - to `default` Queue with the lowest weight. - type: string - type: object - status: - description: Status represents the current information about a pod group. - This data may not be up to date. - properties: - conditions: - description: The conditions of PodGroup. - items: - description: PodGroupCondition contains details for the current - state of this pod group. - properties: - lastTransitionTime: - description: Last time the phase transitioned from another to - current phase. - format: date-time - type: string - message: - description: Human-readable message indicating details about - last transition. - type: string - reason: - description: Unique, one-word, CamelCase reason for the phase's - last transition. - type: string - status: - description: Status is the status of the condition. - type: string - transitionID: - description: The ID of condition transition. - type: string - type: - description: Type is the type of the condition - type: string - type: object - type: array - failed: - description: The number of pods which reached phase Failed. - format: int32 - type: integer - phase: - description: Current phase of PodGroup. - type: string - running: - description: The number of actively running pods. - format: int32 - type: integer - succeeded: - description: The number of pods which reached phase Succeeded. - format: int32 - type: integer - type: object - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] + - name: scheduler-logdir + hostPath: + path: /mnt/log/volcano/scheduler + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: conf + configMap: + name: volcano-scheduler --- -# Source: volcano/templates/scheduling_v1beta1_queue.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: queues.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: Queue - listKind: QueueList - plural: queues - shortNames: - - q - - queue-v1beta1 - singular: queue - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - description: Queue is a queue of PodGroup. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the queue. More - info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' - properties: - capability: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: ResourceList is a set of (resource name, quantity) pairs. - type: object - reclaimable: - description: Reclaimable indicate whether the queue can be reclaimed - by other queue - type: boolean - weight: - format: int32 - type: integer - type: object - status: - description: The status of queue. - properties: - inqueue: - description: The number of `Inqueue` PodGroup in this queue. - format: int32 - type: integer - pending: - description: The number of 'Pending' PodGroup in this queue. - format: int32 - type: integer - running: - description: The number of 'Running' PodGroup in this queue. - format: int32 - type: integer - state: - description: State is state of queue - type: string - unknown: - description: The number of 'Unknown' PodGroup in this queue. - format: int32 - type: integer - type: object - type: object - served: true - storage: true - subresources: - status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-job.yaml +apiVersion: batch/v1 +kind: Job metadata: + #文件里的所有volcano-admission-init、volcano_admission_init都替换成实际名称 + name: volcano-admission-init + labels: + app: volcano-admission-init + chart: "volcano-admission-init-0.0.8-rrm1o4" + release: "volcano" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + app.kubernetes.io/name: 'volcano-admission-init' + app: volcano-admission-init annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: elasticresourcequotas.scheduling.volcano.sh + reloader.stakater.com/auto: "false" spec: - group: scheduling.volcano.sh - names: - kind: ElasticResourceQuota - listKind: ElasticResourceQuotaList - plural: elasticresourcequotas - shortNames: - - equota - - equota-v1beta1 - singular: elasticresourcequota - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - type: object - properties: - kind: - type: string - description: >- - Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the - client submits requests to. Cannot be updated. In CamelCase. - More info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - spec: - type: object - properties: - max: - type: object - description: Max is the upper bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - min: - type: object - description: Min is the lower bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - namespace: - type: string - description: >- - namespace defines elastic resource quota belongs to one - namespace - reclaimable: - type: boolean - description: >- - Reclaimable indicate whether the elastic quota can be - reclaimed by other elastic resource quota - hardwareTypes: - type: array - items: - type: string - description: >- - HardwareTypes defines hardware types of elastic resource - quota - description: >- - Specification of the desired behavior of the - ElasticResourceQuota. More info: - https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status - status: - type: object - properties: - used: - type: object - description: Used resource of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - isLeaf: - type: boolean - description: IsLeaf defines whether elastic resource quota is leaf or not - queueName: - type: string - description: QueueName indicate bound queue - description: The status of ElasticResourceQuota. - metadata: - type: object - apiVersion: - type: string - description: >- - APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the - latest internal value, and may reject unrecognized values. More - info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - description: Elastic Resource Quota - served: true - storage: true - subresources: - status: {} - additionalPrinterColumns: - - name: Age - type: date - priority: 0 - jsonPath: .metadata.creationTimestamp - - name: Leaf - type: boolean - priority: 1 - jsonPath: .status.isLeaf - - name: QueueName - type: string - priority: 2 - description: The name of bound queue - jsonPath: .status.queueName - - name: Reclaim - type: boolean - priority: 3 - jsonPath: .spec.reclaimable - - name: Namespace - type: string - priority: 4 - description: The related of namespace - jsonPath: .spec.namespace - - name: HardwareTypes - type: string - priority: 5 - jsonPath: .spec.hardwareTypes - conversion: - strategy: None + backoffLimit: 3 + completions: 1 + parallelism: 1 + activeDeadlineSeconds: 120 + ttlSecondsAfterFinished: 100 + template: + metadata: + labels: + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + app.kubernetes.io/name: 'volcano-admission-init' + spec: + serviceAccountName: volcano-admission + containers: + - name: volcano-admission-init + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc3" + imagePullPolicy: "IfNotPresent" + command: + - ./gen-admission-secret.sh + - --service + - volcano-admission-service + - --namespace + - $(K8Sns) + - --secret + - volcano-admission-secret + env: + - name: "K8Sns" + valueFrom: + fieldRef: + fieldPath: metadata.namespace + securityContext: + privileged: false + #服务的环境变量,list形式,根据服务情况增加或删减 + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + initContainers: + volumes: + # 集群已存在的configMap和secret + restartPolicy: OnFailure --- +# Source: pfchart/charts/volcano-scheduler/templates/high.yaml apiVersion: scheduling.k8s.io/v1 description: Used for critical pods that must not be moved from their current node. kind: PriorityClass metadata: - name: high - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/high + name: high + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/high value: 1000 - --- +# Source: pfchart/charts/volcano-scheduler/templates/low.yaml +apiVersion: scheduling.k8s.io/v1 +description: Used for low-priority Pods that are easily preempted. +kind: PriorityClass +metadata: + name: low + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/low +value: 50 +--- +# Source: pfchart/charts/volcano-scheduler/templates/normal.yaml apiVersion: scheduling.k8s.io/v1 description: Used for normal pods. +globalDefault: true kind: PriorityClass metadata: - name: normal - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/normal + name: normal + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/normal value: 100 - --- +# Source: pfchart/charts/volcano-scheduler/templates/very-high.yaml apiVersion: scheduling.k8s.io/v1 -description: Used for low-priority Pods that are easily preempted. +description: Used for system critical pods that must not be moved from their current node. kind: PriorityClass metadata: - name: low - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/low -value: 50 - + name: very-high + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/very-high +value: 2000 +--- +# Source: pfchart/charts/volcano-scheduler/templates/very-low.yaml +apiVersion: scheduling.k8s.io/v1 +description: Used for pods that are easily preempted and unimportant. +kind: PriorityClass +metadata: + name: very-low + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/very-low +value: 10 \ No newline at end of file diff --git a/installer/dockerfile/base/README.md b/installer/dockerfile/base/README.md index 9949e6a50..d795479f8 100644 --- a/installer/dockerfile/base/README.md +++ b/installer/dockerfile/base/README.md @@ -4,3 +4,7 @@ ```shell docker build -t paddleflow/ubuntu:18.04 . ``` +`glusterfs`镜像 +```shell +docker build -t paddleflow/ubuntu:18.04-glusterfs -f base.gluster . +``` \ No newline at end of file diff --git a/installer/dockerfile/base/base.gluster b/installer/dockerfile/base/base.gluster index 894b9ffe4..90fcc4285 100644 --- a/installer/dockerfile/base/base.gluster +++ b/installer/dockerfile/base/base.gluster @@ -1,5 +1,4 @@ -FROM ubuntu:18.04 -#FROM ubuntu:latest +FROM ubuntu:latest # unsupport latest in our pr-test cluster, it will be update to latest once cluster updated ENV DEBIAN_FRONTEND=noninteractive @@ -7,4 +6,4 @@ RUN apt-get update && \ apt-get install -y tini && ln /usr/bin/tini /sbin/tini && \ apt-get install -y libfuse-dev fuse gcc automake autoconf libtool make && \ apt-get install -y tzdata && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ - apt-get install -y glusterfs-server + apt-get install -y glusterfs-server \ No newline at end of file diff --git a/installer/dockerfile/paddleflow-csi-plugin/Dockerfile.gluster b/installer/dockerfile/paddleflow-csi-plugin/Dockerfile.gluster index f2986ef4b..7c14f958c 100644 --- a/installer/dockerfile/paddleflow-csi-plugin/Dockerfile.gluster +++ b/installer/dockerfile/paddleflow-csi-plugin/Dockerfile.gluster @@ -7,4 +7,4 @@ ADD output/bin/pfs-fuse $WORKDIR/pfs-fuse ADD output/bin/cache-worker $WORKDIR/cache-worker ADD output/bin/mount.sh $WORKDIR/mount.sh -WORKDIR /home/paddleflow +WORKDIR /home/paddleflow \ No newline at end of file diff --git a/installer/dockerfile/paddleflow-server/Dockerfile b/installer/dockerfile/paddleflow-server/Dockerfile index e918768ff..56e0063ec 100644 --- a/installer/dockerfile/paddleflow-server/Dockerfile +++ b/installer/dockerfile/paddleflow-server/Dockerfile @@ -1,4 +1,4 @@ -FROM paddleflow/ubuntu:18.04 +FROM paddleflow/ubuntu:latest ENV WORKDIR /home/paddleflow ADD output/bin/paddleflow $WORKDIR/server/ diff --git a/installer/dockerfile/paddleflow-server/Dockerfile-gluster b/installer/dockerfile/paddleflow-server/Dockerfile-gluster new file mode 100644 index 000000000..f95b5add5 --- /dev/null +++ b/installer/dockerfile/paddleflow-server/Dockerfile-gluster @@ -0,0 +1,6 @@ +FROM paddleflow/ubuntu:18.04-glusterfs + +ENV WORKDIR /home/paddleflow +ADD output/bin/paddleflow $WORKDIR/server/ +RUN groupadd paddleflow && useradd -d /home/paddleflow -g paddleflow paddleflow && chown -R paddleflow:paddleflow $WORKDIR/server +USER paddleflow \ No newline at end of file diff --git a/installer/paddleflow-deployment-before-v1-18.yaml b/installer/paddleflow-deployment-before-v1-18.yaml index b40d0a5da..5dff296d9 100644 --- a/installer/paddleflow-deployment-before-v1-18.yaml +++ b/installer/paddleflow-deployment-before-v1-18.yaml @@ -1,379 +1,242 @@ +--- apiVersion: v1 kind: Namespace metadata: name: paddleflow --- +# Source: pfchart/charts/paddleflow-server/templates/ServiceAccount-paddleflow-server.yaml apiVersion: v1 kind: ServiceAccount metadata: - name: csi-node-sa - namespace: paddleflow - + creationTimestamp: null + name: paddleflow-server + namespace: 'paddleflow' --- -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/pfs-csi-plugin/templates/ServiceAccount-csi-node-sa.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - name: paddleflow-csi-plugin-clusterrole -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete", "patch" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [""] - resources: ["nodes/proxy"] - verbs: ["get", "list", "watch", "update", "patch"] - + creationTimestamp: null + name: csi-node-sa + namespace: 'paddleflow' --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ServiceAccount-pfs-csi-provisioner.yaml apiVersion: v1 kind: ServiceAccount metadata: + creationTimestamp: null name: pfs-csi-provisioner - namespace: paddleflow - + namespace: 'paddleflow' --- -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-admission/templates/ServiceAccount-volcano-admission.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - name: external-provisioner-runner -rules: - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "update"] - - apiGroups: ["storage.k8s.io"] - resources: ["storageclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["list", "watch", "create", "update", "patch"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshots"] - verbs: ["get", "list"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshotcontents"] - verbs: ["get", "list"] - - apiGroups: ["storage.k8s.io"] - resources: ["csinodes"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["get", "list", "watch"] - + creationTimestamp: null + name: volcano-admission + namespace: 'paddleflow' --- -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-controller/templates/ServiceAccount-volcano-controllers.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - name: csi-provisioner-role -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow -roleRef: - kind: ClusterRole - name: external-provisioner-runner - apiGroup: rbac.authorization.k8s.io - + creationTimestamp: null + name: volcano-controllers + namespace: 'paddleflow' --- -kind: Role -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-scheduler/templates/ServiceAccount-volcano-scheduler.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - namespace: paddleflow - name: external-provisioner-cfg -rules: - - apiGroups: [""] - resources: ["endpoints"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - - apiGroups: ["coordination.k8s.io"] - resources: ["leases"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - + creationTimestamp: null + name: volcano-scheduler + namespace: 'paddleflow' --- -kind: RoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: csi-provisioner-role-cfg - namespace: paddleflow -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow -roleRef: - kind: Role - name: external-provisioner-cfg - apiGroup: rbac.authorization.k8s.io - + labels: + app: 'paddleflow-server' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'paddleflow-server' + chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + heritage: 'Helm' + release: 'paddleflow' + name: 'paddleflow-server' +data: {} --- -# ServiceAccount for paddleflow-server +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-secret.yaml +kind: Secret apiVersion: v1 -kind: ServiceAccount metadata: - name: paddleflow-server - namespace: paddleflow - + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'paddleflow' + name: 'pfs-csi-plugin' +data: {} --- -# ClusterRole for paddleflow-server -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-server -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods", "pods/log" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims", "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create", "delete" ] - - apiGroups: [ "" ] - resources: [ "namespaces" ] - verbs: [ "get", "list" ] - - apiGroups: [""] - resources: ["nodes", "nodes/proxy"] - verbs: ["get", "list", "watch"] - - apiGroups: ["sparkoperator.k8s.io"] - resources: ["sparkapplications", "sparkapplications/status", "scheduledsparkapplications", "scheduledsparkapplications/status" ] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["batch.paddlepaddle.org"] - resources: ["paddlejobs", "paddlejobs/finalizers", "paddlejobs/status"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups", "queues", "queues/status", "elasticresourcequotas", "elasticresourcequotas/status"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["bus.volcano.sh"] - resources: ["commands"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs", "jobs/status", "jobs/finalizers"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["argoproj.io"] - resources: ["workflowtemplates", "workflowtemplates/finalizers", "clusterworkflowtemplates", "clusterworkflowtemplates/finalizers"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["kubeflow.org"] - resources: ["*"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'volcano' + name: 'pfs-csi-provisioner' +data: {} --- -# ClusterRoleBinding for paddleflow-server -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-server -subjects: - - kind: ServiceAccount - name: paddleflow-server - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-server - apiGroup: rbac.authorization.k8s.io + labels: + app: 'volcano-admission-init' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission-init' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission-init' +data: {} --- -kind: Service +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-secret.yaml +kind: Secret apiVersion: v1 metadata: - name: pfs-csi-provisioner - labels: - app: pfs-csi-provisioner -spec: - selector: - app: pfs-csi-provisioner - ports: - - name: dummy - port: 12345 - + labels: + app: 'volcano-admission' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission' +data: {} --- -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-csi-node-binding -subjects: - - kind: ServiceAccount - name: csi-node-sa - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-csi-plugin-clusterrole - apiGroup: rbac.authorization.k8s.io - + labels: + app: 'volcano-controller' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-controller' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-controller' +data: {} --- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-secret.yaml +kind: Secret apiVersion: v1 +metadata: + labels: + app: 'volcano-scheduler' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-scheduler' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-scheduler' +data: {} +--- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'paddleflow-server' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'paddleflow-server' + chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + heritage: 'Helm' + release: 'paddleflow' + name: 'paddleflow-server' data: - default_pv.yaml: |2- - kind: PersistentVolume - metadata: - name: pfs-$(pfs.fs.id)-$(namespace)-pv - annotations: - pv.kubernetes.io/provisioned-by: paddleflowstorage - spec: - accessModes: - - ReadWriteMany - persistentVolumeReclaimPolicy: Delete - storageClassName: paddleflowstorage - capacity: - storage: 400Gi - csi: - driver: paddleflowstorage - fsType: ext4 - volumeAttributes: - pfs.fs.id: $(pfs.fs.id) - pfs.fs.info: $(pfs.fs.info) - pfs.fs.cache: $(pfs.fs.cache) - pfs.server: $(pfs.server) - volumeHandle: pfs-$(pfs.fs.id)-$(namespace)-pv - default_pvc.yaml: |2- - kind: PersistentVolumeClaim - metadata: - name: pfs-$(pfs.fs.id)-pvc - namespace: $(namespace) - spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: 100Gi - storageClassName: paddleflowstorage - volumeMode: Filesystem - volumeName: pfs-$(pfs.fs.id)-$(namespace)-pv - paddle_collective.yaml: |2 - apiVersion: batch.paddlepaddle.org/v1 - kind: PaddleJob - metadata: - name: default-name - spec: - cleanPodPolicy: Never - worker: - replicas: 2 - template: - spec: - containers: - - name: worker-name - image: paddleflow/demo-resnet:v1 - paddle_ps.yaml: |- - apiVersion: batch.paddlepaddle.org/v1 - kind: PaddleJob - metadata: - name: default-name - spec: - withGloo: 1 - intranet: PodIP - cleanPodPolicy: OnCompletion - worker: - replicas: 2 - template: + default_pv.yaml: |4- + kind: PersistentVolume + metadata: + name: pfs-$(pfs.fs.id)-$(namespace)-pv + annotations: + pv.kubernetes.io/provisioned-by: paddleflowstorage spec: - containers: - - name: worker-name - image: paddleflow/demo-wide-and-deep:v1 - ps: - replicas: 2 - template: + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Delete + storageClassName: paddleflowstorage + capacity: + storage: 400Gi + csi: + driver: paddleflowstorage + fsType: ext4 + volumeAttributes: + pfs.fs.id: $(pfs.fs.id) + pfs.server: $(pfs.server) + volumeHandle: pfs-$(pfs.fs.id)-$(namespace)-pv + default_pvc.yaml: |4- + kind: PersistentVolumeClaim + metadata: + name: pfs-$(pfs.fs.id)-pvc + namespace: $(namespace) spec: - containers: - - name: ps-name - image: paddleflow/demo-wide-and-deep:v1 - paddleserver.yaml: |2 - database: - driver: sqlite - host: 127.0.0.1 - port: 3306 - user: paddleflow - password: paddleflow - database: paddleflow - - log: - dir: ./ - filePrefix: log - level: INFO - maxKeepDays: 7 - maxFileNum: 7 - maxFileSizeInMB: 100 - isCompress: true - - traceLog: - dir: ./ - filePrefix: trace-log - level: INFO - maxKeepDays: 7 - maxFileNum: 7 - maxFileSizeInMB: 100 - isCompress: true - timeout: 2h - maxCacheSize: 10000 - syncInterval: 30s - deleteInterval: 10s - - apiServer: - host: "paddleflow-server" - port: 8999 - tokenExpirationHour: -1 - - fs: - defaultPVPath: "./config/fs/default_pv.yaml" - defaultPVCPath: "./config/fs/default_pvc.yaml" - servicePort: 8999 - - job: - reclaim: - isCleanJob: true - isSkipCleanFailedJob: false - succeededJobTTLSeconds: 600 - failedJobTTLSeconds: 3600 - schedulerName: volcano - clusterSyncPeriod: 30 - defaultJobYamlDir: "./config/server/default/job" - isSingleCluster: true - - pipeline: pipeline - - imageRepository: - server: "" - namespace: "" - username: "" - password: "" - concurrency: 10 - removeLocalImage: true - - monitor: - server: "" - - metrics: - enable: true - port: 8231 - - single.yaml: |- - apiVersion: v1 - kind: Pod - metadata: - name: default-name - namespace: default - spec: - containers: - - image: nginx - imagePullPolicy: Always - name: job-default-name - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - dnsPolicy: ClusterFirst - enableServiceLinks: true - priorityClassName: normal - restartPolicy: Always - schedulerName: volcano - securityContext: {} - serviceAccount: default - serviceAccountName: default - terminationGracePeriodSeconds: 30 - spark.yaml: |2 + accessModes: + - ReadWriteMany + resources: + requests: + storage: 100Gi + storageClassName: paddleflowstorage + volumeMode: Filesystem + volumeName: pfs-$(pfs.fs.id)-$(namespace)-pv + job_template.yaml: | + apiVersion: v1 + kind: Pod + metadata: + name: default-name + namespace: default + spec: + containers: + - image: nginx + imagePullPolicy: IfNotPresent + name: job-default-name + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + dnsPolicy: ClusterFirst + enableServiceLinks: true + priorityClassName: normal + restartPolicy: Never + schedulerName: volcano + securityContext: {} + serviceAccount: default + serviceAccountName: default + terminationGracePeriodSeconds: 30 + # single-job + --- apiVersion: sparkoperator.k8s.io/v1beta2 kind: SparkApplication metadata: @@ -382,770 +245,1733 @@ data: spec: driver: serviceAccount: spark + terminationGracePeriodSeconds: 30 executor: - image: paddleflow/spark:pyml-2.8.0 + terminationGracePeriodSeconds: 30 + image: imagePullPolicy: IfNotPresent - mainApplicationFile: local:///opt/spark/examples/jars/spark-examples_2.11-2.4.0.jar - mainClass: org.apache.spark.examples.SparkPi + mainApplicationFile: + mainClass: mode: cluster restartPolicy: onSubmissionFailureRetries: 3 onSubmissionFailureRetryInterval: 5 type: Never sparkConf: - spark.driver.extraJavaOptions: -Dsun.zip.disableMemoryMapping=true - spark.executor.extraJavaOptions: -Dsun.zip.disableMemoryMapping=true spark.hadoop.mapreduce.fileoutputcommitter.algorithm.version: "2" sparkVersion: 3.0.0 type: Scala batchSchedulerOptions: - queue: default - priorityClass: normal - telegraf.conf: | - [global_tags] - vcjob_collective.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + queue: + priorityClass: + # spark-job + --- + apiVersion: batch.paddlepaddle.org/v1 + kind: PaddleJob metadata: - name: vcJobName + name: default-name spec: - minAvailable: 2 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - plugins: - ssh: [] - env: [] - svc: [] - maxRetry: 5 - queue: default - tasks: - - replicas: 2 - name: "task" + withGloo: 1 + intranet: PodIP + cleanPodPolicy: OnCompletion + worker: + replicas: 2 + template: + spec: + containers: + - name: paddle + image: registry.baidubce.com/paddle-operator/demo-wide-and-deep:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + ps: + replicas: 2 + template: + spec: + containers: + - name: paddle + image: registry.baidubce.com/paddle-operator/demo-wide-and-deep:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + # paddle-ps-job + --- + apiVersion: batch.paddlepaddle.org/v1 + kind: PaddleJob + metadata: + name: default-name + spec: + cleanPodPolicy: Never + worker: + replicas: 2 + template: + spec: + containers: + - name: worker-name + image: registry.baidubce.com/paddle-operator/demo-resnet:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + # paddle-collective-job + --- + apiVersion: "kubeflow.org/v1" + kind: "PyTorchJob" + metadata: + name: "pytorch-dist-sendrecv" + spec: + pytorchReplicaSpecs: + Master: + replicas: 1 + restartPolicy: Never + template: + spec: + containers: + - name: pytorch + command: + - /bin/sh + - -c + - sleep 10 + image: paddleflow/pytorch-dist-sendrecv-test:1.12.0 + Worker: + replicas: 1 + restartPolicy: Never template: - metadata: - name: templateName spec: containers: - - image: collective-container - imagePullPolicy: IfNotPresent - name: defaultContainer - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob - vcjob_pod.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + - name: pytorch + command: + - /bin/sh + - -c + - sleep 10 + image: paddleflow/pytorch-dist-sendrecv-test:1.12.0 + # pytorch-ps-job + --- + apiVersion: "kubeflow.org/v1" + kind: "TFJob" metadata: - name: vcJobName + name: "tf-mnist-dist" spec: - minAvailable: 1 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - maxRetry: 5 - queue: default - tasks: - - replicas: 1 - name: "task" + tfReplicaSpecs: + PS: + replicas: 1 + restartPolicy: Never template: - metadata: - name: pod spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: container - resources: - requests: - cpu: "1" - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob - vcjob_ps.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + - name: tensorflow + image: tf-mnist-dist:1.2 + command: + - "python" + - "/var/tf_dist_mnist/dist_mnist.py" + - "--num_gpus=0" + # faster trainning + - "--train_steps=1" + Worker: + replicas: 1 + restartPolicy: Never + template: + spec: + containers: + - name: tensorflow + image: tf-mnist-dist:1.2 + command: + - "python" + - "/var/tf_dist_mnist/dist_mnist.py" + - "--num_gpus=0" + - "--train_steps=1" + # tensorflow-ps-job + --- + apiVersion: ray.io/v1alpha1 + kind: RayJob metadata: - name: vcJobName + name: rayjob-sample spec: - minAvailable: 3 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - plugins: - ssh: [] - env: [] - svc: [] - maxRetry: 5 - queue: default - tasks: - - replicas: 1 - name: "ps" - ports: - - ps-port: 8001 + entrypoint: sleep 60 + shutdownAfterJobFinishes: true + rayClusterSpec: + rayVersion: '2.0.0' + enableInTreeAutoscaling: true + headGroupSpec: + serviceType: ClusterIP + replicas: 1 + rayStartParams: + node-ip-address: $MY_POD_IP + block: 'true' template: metadata: - name: web + labels: + rayCluster: raycluster-heterogeneous + rayNodeType: head + groupName: headgroup + annotations: + key: value spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: ps + - name: ray-head + image: rayproject/ray:2.0.0 + env: + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + workerGroupSpecs: + - replicas: 1 + minReplicas: 1 + maxReplicas: 5 + groupName: small-group + rayStartParams: + node-ip-address: $MY_POD_IP + block: 'true' + template: + metadata: + labels: + key: value + annotations: + key: value + spec: + initContainers: + - name: init-myservice + image: busybox:1 + command: [ 'sh', '-c', "until nslookup $RAY_IP.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for myservice; sleep 2; done" ] + containers: + - name: machine-learning + image: rayproject/ray:2.0.0 + env: + - name: RAY_DISABLE_DOCKER_CPU_WARNING + value: "1" + - name: TYPE + value: "worker" + - name: CPU_REQUEST + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: requests.cpu + - name: CPU_LIMITS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: limits.cpu + - name: MEMORY_LIMITS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: limits.memory + - name: MEMORY_REQUESTS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: requests.memory + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + ports: + - containerPort: 80 + name: client + lifecycle: + preStop: + exec: + command: [ "/bin/sh","-c","ray stop" ] + # ray-job + --- + apiVersion: kubeflow.org/v1 + kind: MPIJob + metadata: + name: tensorflow-mnist + spec: + slotsPerWorker: 1 + runPolicy: + cleanPodPolicy: Running + mpiReplicaSpecs: + Launcher: + replicas: 1 + template: + spec: + containers: + - image: horovod/horovod:0.20.0-tf2.3.0-torch1.6.0-mxnet1.5.0-py3.7-cpu + name: mpi + command: + - mpirun + args: + - -np + - "2" + - --allow-run-as-root + - -bind-to + - none + - -map-by + - slot + - -x + - LD_LIBRARY_PATH + - -x + - PATH + - -mca + - pml + - ob1 + - -mca + - btl + - ^openib + - python + - /examples/tensorflow2_mnist.py resources: - requests: - cpu: "1" - restartPolicy: OnFailure - - replicas: 2 - name: "worker" - ports: - - worker-port: 8001 + limits: + cpu: 1 + memory: 2Gi + Worker: + replicas: 2 template: - metadata: - name: web spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: worker + - image: horovod/horovod:0.20.0-tf2.3.0-torch1.6.0-mxnet1.5.0-py3.7-cpu + name: mpi resources: - requests: - cpu: "1" - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob + limits: + cpu: 2 + memory: 4Gi + # mpi-job + --- + paddleserver.yaml: | + database: + driver: sqlite + host: mysql-standalone + port: 3306 + user: root + password: Paddle@2022 + database: paddleflow + monitor: + server: "http://127.0.0.1:8395" + metrics: + port: 8231 + enable: true + log: + dir: ./ + filePrefix: log + level: INFO + maxKeepDays: 7 + maxFileNum: 7 + maxFileSizeInMB: 100 + isCompress: true + traceLog: + dir: ./ + filePrefix: trace-log + level: INFO + maxKeepDays: 7 + maxFileNum: 7 + maxFileSizeInMB: 100 + isCompress: true + timeout: 2h + maxCacheSize: 10000 + syncInterval: 30s + deleteInterval: 10s + apiServer: + host: paddleflow-server + port: 8999 + tokenExpirationHour: -1 + fs: + defaultPVPath: "./config/fs/default_pv.yaml" + defaultPVCPath: "./config/fs/default_pvc.yaml" + servicePort: 8999 + job: + reclaim: + isCleanJob: true + isSkipCleanFailedJob: false + succeededJobTTLSeconds: 3600 + failedJobTTLSeconds: 36000 + schedulerName: volcano + clusterSyncPeriod: 30 + defaultJobYamlDir: "./config/server/default/job" + defaultJobYamlPath: "./config/server/default/job/job_template.yaml" + isSingleCluster: true + pipeline: pipeline + imageRepository: + server: "" + namespace: "" + username: "" + password: "" + concurrency: 10 + removeLocalImage: true + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-configmap.yaml kind: ConfigMap +apiVersion: v1 metadata: + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'paddleflow' + name: 'pfs-csi-plugin' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'paddleflow' + name: 'pfs-csi-provisioner' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission-init' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission-init' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-admission-init' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-admission' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-controller' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-controller' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-controller' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-scheduler' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-scheduler' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-scheduler' +data: + telegraf.conf: |4 + [global_tags] + volcano-scheduler-pf.conf: |4 + actions: "enqueue, allocate, preemptpf, backfill" + tiers: + - plugins: + - name: priority + enableJobOrder: true + - name: gang + - name: conformance + - plugins: + - name: kmpredicates + arguments: + kmpredicate.GPUTopoEnable: true + kmpredicate.AvailableGPUTypes: "baidu.com/gpu_p40_8,baidu.com/v100_cgpu,baidu.com/p40_cgpu" + - name: proportionpf + enableJobEnqueued: true + - name: nodeorder + - name: binpack + arguments: + binpack.weight: 10 + binpack.cpu: 3 + binpack.memory: 1 + binpack.resources: baidu.com/p40_cgpu, baidu.com/p40_cgpu_core, baidu.com/p40_cgpu_memory, baidu.com/v100_cgpu, baidu.com/v100_cgpu_core, baidu.com/v100_cgpu_memory + binpack.resources.baidu.com/v100_cgpu_memory: 6 + binpack.resources.baidu.com/p40_cgpu: 0 + binpack.resources.baidu.com/p40_cgpu_core: 0 + binpack.resources.baidu.com/p40_cgpu_memory: 6 +binaryData: {} +--- +# Source: pfchart/charts/paddleflow-server/templates/ClusterRole-paddleflow-server.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null name: paddleflow-server +rules: +- apiGroups: + - "" + resources: + - events + - pods + - pods/log + - services + - persistentvolumeclaims + - persistentvolumes + verbs: + - '*' +- apiGroups: + - apps + resources: + - '*' + verbs: + - '*' +- apiGroups: + - "" + resources: + - '*' + verbs: + - get + - list + - watch +- apiGroups: + - sparkoperator.k8s.io + - batch.paddlepaddle.org + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + - bus.volcano.sh + - batch.volcano.sh + - argoproj.io + - kubeflow.org + - ray.io + resources: + - '*' + verbs: + - '*' +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRole-paddleflow-csi-plugin-clusterrole.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: paddleflow-csi-plugin-clusterrole +rules: +- apiGroups: + - "" + resources: + - events + verbs: + - get + - list + - watch + - create + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete + - patch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create + - update + - bind + - patch +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - nodes/proxy + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRole-external-provisioner-runner.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: external-provisioner-runner +rules: +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - events + verbs: + - list + - watch + - create + - update + - patch +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshots + verbs: + - get + - list +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshotcontents + verbs: + - get + - list +- apiGroups: + - storage.k8s.io + resources: + - csinodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/volcano-admission/templates/ClusterRole-volcano-admission.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: volcano-admission +rules: +- apiGroups: + - "" + resources: + - configmaps + - nodes + - namespaces + verbs: + - get + - list + - watch +- apiGroups: + - admissionregistration.k8s.io + resources: + - mutatingwebhookconfigurations + - validatingwebhookconfigurations + verbs: + - get + - list + - watch + - create + - update +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests + verbs: + - get + - list + - create + - delete +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests/approval + verbs: + - create + - update +- apiGroups: + - "" + resources: + - secrets + verbs: + - create + - get + - patch +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - queues + verbs: + - get + - list +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - elasticresourcequotas + - elasticresourcequotas/status + verbs: + - get + - list + - update +- apiGroups: + - "" + resources: + - services + verbs: + - get +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/volcano-controller/templates/ClusterRole-volcano-controllers.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: volcano-controllers +rules: +- apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - create + - get + - list + - watch + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs + verbs: + - get + - list + - watch + - update + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs/status + - jobs/finalizers + verbs: + - update + - patch +- apiGroups: + - bus.volcano.sh + resources: + - commands + verbs: + - get + - list + - watch + - delete +- apiGroups: + - "" + resources: + - events + verbs: + - create + - list + - watch + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - services + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - "" + resources: + - secrets + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + - queues + - queues/status + - elasticresourcequotas + - elasticresourcequotas/status + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - scheduling.k8s.io + resources: + - priorityclasses + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - networking.k8s.io + resources: + - networkpolicies + verbs: + - get + - create + - delete +--- +# Source: pfchart/charts/volcano-scheduler/templates/ClusterRole-volcano-scheduler.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: volcano-scheduler +rules: +- apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - create + - get + - list + - watch + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs + verbs: + - get + - list + - watch + - update + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs/status + verbs: + - update + - patch +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - "" + resources: + - events + verbs: + - create + - list + - watch + - update + - patch +- apiGroups: + - "" + resources: + - pods + - pods/status + verbs: + - create + - get + - list + - watch + - update + - patch + - bind + - updateStatus + - delete +- apiGroups: + - "" + resources: + - pods/binding + verbs: + - create +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - list + - watch + - get +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - list + - watch + - get +- apiGroups: + - "" + resources: + - namespaces + verbs: + - list + - watch +- apiGroups: + - "" + resources: + - resourcequotas + verbs: + - list + - watch + - create + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - list + - watch +- apiGroups: + - policy + resources: + - poddisruptionbudgets + verbs: + - list + - watch +- apiGroups: + - scheduling.k8s.io + resources: + - priorityclasses + verbs: + - get + - list + - watch +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - queues + - elasticresourcequotas + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + verbs: + - list + - watch + - update +--- +# Source: pfchart/charts/paddleflow-server/templates/ClusterRoleBinding-paddleflow-server.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: paddleflow-server +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-server +subjects: +- kind: ServiceAccount + name: paddleflow-server + namespace: paddleflow +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRoleBinding-csi-plugin-clusterrolebinding.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: csi-plugin-clusterrolebinding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-csi-plugin-clusterrole +subjects: +- kind: ServiceAccount + name: csi-node-sa + namespace: paddleflow +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRoleBinding-csi-provisioner-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: csi-provisioner-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: external-provisioner-runner +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' +--- +# Source: pfchart/charts/volcano-admission/templates/ClusterRoleBinding-volcano-admission-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-admission-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-admission +subjects: +- kind: ServiceAccount + name: volcano-admission + namespace: paddleflow +--- +# Source: pfchart/charts/volcano-controller/templates/ClusterRoleBinding-volcano-controllers-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-controllers-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-controllers +subjects: +- kind: ServiceAccount + name: volcano-controllers + namespace: paddleflow +--- +# Source: pfchart/charts/volcano-scheduler/templates/ClusterRoleBinding-volcano-scheduler-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-scheduler-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-scheduler +subjects: +- kind: ServiceAccount + name: volcano-scheduler namespace: paddleflow --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/Role-external-provisioner-cfg.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + creationTimestamp: null + name: external-provisioner-cfg + namespace: 'paddleflow' +rules: +- apiGroups: + - "" + resources: + - endpoints + verbs: + - get + - watch + - list + - delete + - update + - create +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - get + - watch + - list + - delete + - update + - create +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/RoleBinding-csi-provisioner-role-cfg.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + creationTimestamp: null + name: csi-provisioner-role-cfg + namespace: 'paddleflow' +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: external-provisioner-cfg +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' +--- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-service.yaml apiVersion: v1 kind: Service metadata: name: paddleflow-server - namespace: paddleflow labels: app: paddleflow-server + chart: "paddleflow-server-0.10.61-rrx7rl-tmp" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + app.kubernetes.io/name: 'paddleflow-server' + + annotations: spec: type: NodePort + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 ports: - - port: 8999 - name: listen - targetPort: 8999 - nodePort: 8999 + - name: port-0 + port: 8999 + nodePort: 8999 + protocol: TCP + targetPort: 8999 + - name: port-2 + port: 8231 + nodePort: 8231 + protocol: TCP + targetPort: 8231 selector: app: paddleflow-server --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-service.yaml apiVersion: v1 kind: Service metadata: + name: pfs-csi-provisioner-service labels: - app: paddleflow-server - name: paddleflow-server-metrics - namespace: paddleflow + app: pfs-csi-provisioner + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + + annotations: spec: + type: ClusterIP + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 ports: - - name: metrics - nodePort: 8231 - port: 8231 - targetPort: 8231 - protocol: TCP + - name: port-0 + port: 12345 + protocol: TCP + targetPort: 12345 selector: - app: paddleflow-server + app: pfs-csi-provisioner +--- +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: volcano-admission-service + labels: + app: volcano-admission + chart: "volcano-admission-0.0.21-rrm1l0" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' + + annotations: +spec: type: NodePort + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: + port: 443 + nodePort: 18443 + protocol: TCP + targetPort: 8443 + selector: + app: volcano-admission --- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: volcano-scheduler-service + labels: + app: volcano-scheduler + chart: "volcano-scheduler-0.0.23-rrm1mf" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + + annotations: +spec: + type: ClusterIP + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: port-0 + port: 8080 + protocol: TCP + targetPort: 8080 + selector: + app: volcano-scheduler +--- +kind: ElasticResourceQuota +spec: + max: + cpu: '0' + memory: '0' + min: + cpu: '0' + memory: '0' + namespace: default +metadata: + name: root + labels: + paddleflow.baidu.com/resource-isolation-type: logical +apiVersion: scheduling.volcano.sh/v1beta1 +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-daemonset.yaml apiVersion: apps/v1 -kind: Deployment +kind: DaemonSet metadata: - name: paddleflow-server - namespace: paddleflow + #文件里的所有pfs-csi-plugin、pfs_csi_plugin都替换成实际名称 + name: pfs-csi-plugin labels: - app: paddleflow-server + app: pfs-csi-plugin + chart: "pfs-csi-plugin-0.0.80-rrnwa0" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' + annotations: + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 - replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: - app: paddleflow-server - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate + app: pfs-csi-plugin template: metadata: - creationTimestamp: null labels: - app: paddleflow-server + app: pfs-csi-plugin + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' spec: + dnsPolicy: ClusterFirstWithHostNet + restartPolicy: Always + hostNetwork: true + serviceAccountName: csi-node-sa containers: - - args: - - -c - - cd /home/paddleflow/server && ./paddleflow - command: - - /bin/sh - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + - name: pfs-csi-plugin + image: "paddleflow/csi-driver-registrar:1.2.0" + imagePullPolicy: "IfNotPresent" + lifecycle: + preStop: + exec: + command: + - /bin/sh + - -c + - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock + args: + - --v=5 + - --csi-address=/csi/csi.sock + - --kubelet-registration-path=$(KUBELET_DATA_PATH)/plugins/pfs-csi/csi.sock + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_plugin-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - image: paddleflow/paddleflow-server:1.4.2 - imagePullPolicy: IfNotPresent - name: paddleflow-server - ports: - - containerPort: 8999 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "8G" - cpu: "8000m" - securityContext: - privileged: false - runAsGroup: 1000 - runAsUser: 1000 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /home/paddleflow/server/paddleflow.db - mountPropagation: None - name: paddleflowdb - - mountPath: /home/paddleflow/server/config/server/default/paddleserver.yaml - name: conf - subPath: paddleserver.yaml - - mountPath: /home/paddleflow/server/config/fs/default_pvc.yaml - name: conf - subPath: default_pvc.yaml - - mountPath: /home/paddleflow/server/config/fs/default_pv.yaml - name: conf - subPath: default_pv.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/spark.yaml - name: conf - subPath: spark.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_ps.yaml - name: conf - subPath: vcjob_ps.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_pod.yaml - name: conf - subPath: vcjob_pod.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_collective.yaml - name: conf - subPath: vcjob_collective.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/paddle_collective.yaml - name: conf - subPath: paddle_collective.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/paddle_ps.yaml - name: conf - subPath: paddle_ps.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/single.yaml - name: conf - subPath: single.yaml - dnsPolicy: ClusterFirst - restartPolicy: Always - schedulerName: default-scheduler - serviceAccount: paddleflow-server - serviceAccountName: paddleflow-server - securityContext: - runAsGroup: 1000 - runAsUser: 1000 - terminationGracePeriodSeconds: 30 + + - name: "MOUNT_POINT_INTERVAL_TIME" + value: "10" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: registration-dir + mountPath: /registration + mountPropagation: None + subPath: + + - name: csi-storage-driver + image: "paddleflow/pfs-csi-plugin:1.4.6" + imagePullPolicy: + command: + - /sbin/tini + - -- + - /bin/sh + - -c + - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) + --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow + --log-level=debug + securityContext: + capabilities: + add: + - SYS_ADMIN + privileged: true + runAsGroup: 0 + runAsUser: 0 + resources: + requests: + cpu: "0.5" + memory: 1000Mi + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #env_list + - name: "CSI_ENDPOINT" + value: "unix:///csi/csi.sock" + - name: "DEFAULT_GID_ENV" + value: "601" + - name: "DEFAULT_UID_ENV" + value: "601" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + - name: "CSI_NAMESPACE" + valueFrom: + fieldRef: + fieldPath: metadata.namespace + + - name: "CSI_POD_NAME" + valueFrom: + fieldRef: + fieldPath: metadata.name + + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: + fieldPath: spec.nodeName + #env end + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: mountpoint-dir + mountPath: /var/lib/kubelet/pods + mountPropagation: Bidirectional + subPath: + - name: plugins-dir + mountPath: /var/lib/kubelet/plugins + mountPropagation: Bidirectional + subPath: + - name: paddlefow-csi-log + mountPath: /home/paddleflow/log + mountPropagation: None + subPath: + - name: pfs-mnt + mountPath: /home/paddleflow/mnt + mountPropagation: Bidirectional + subPath: + + #sidecar container messages + initContainers: volumes: - - hostPath: - path: /mnt/paddleflow.db - type: FileOrCreate - name: paddleflowdb - - configMap: - defaultMode: 420 - name: paddleflow-server - name: conf + - name: fuse + hostPath: + path: /dev/fuse + type: File + - name: mountpoint-dir + hostPath: + path: /var/lib/kubelet/pods + type: DirectoryOrCreate + - name: paddlefow-csi-log + hostPath: + path: /home/paddleflow/log + type: DirectoryOrCreate + - name: pfs-mnt + hostPath: + path: /var/lib/kubelet/data/paddleflow-fs/mnt + type: DirectoryOrCreate + - name: plugins-dir + hostPath: + path: /var/lib/kubelet/plugins + type: DirectoryOrCreate + - name: registration-dir + hostPath: + path: /var/lib/kubelet/plugins_registry + type: DirectoryOrCreate + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-deployment.yaml apiVersion: apps/v1 -kind: DaemonSet +kind: Deployment metadata: - name: pfs-csi-plugin - namespace: paddleflow + #文件里的所有paddleflow-server、paddleflow_server都替换成实际名称 + name: paddleflow-server + labels: + app: paddleflow-server + chart: "paddleflow-server-0.10.61-rrx7rl-tmp" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + app.kubernetes.io/name: 'paddleflow-server' + annotations: + reloader.stakater.com/auto: "false" spec: - revisionHistoryLimit: 10 + replicas: 1 selector: matchLabels: - app: pfs-csi-plugin + app: paddleflow-server template: metadata: - creationTimestamp: null labels: - app: pfs-csi-plugin + app: paddleflow-server + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + app.kubernetes.io/name: 'paddleflow-server' spec: + dnsPolicy: ClusterFirst + restartPolicy: Always + securityContext: + runAsGroup: 1000 + runAsUser: 1000 + serviceAccountName: paddleflow-server containers: - - args: - - --v=5 - - --csi-address=/csi/csi.sock - - --kubelet-registration-path=/var/lib/kubelet/plugins/pfs-csi/csi.sock - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: spec.nodeName - - name: MOUNT_POINT_INTERVAL_TIME - value: "10" - image: paddleflow/csi-driver-registrar:1.2.0 - imagePullPolicy: IfNotPresent - lifecycle: - preStop: - exec: - command: - - /bin/sh - - -c - - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock - name: pfs-csi-plugin - resources: {} - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /registration - mountPropagation: None - name: registration-dir - - command: - - tini - - -- - - /bin/sh - - -c - - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) - --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow - --log-level=debug - env: - - name: CSI_ENDPOINT - value: unix:///csi/csi.sock - - name: DEFAULT_GID_ENV - value: "601" - - name: DEFAULT_UID_ENV - value: "601" - - name: KUBELET_DATA_PATH - value: /var/lib/kubelet - - name: CSI_POD_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.name - - name: CSI_NAMESPACE - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.namespace - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + - name: paddleflow-server + image: "paddleflow/paddleflow-server:1.4.6" + imagePullPolicy: "IfNotPresent" + command: + - /bin/sh + args: + #container_args list + - -c + - cd /home/paddleflow/server && ./paddleflow + securityContext: + privileged: false + runAsGroup: 1000 + runAsUser: 1000 + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟paddleflow_server-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - image: paddleflow/pfs-csi-plugin:1.4.2 - imagePullPolicy: IfNotPresent - name: csi-storage-driver - resources: - requests: - cpu: "500m" - memory: 1G - securityContext: - capabilities: - add: - - SYS_ADMIN - privileged: true - runAsGroup: 0 - runAsUser: 0 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /var/lib/kubelet/pods - mountPropagation: Bidirectional - name: mountpoint-dir - - mountPath: /var/lib/kubelet/plugins - mountPropagation: Bidirectional - name: plugins-dir - - mountPath: /home/paddleflow/log - mountPropagation: None - name: paddlefow-csi-log - - mountPath: /home/paddleflow/mnt - mountPropagation: Bidirectional - name: pfs-mnt - dnsPolicy: ClusterFirstWithHostNet - hostNetwork: true - restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: csi-node-sa - serviceAccountName: csi-node-sa - terminationGracePeriodSeconds: 30 + + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/server/default/paddleserver.yaml + #容器里配置文件名称 + subPath: paddleserver.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/fs/default_pvc.yaml + #容器里配置文件名称 + subPath: default_pvc.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/fs/default_pv.yaml + #容器里配置文件名称 + subPath: default_pv.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/server/default/job/job_template.yaml + #容器里配置文件名称 + subPath: job_template.yaml + initContainers: volumes: - - hostPath: - path: /dev/fuse - type: File - name: fuse - - hostPath: - path: /var/lib/kubelet/pods - type: DirectoryOrCreate - name: mountpoint-dir - - hostPath: - path: /home/paddleflow/log - type: DirectoryOrCreate - name: paddlefow-csi-log - - hostPath: - path: /var/lib/kubelet/data/paddleflow-fs/mnt - type: DirectoryOrCreate - name: pfs-mnt - - hostPath: - path: /var/lib/kubelet/plugins - type: DirectoryOrCreate - name: plugins-dir - - hostPath: - path: /var/lib/kubelet/plugins_registry - type: DirectoryOrCreate - name: registration-dir - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir - updateStrategy: - rollingUpdate: - maxUnavailable: 1 - type: RollingUpdate + - name: paddleflowdir + hostPath: + path: /mnt/paddleflow + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: conf + configMap: + name: paddleflow-server --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: - annotations: - app: pfs-csi-provisioner + #文件里的所有pfs-csi-provisioner、pfs_csi_provisioner都替换成实际名称 + name: pfs-csi-provisioner labels: app: pfs-csi-provisioner - name: pfs-csi-provisioner - namespace: paddleflow + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-provisioner - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate template: metadata: - annotations: - app: pfs-csi-provisioner labels: app: pfs-csi-provisioner + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner spec: - affinity: - podAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: app - operator: In - values: - - pfs-csi-plugin - topologyKey: kubernetes.io/hostname - containers: - - args: - - -v=5 - - --csi-address=/csi/csi.sock - - --feature-gates=Topology=true - image: paddleflow/csi-provisioner:1.4.0 - imagePullPolicy: IfNotPresent - name: pfs-csi-provisioner - ports: - - containerPort: 12345 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir dnsPolicy: ClusterFirst restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: pfs-csi-provisioner - serviceAccountName: pfs-csi-provisioner - terminationGracePeriodSeconds: 30 tolerations: - effect: NoSchedule operator: Exists - effect: NoExecute operator: Exists - volumes: - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir - ---- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: elasticresourcequotas.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: ElasticResourceQuota - listKind: ElasticResourceQuotaList - plural: elasticresourcequotas - shortNames: - - equota - - equota-v1beta1 - singular: elasticresourcequota - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - type: object - properties: - kind: - type: string - description: >- - Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the - client submits requests to. Cannot be updated. In CamelCase. - More info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - spec: - type: object - properties: - max: - type: object - description: Max is the upper bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - min: - type: object - description: Min is the lower bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - namespace: - type: string - description: >- - namespace defines elastic resource quota belongs to one - namespace - reclaimable: - type: boolean - description: >- - Reclaimable indicate whether the elastic quota can be - reclaimed by other elastic resource quota - hardwareTypes: - type: array - items: - type: string - description: >- - HardwareTypes defines hardware types of elastic resource - quota - description: >- - Specification of the desired behavior of the - ElasticResourceQuota. More info: - https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status - status: - type: object - properties: - used: - type: object - description: Used resource of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - isLeaf: - type: boolean - description: IsLeaf defines whether elastic resource quota is leaf or not - queueName: - type: string - description: QueueName indicate bound queue - description: The status of ElasticResourceQuota. - metadata: - type: object - apiVersion: - type: string - description: >- - APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the - latest internal value, and may reject unrecognized values. More - info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - description: Elastic Resource Quota - served: true - storage: true - subresources: - status: {} - additionalPrinterColumns: - - name: Age - type: date - priority: 0 - jsonPath: .metadata.creationTimestamp - - name: Leaf - type: boolean - priority: 1 - jsonPath: .status.isLeaf - - name: QueueName - type: string - priority: 2 - description: The name of bound queue - jsonPath: .status.queueName - - name: Reclaim - type: boolean - priority: 3 - jsonPath: .spec.reclaimable - - name: Namespace - type: string - priority: 4 - description: The related of namespace - jsonPath: .spec.namespace - - name: HardwareTypes - type: string - priority: 5 - jsonPath: .spec.hardwareTypes - conversion: - strategy: None + affinity: + podAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: app + operator: In + values: + - pfs-csi-plugin + topologyKey: kubernetes.io/hostname + serviceAccountName: pfs-csi-provisioner + containers: + - name: pfs-csi-provisioner + image: "paddleflow/csi-provisioner:1.4.0" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - -v=5 + - --csi-address=/csi/csi.sock + - --feature-gates=Topology=true + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_provisioner-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + initContainers: + volumes: + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- ---- -apiVersion: v1 -kind: Namespace -metadata: - name: volcano-system ---- -apiVersion: v1 -kind: Namespace -metadata: - name: volcano-monitoring ---- -# Source: volcano/templates/admission.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-admission - namespace: volcano-system ---- -# Source: volcano/templates/admission.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-admission -rules: - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "list", "watch"] - - apiGroups: ["admissionregistration.k8s.io"] - resources: ["mutatingwebhookconfigurations", "validatingwebhookconfigurations"] - verbs: ["get", "list", "watch", "create", "update"] - - apiGroups: ["certificates.k8s.io"] - resources: ["certificatesigningrequests"] - verbs: ["get", "list", "create", "delete"] - - apiGroups: ["certificates.k8s.io"] - resources: ["certificatesigningrequests/approval"] - verbs: ["create", "update"] - - apiGroups: [""] - resources: ["secrets"] - verbs: ["create", "get", "patch"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["queues"] - verbs: ["get", "list"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["elasticresourcequotas"] - verbs: ["get", "list", "update"] - - apiGroups: [""] - resources: ["services"] - verbs: ["get"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups"] - verbs: ["get", "list", "watch"] ---- -# Source: volcano/templates/admission.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-deployment.yaml +apiVersion: apps/v1 +kind: Deployment metadata: - name: volcano-admission-role -subjects: - - kind: ServiceAccount - name: volcano-admission - namespace: volcano-system -roleRef: - kind: ClusterRole + #文件里的所有volcano-admission、volcano_admission都替换成实际名称 name: volcano-admission - apiGroup: rbac.authorization.k8s.io ---- -# Source: volcano/templates/admission.yaml -apiVersion: v1 -kind: Service -metadata: labels: app: volcano-admission - name: volcano-admission-service - namespace: volcano-system -spec: - ports: - - port: 443 - protocol: TCP - targetPort: 8443 - selector: + chart: "volcano-admission-0.0.21-rrm1l0" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' app: volcano-admission - sessionAffinity: None ---- -# Source: volcano/templates/admission.yaml -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: + annotations: app: volcano-admission - name: volcano-admission - namespace: volcano-system + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -1155,7346 +1981,85 @@ spec: metadata: labels: app: volcano-admission + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' + app: volcano-admission + annotations: + app: volcano-admission spec: - serviceAccount: volcano-admission - containers: - - args: - - --tls-cert-file=/admission.local.config/certificates/tls.crt - - --tls-private-key-file=/admission.local.config/certificates/tls.key - - --ca-cert-file=/admission.local.config/certificates/ca.crt - - --webhook-namespace=volcano-system - - --webhook-service-name=volcano-admission-service - - --logtostderr - - --port=8443 - - -v=4 - - 2>&1 - image: paddleflow/vc-webhook-manager:pf-1.4-vc-1.3 - imagePullPolicy: IfNotPresent - name: admission - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - volumeMounts: - - mountPath: /admission.local.config/certificates - name: admission-certs - readOnly: true - volumes: - - name: admission-certs - secret: - defaultMode: 420 - secretName: volcano-admission-secret ---- -# Source: volcano/templates/admission.yaml -apiVersion: batch/v1 -kind: Job -metadata: - name: volcano-admission-init - namespace: volcano-system - labels: - app: volcano-admission-init -spec: - backoffLimit: 3 - template: - spec: + dnsPolicy: ClusterFirst + restartPolicy: Always serviceAccountName: volcano-admission - restartPolicy: Never containers: - - name: main - image: paddleflow/vc-webhook-manager:pf-1.4-vc-1.3 - imagePullPolicy: IfNotPresent - command: ["./gen-admission-secret.sh", "--service", "volcano-admission-service", "--namespace", - "volcano-system", "--secret", "volcano-admission-secret"] ---- -# Source: volcano/templates/batch_v1alpha1_job.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: jobs.batch.volcano.sh -spec: - group: batch.volcano.sh - names: - kind: Job - listKind: JobList - plural: jobs - shortNames: - - vcjob - - vj - singular: job - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: Job defines the volcano job. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Specification of the desired behavior of the volcano job, - including the minAvailable - properties: - maxRetry: - description: Specifies the maximum number of retries before marking - this Job failed. Defaults to 3. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Job Defaults - to the summary of tasks' replicas - format: int32 - type: integer - minSuccess: - description: The minimal success pods to run for this Job - format: int32 - minimum: 1 - type: integer - plugins: - additionalProperties: - items: - type: string - type: array - description: Specifies the plugin of job Key is plugin name, value - is the arguments of the plugin - type: object - policies: - description: Specifies the default lifecycle of tasks - items: - description: LifecyclePolicy specifies the lifecycle and error handling - of task and job. - properties: - action: - description: The action that will be taken to the PodGroup according - to Event. One of "Restart", "None". Default to None. - type: string - event: - description: The Event recorded by scheduler; the controller - takes actions according to this Event. - type: string - events: - description: The Events recorded by scheduler; the controller - takes actions according to this Events. - items: - description: Event represent the phase of Job, e.g. pod-failed. - type: string - type: array - exitCode: - description: 'The exit code of the pod container, controller - will take action according to this code. Note: only one of - `Event` or `ExitCode` can be specified.' - format: int32 - type: integer - timeout: - description: Timeout is the grace period for controller to take - actions. Default to nil (take action immediately). - type: string - type: object - type: array - priorityClassName: - description: If specified, indicates the job's priority. - type: string - queue: - description: Specifies the queue that will be used in the scheduler, - "default" queue is used this leaves empty. - type: string - runningEstimate: - description: Running Estimate is a user running duration estimate - for the job Default to nil - type: string - schedulerName: - description: SchedulerName is the default value of `tasks.template.spec.schedulerName`. - type: string - tasks: - description: Tasks specifies the task specification of Job - items: - description: TaskSpec specifies the task specification of Job. - properties: - maxRetry: - description: Specifies the maximum number of retries before - marking this Task failed. Defaults to 3. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Task - Defaults to the task replicas - format: int32 - type: integer - name: - description: Name specifies the name of tasks - type: string - policies: - description: Specifies the lifecycle of task - items: - description: LifecyclePolicy specifies the lifecycle and error - handling of task and job. - properties: - action: - description: The action that will be taken to the PodGroup - according to Event. One of "Restart", "None". Default - to None. - type: string - event: - description: The Event recorded by scheduler; the controller - takes actions according to this Event. - type: string - events: - description: The Events recorded by scheduler; the controller - takes actions according to this Events. - items: - description: Event represent the phase of Job, e.g. - pod-failed. - type: string - type: array - exitCode: - description: 'The exit code of the pod container, controller - will take action according to this code. Note: only - one of `Event` or `ExitCode` can be specified.' - format: int32 - type: integer - timeout: - description: Timeout is the grace period for controller - to take actions. Default to nil (take action immediately). - type: string - type: object - type: array - replicas: - description: Replicas specifies the replicas of this TaskSpec - in Job - format: int32 - type: integer - template: - description: Specifies the pod that will be created for this - TaskSpec when executing a Job - properties: - metadata: - description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' - type: object - spec: - description: 'Specification of the desired behavior of the - pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - activeDeadlineSeconds: - description: Optional duration in seconds the pod may - be active on the node relative to StartTime before - the system will actively try to mark it failed and - kill associated containers. Value must be a positive - integer. - format: int64 - type: integer - affinity: - description: If specified, the pod's scheduling constraints - properties: - nodeAffinity: - description: Describes node affinity scheduling - rules for the pod. - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the affinity expressions - specified by this field, but it may choose - a node that violates one or more of the expressions. - The node that is most preferred is the one - with the greatest sum of weights, i.e. for - each node that meets all of the scheduling - requirements (resource request, requiredDuringScheduling - affinity expressions, etc.), compute a sum - by iterating through the elements of this - field and adding "weight" to the sum if the - node matches the corresponding matchExpressions; - the node(s) with the highest sum are the most - preferred. - items: - description: An empty preferred scheduling - term matches all objects with implicit weight - 0 (i.e. it's a no-op). A null preferred - scheduling term matches no objects (i.e. - is also a no-op). - properties: - preference: - description: A node selector term, associated - with the corresponding weight. - properties: - matchExpressions: - description: A list of node selector - requirements by node's labels. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchFields: - description: A list of node selector - requirements by node's fields. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - weight: - description: Weight associated with matching - the corresponding nodeSelectorTerm, - in the range 1-100. - format: int32 - type: integer - required: - - preference - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified - by this field are not met at scheduling time, - the pod will not be scheduled onto the node. - If the affinity requirements specified by - this field cease to be met at some point during - pod execution (e.g. due to an update), the - system may or may not try to eventually evict - the pod from its node. - properties: - nodeSelectorTerms: - description: Required. A list of node selector - terms. The terms are ORed. - items: - description: A null or empty node selector - term matches no objects. The requirements - of them are ANDed. The TopologySelectorTerm - type implements a subset of the NodeSelectorTerm. - properties: - matchExpressions: - description: A list of node selector - requirements by node's labels. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchFields: - description: A list of node selector - requirements by node's fields. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - type: array - required: - - nodeSelectorTerms - type: object - type: object - podAffinity: - description: Describes pod affinity scheduling rules - (e.g. co-locate this pod in the same node, zone, - etc. as some other pod(s)). - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the affinity expressions - specified by this field, but it may choose - a node that violates one or more of the expressions. - The node that is most preferred is the one - with the greatest sum of weights, i.e. for - each node that meets all of the scheduling - requirements (resource request, requiredDuringScheduling - affinity expressions, etc.), compute a sum - by iterating through the elements of this - field and adding "weight" to the sum if the - node has pods which matches the corresponding - podAffinityTerm; the node(s) with the highest - sum are the most preferred. - items: - description: The weights of all of the matched - WeightedPodAffinityTerm fields are added - per-node to find the most preferred node(s) - properties: - podAffinityTerm: - description: Required. A pod affinity - term, associated with the corresponding - weight. - properties: - labelSelector: - description: A label query over a - set of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies - which namespaces the labelSelector - applies to (matches against); null - or empty list means "this pod's - namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where - co-located is defined as running - on a node whose value of the label - with key topologyKey matches that - of any node on which any of the - selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching - the corresponding podAffinityTerm, in - the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified - by this field are not met at scheduling time, - the pod will not be scheduled onto the node. - If the affinity requirements specified by - this field cease to be met at some point during - pod execution (e.g. due to a pod label update), - the system may or may not try to eventually - evict the pod from its node. When there are - multiple elements, the lists of nodes corresponding - to each podAffinityTerm are intersected, i.e. - all terms must be satisfied. - items: - description: Defines a set of pods (namely - those matching the labelSelector relative - to the given namespace(s)) that this pod - should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is - defined as running on a node whose value - of the label with key matches - that of any node on which a pod of the set - of pods is running - properties: - labelSelector: - description: A label query over a set - of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions is a - list of label selector requirements. - The requirements are ANDed. - items: - description: A label selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: key is the label - key that the selector applies - to. - type: string - operator: - description: operator represents - a key's relationship to a - set of values. Valid operators - are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array - of string values. If the operator - is In or NotIn, the values - array must be non-empty. If - the operator is Exists or - DoesNotExist, the values array - must be empty. This array - is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map - of {key,value} pairs. A single {key,value} - in the matchLabels map is equivalent - to an element of matchExpressions, - whose key field is "key", the operator - is "In", and the values array contains - only "value". The requirements are - ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which - namespaces the labelSelector applies - to (matches against); null or empty - list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where co-located - is defined as running on a node whose - value of the label with key topologyKey - matches that of any node on which any - of the selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - podAntiAffinity: - description: Describes pod anti-affinity scheduling - rules (e.g. avoid putting this pod in the same - node, zone, etc. as some other pod(s)). - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the anti-affinity - expressions specified by this field, but it - may choose a node that violates one or more - of the expressions. The node that is most - preferred is the one with the greatest sum - of weights, i.e. for each node that meets - all of the scheduling requirements (resource - request, requiredDuringScheduling anti-affinity - expressions, etc.), compute a sum by iterating - through the elements of this field and adding - "weight" to the sum if the node has pods which - matches the corresponding podAffinityTerm; - the node(s) with the highest sum are the most - preferred. - items: - description: The weights of all of the matched - WeightedPodAffinityTerm fields are added - per-node to find the most preferred node(s) - properties: - podAffinityTerm: - description: Required. A pod affinity - term, associated with the corresponding - weight. - properties: - labelSelector: - description: A label query over a - set of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies - which namespaces the labelSelector - applies to (matches against); null - or empty list means "this pod's - namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where - co-located is defined as running - on a node whose value of the label - with key topologyKey matches that - of any node on which any of the - selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching - the corresponding podAffinityTerm, in - the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements - specified by this field are not met at scheduling - time, the pod will not be scheduled onto the - node. If the anti-affinity requirements specified - by this field cease to be met at some point - during pod execution (e.g. due to a pod label - update), the system may or may not try to - eventually evict the pod from its node. When - there are multiple elements, the lists of - nodes corresponding to each podAffinityTerm - are intersected, i.e. all terms must be satisfied. - items: - description: Defines a set of pods (namely - those matching the labelSelector relative - to the given namespace(s)) that this pod - should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is - defined as running on a node whose value - of the label with key matches - that of any node on which a pod of the set - of pods is running - properties: - labelSelector: - description: A label query over a set - of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions is a - list of label selector requirements. - The requirements are ANDed. - items: - description: A label selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: key is the label - key that the selector applies - to. - type: string - operator: - description: operator represents - a key's relationship to a - set of values. Valid operators - are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array - of string values. If the operator - is In or NotIn, the values - array must be non-empty. If - the operator is Exists or - DoesNotExist, the values array - must be empty. This array - is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map - of {key,value} pairs. A single {key,value} - in the matchLabels map is equivalent - to an element of matchExpressions, - whose key field is "key", the operator - is "In", and the values array contains - only "value". The requirements are - ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which - namespaces the labelSelector applies - to (matches against); null or empty - list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where co-located - is defined as running on a node whose - value of the label with key topologyKey - matches that of any node on which any - of the selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - type: object - automountServiceAccountToken: - description: AutomountServiceAccountToken indicates - whether a service account token should be automatically - mounted. - type: boolean - containers: - description: List of containers belonging to the pod. - Containers cannot currently be added or removed. There - must be at least one container in a Pod. Cannot be - updated. - items: - description: A single application container that you - want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level - config management to default or override container - images in workload controllers like Deployments - and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system - should take in response to container lifecycle - events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. - Container will be restarted if the probe fails. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as - a DNS_LABEL. Each container in a pod must have - a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the - container. Exposing a port here gives the system - additional information about the network connections - a container uses, but is primarily informational. - Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which - is listening on the default "0.0.0.0" address - inside a container will be accessible from the - network. Cannot be updated. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service - readiness. Container will be removed from service - endpoints if the probe fails. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this - container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should - run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the - Pod has successfully initialized. If specified, - no other probes are executed until this completes - successfully. If this probe fails, the Pod will - be restarted, just as if the livenessProbe failed. - This can be used to provide different probe - parameters at the beginning of a Pod''s lifecycle, - when it might take a long time to load data - or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature - enabled by the StartupProbe feature flag. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - dnsConfig: - description: Specifies the DNS parameters of a pod. - Parameters specified here will be merged to the generated - DNS configuration based on DNSPolicy. - properties: - nameservers: - description: A list of DNS name server IP addresses. - This will be appended to the base nameservers - generated from DNSPolicy. Duplicated nameservers - will be removed. - items: - type: string - type: array - options: - description: A list of DNS resolver options. This - will be merged with the base options generated - from DNSPolicy. Duplicated entries will be removed. - Resolution options given in Options will override - those that appear in the base DNSPolicy. - items: - description: PodDNSConfigOption defines DNS resolver - options of a pod. - properties: - name: - description: Required. - type: string - value: - type: string - type: object - type: array - searches: - description: A list of DNS search domains for host-name - lookup. This will be appended to the base search - paths generated from DNSPolicy. Duplicated search - paths will be removed. - items: - type: string - type: array - type: object - dnsPolicy: - description: Set DNS policy for the pod. Defaults to - "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', - 'ClusterFirst', 'Default' or 'None'. DNS parameters - given in DNSConfig will be merged with the policy - selected with DNSPolicy. To have DNS options set along - with hostNetwork, you have to specify DNS policy explicitly - to 'ClusterFirstWithHostNet'. - type: string - enableServiceLinks: - description: 'EnableServiceLinks indicates whether information - about services should be injected into pod''s environment - variables, matching the syntax of Docker links. Optional: - Defaults to true.' - type: boolean - ephemeralContainers: - description: List of ephemeral containers run in this - pod. Ephemeral containers may be run in an existing - pod to perform user-initiated actions such as debugging. - This list cannot be specified when creating a pod, - and it cannot be modified by updating the pod spec. - In order to add an ephemeral container to an existing - pod, use the pod's ephemeralcontainers subresource. - This field is alpha-level and is only honored by servers - that enable the EphemeralContainers feature. - items: - description: An EphemeralContainer is a container - that may be added temporarily to an existing pod - for user-initiated activities such as debugging. - Ephemeral containers have no resource or scheduling - guarantees, and they will not be restarted when - they exit or when a pod is removed or restarted. - If an ephemeral container causes a pod to exceed - its resource allocation, the pod may be evicted. - Ephemeral containers may not be added by directly - updating the pod spec. They must be added via the - pod's ephemeralcontainers subresource, and they - will appear in the pod spec once added. This is - an alpha feature enabled by the EphemeralContainers - feature flag. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Lifecycle is not allowed for ephemeral - containers. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the ephemeral container specified - as a DNS_LABEL. This name must be unique among - all containers, init containers and ephemeral - containers. - type: string - ports: - description: Ports are not allowed for ephemeral - containers. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - readinessProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: Resources are not allowed for ephemeral - containers. Ephemeral containers use spare resources - already allocated to the pod. - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: SecurityContext is not allowed for - ephemeral containers. - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - targetContainerName: - description: If set, the name of the container - from PodSpec that this ephemeral container targets. - The ephemeral container will be run in the namespaces - (IPC, PID, etc) of this container. If not set - then the ephemeral container is run in whatever - namespaces are shared for the pod. Note that - the container runtime must support this feature. - type: string - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - hostAliases: - description: HostAliases is an optional list of hosts - and IPs that will be injected into the pod's hosts - file if specified. This is only valid for non-hostNetwork - pods. - items: - description: HostAlias holds the mapping between IP - and hostnames that will be injected as an entry - in the pod's hosts file. - properties: - hostnames: - description: Hostnames for the above IP address. - items: - type: string - type: array - ip: - description: IP address of the host file entry. - type: string - type: object - type: array - hostIPC: - description: 'Use the host''s ipc namespace. Optional: - Default to false.' - type: boolean - hostNetwork: - description: Host networking requested for this pod. - Use the host's network namespace. If this option is - set, the ports that will be used must be specified. - Default to false. - type: boolean - hostPID: - description: 'Use the host''s pid namespace. Optional: - Default to false.' - type: boolean - hostname: - description: Specifies the hostname of the Pod If not - specified, the pod's hostname will be set to a system-defined - value. - type: string - imagePullSecrets: - description: 'ImagePullSecrets is an optional list of - references to secrets in the same namespace to use - for pulling any of the images used by this PodSpec. - If specified, these secrets will be passed to individual - puller implementations for them to use. For example, - in the case of docker, only DockerConfig type secrets - are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' - items: - description: LocalObjectReference contains enough - information to let you locate the referenced object - inside the same namespace. - properties: - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - type: object - type: array - initContainers: - description: 'List of initialization containers belonging - to the pod. Init containers are executed in order - prior to containers being started. If any init container - fails, the pod is considered to have failed and is - handled according to its restartPolicy. The name for - an init container or normal container must be unique - among all containers. Init containers may not have - Lifecycle actions, Readiness probes, Liveness probes, - or Startup probes. The resourceRequirements of an - init container are taken into account during scheduling - by finding the highest request/limit for each resource - type, and then using the max of of that value or the - sum of the normal containers. Limits are applied to - init containers in a similar fashion. Init containers - cannot currently be added or removed. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' - items: - description: A single application container that you - want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level - config management to default or override container - images in workload controllers like Deployments - and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system - should take in response to container lifecycle - events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. - Container will be restarted if the probe fails. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as - a DNS_LABEL. Each container in a pod must have - a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the - container. Exposing a port here gives the system - additional information about the network connections - a container uses, but is primarily informational. - Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which - is listening on the default "0.0.0.0" address - inside a container will be accessible from the - network. Cannot be updated. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service - readiness. Container will be removed from service - endpoints if the probe fails. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this - container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should - run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the - Pod has successfully initialized. If specified, - no other probes are executed until this completes - successfully. If this probe fails, the Pod will - be restarted, just as if the livenessProbe failed. - This can be used to provide different probe - parameters at the beginning of a Pod''s lifecycle, - when it might take a long time to load data - or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature - enabled by the StartupProbe feature flag. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - nodeName: - description: NodeName is a request to schedule this - pod onto a specific node. If it is non-empty, the - scheduler simply schedules this pod onto that node, - assuming that it fits resource requirements. - type: string - nodeSelector: - additionalProperties: - type: string - description: 'NodeSelector is a selector which must - be true for the pod to fit on a node. Selector which - must match a node''s labels for the pod to be scheduled - on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' - type: object - overhead: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Overhead represents the resource overhead - associated with running a pod for a given RuntimeClass. - This field will be autopopulated at admission time - by the RuntimeClass admission controller. If the RuntimeClass - admission controller is enabled, overhead must not - be set in Pod create requests. The RuntimeClass admission - controller will reject Pod create requests which have - the overhead already set. If RuntimeClass is configured - and selected in the PodSpec, Overhead will be set - to the value defined in the corresponding RuntimeClass, - otherwise it will remain unset and treated as zero. - More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md - This field is alpha-level as of Kubernetes v1.16, - and is only honored by servers that enable the PodOverhead - feature.' - type: object - preemptionPolicy: - description: PreemptionPolicy is the Policy for preempting - pods with lower priority. One of Never, PreemptLowerPriority. - Defaults to PreemptLowerPriority if unset. This field - is beta-level, gated by the NonPreemptingPriority - feature-gate. - type: string - priority: - description: The priority value. Various system components - use this field to find the priority of the pod. When - Priority Admission Controller is enabled, it prevents - users from setting this field. The admission controller - populates this field from PriorityClassName. The higher - the value, the higher the priority. - format: int32 - type: integer - priorityClassName: - description: If specified, indicates the pod's priority. - "system-node-critical" and "system-cluster-critical" - are two special keywords which indicate the highest - priorities with the former being the highest priority. - Any other name must be defined by creating a PriorityClass - object with that name. If not specified, the pod priority - will be default or zero if there is no default. - type: string - readinessGates: - description: 'If specified, all readiness gates will - be evaluated for pod readiness. A pod is ready when - all its containers are ready AND all conditions specified - in the readiness gates have status equal to "True" - More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md' - items: - description: PodReadinessGate contains the reference - to a pod condition - properties: - conditionType: - description: ConditionType refers to a condition - in the pod's condition list with matching type. - type: string - required: - - conditionType - type: object - type: array - restartPolicy: - description: 'Restart policy for all containers within - the pod. One of Always, OnFailure, Never. Default - to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy' - type: string - runtimeClassName: - description: 'RuntimeClassName refers to a RuntimeClass - object in the node.k8s.io group, which should be used - to run this pod. If no RuntimeClass resource matches - the named class, the pod will not be run. If unset - or empty, the "legacy" RuntimeClass will be used, - which is an implicit class with an empty definition - that uses the default runtime handler. More info: - https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md - This is a beta feature as of Kubernetes v1.14.' - type: string - schedulerName: - description: If specified, the pod will be dispatched - by specified scheduler. If not specified, the pod - will be dispatched by default scheduler. - type: string - securityContext: - description: 'SecurityContext holds pod-level security - attributes and common container settings. Optional: - Defaults to empty. See type description for default - values of each field.' - properties: - fsGroup: - description: "A special supplemental group that - applies to all containers in a pod. Some volume - types allow the Kubelet to change the ownership - of that volume to be owned by the pod: \n 1. The - owning GID will be the FSGroup 2. The setgid bit - is set (new files created in the volume will be - owned by FSGroup) 3. The permission bits are OR'd - with rw-rw---- \n If unset, the Kubelet will not - modify the ownership and permissions of any volume." - format: int64 - type: integer - fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior - of changing ownership and permission of the volume - before being exposed inside Pod. This field will - only apply to volume types which support fsGroup - based ownership(and permissions). It will have - no effect on ephemeral volume types such as: secret, - configmaps and emptydir. Valid values are "OnRootMismatch" - and "Always". If not specified defaults to "Always".' - type: string - runAsGroup: - description: The GID to run the entrypoint of the - container process. Uses runtime default if unset. - May also be set in SecurityContext. If set in - both SecurityContext and PodSecurityContext, the - value specified in SecurityContext takes precedence - for that container. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run - as a non-root user. If true, the Kubelet will - validate the image at runtime to ensure that it - does not run as UID 0 (root) and fail to start - the container if it does. If unset or false, no - such validation will be performed. May also be - set in SecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in - SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the - container process. Defaults to user specified - in image metadata if unspecified. May also be - set in SecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in - SecurityContext takes precedence for that container. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to - all containers. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in SecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence - for that container. - properties: - level: - description: Level is SELinux level label that - applies to the container. - type: string - role: - description: Role is a SELinux role label that - applies to the container. - type: string - type: - description: Type is a SELinux type label that - applies to the container. - type: string - user: - description: User is a SELinux user label that - applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by the containers - in this pod. - properties: - localhostProfile: - description: localhostProfile indicates a profile - defined in a file on the node should be used. - The profile must be preconfigured on the node - to work. Must be a descending path, relative - to the kubelet's configured seccomp profile - location. Must only be set if type is "Localhost". - type: string - type: - description: "type indicates which kind of seccomp - profile will be applied. Valid options are: - \n Localhost - a profile defined in a file - on the node should be used. RuntimeDefault - - the container runtime default profile should - be used. Unconfined - no profile should be - applied." - type: string - required: - - type - type: object - supplementalGroups: - description: A list of groups applied to the first - process run in each container, in addition to - the container's primary GID. If unspecified, - no groups will be added to any container. - items: - format: int64 - type: integer - type: array - sysctls: - description: Sysctls hold a list of namespaced sysctls - used for the pod. Pods with unsupported sysctls - (by the container runtime) might fail to launch. - items: - description: Sysctl defines a kernel parameter - to be set - properties: - name: - description: Name of a property to set - type: string - value: - description: Value of a property to set - type: string - required: - - name - - value - type: object - type: array - windowsOptions: - description: The Windows specific settings applied - to all containers. If unspecified, the options - within a container's SecurityContext will be used. - If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the - GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name - of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run - the entrypoint of the container process. Defaults - to the user specified in image metadata if - unspecified. May also be set in PodSecurityContext. - If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: string - type: object - type: object - serviceAccount: - description: 'DeprecatedServiceAccount is a depreciated - alias for ServiceAccountName. Deprecated: Use serviceAccountName - instead.' - type: string - serviceAccountName: - description: 'ServiceAccountName is the name of the - ServiceAccount to use to run this pod. More info: - https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' - type: string - setHostnameAsFQDN: - description: If true the pod's hostname will be configured - as the pod's FQDN, rather than the leaf name (the - default). In Linux containers, this means setting - the FQDN in the hostname field of the kernel (the - nodename field of struct utsname). In Windows containers, - this means setting the registry value of hostname - for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters - to FQDN. If a pod does not have FQDN, this has no - effect. Default to false. - type: boolean - shareProcessNamespace: - description: 'Share a single process namespace between - all of the containers in a pod. When this is set containers - will be able to view and signal processes from other - containers in the same pod, and the first process - in each container will not be assigned PID 1. HostPID - and ShareProcessNamespace cannot both be set. Optional: - Default to false.' - type: boolean - subdomain: - description: If specified, the fully qualified Pod hostname - will be "...svc.". If not specified, the pod will not have - a domainname at all. - type: string - terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs - to terminate gracefully. May be decreased in delete - request. Value must be non-negative integer. The value - zero indicates delete immediately. If this value is - nil, the default grace period will be used instead. - The grace period is the duration in seconds after - the processes running in the pod are sent a termination - signal and the time when the processes are forcibly - halted with a kill signal. Set this value longer than - the expected cleanup time for your process. Defaults - to 30 seconds. - format: int64 - type: integer - tolerations: - description: If specified, the pod's tolerations. - items: - description: The pod this Toleration is attached to - tolerates any taint that matches the triple - using the matching operator . - properties: - effect: - description: Effect indicates the taint effect - to match. Empty means match all taint effects. - When specified, allowed values are NoSchedule, - PreferNoSchedule and NoExecute. - type: string - key: - description: Key is the taint key that the toleration - applies to. Empty means match all taint keys. - If the key is empty, operator must be Exists; - this combination means to match all values and - all keys. - type: string - operator: - description: Operator represents a key's relationship - to the value. Valid operators are Exists and - Equal. Defaults to Equal. Exists is equivalent - to wildcard for value, so that a pod can tolerate - all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the - period of time the toleration (which must be - of effect NoExecute, otherwise this field is - ignored) tolerates the taint. By default, it - is not set, which means tolerate the taint forever - (do not evict). Zero and negative values will - be treated as 0 (evict immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration - matches to. If the operator is Exists, the value - should be empty, otherwise just a regular string. - type: string - type: object - type: array - topologySpreadConstraints: - description: TopologySpreadConstraints describes how - a group of pods ought to spread across topology domains. - Scheduler will schedule pods in a way which abides - by the constraints. All topologySpreadConstraints - are ANDed. - items: - description: TopologySpreadConstraint specifies how - to spread matching pods among the given topology. - properties: - labelSelector: - description: LabelSelector is used to find matching - pods. Pods that match this label selector are - counted to determine the number of pods in their - corresponding topology domain. - properties: - matchExpressions: - description: matchExpressions is a list of - label selector requirements. The requirements - are ANDed. - items: - description: A label selector requirement - is a selector that contains values, a - key, and an operator that relates the - key and values. - properties: - key: - description: key is the label key that - the selector applies to. - type: string - operator: - description: operator represents a key's - relationship to a set of values. Valid - operators are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array of string - values. If the operator is In or NotIn, - the values array must be non-empty. - If the operator is Exists or DoesNotExist, - the values array must be empty. This - array is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator is - "In", and the values array contains only - "value". The requirements are ANDed. - type: object - type: object - maxSkew: - description: 'MaxSkew describes the degree to - which pods may be unevenly distributed. When - `whenUnsatisfiable=DoNotSchedule`, it is the - maximum permitted difference between the number - of matching pods in the target topology and - the global minimum. For example, in a 3-zone - cluster, MaxSkew is set to 1, and pods with - the same labelSelector spread as 1/1/0: | zone1 - | zone2 | zone3 | | P | P | | - - if MaxSkew is 1, incoming pod can only be - scheduled to zone3 to become 1/1/1; scheduling - it onto zone1(zone2) would make the ActualSkew(2-0) - on zone1(zone2) violate MaxSkew(1). - if MaxSkew - is 2, incoming pod can be scheduled onto any - zone. When `whenUnsatisfiable=ScheduleAnyway`, - it is used to give higher precedence to topologies - that satisfy it. It''s a required field. Default - value is 1 and 0 is not allowed.' - format: int32 - type: integer - topologyKey: - description: TopologyKey is the key of node labels. - Nodes that have a label with this key and identical - values are considered to be in the same topology. - We consider each as a "bucket", - and try to put balanced number of pods into - each bucket. It's a required field. - type: string - whenUnsatisfiable: - description: 'WhenUnsatisfiable indicates how - to deal with a pod if it doesn''t satisfy the - spread constraint. - DoNotSchedule (default) - tells the scheduler not to schedule it. - ScheduleAnyway - tells the scheduler to schedule the pod in any - location, but giving higher precedence to - topologies that would help reduce the skew. - A constraint is considered "Unsatisfiable" for - an incoming pod if and only if every possible - node assigment for that pod would violate "MaxSkew" - on some topology. For example, in a 3-zone cluster, - MaxSkew is set to 1, and pods with the same - labelSelector spread as 3/1/1: | zone1 | zone2 - | zone3 | | P P P | P | P | If WhenUnsatisfiable - is set to DoNotSchedule, incoming pod can only - be scheduled to zone2(zone3) to become 3/2/1(3/1/2) - as ActualSkew(2-1) on zone2(zone3) satisfies - MaxSkew(1). In other words, the cluster can - still be imbalanced, but scheduler won''t make - it *more* imbalanced. It''s a required field.' - type: string - required: - - maxSkew - - topologyKey - - whenUnsatisfiable - type: object - type: array - x-kubernetes-list-map-keys: - - topologyKey - - whenUnsatisfiable - x-kubernetes-list-type: map - volumes: - description: 'List of volumes that can be mounted by - containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' - items: - description: Volume represents a named volume in a - pod that may be accessed by any container in the - pod. - properties: - awsElasticBlockStore: - description: 'AWSElasticBlockStore represents - an AWS Disk resource that is attached to a kubelet''s - host machine and then exposed to the pod. More - info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - partition: - description: 'The partition in the volume - that you want to mount. If omitted, the - default is to mount by volume name. Examples: - For volume /dev/sda1, you specify the partition - as "1". Similarly, the volume partition - for /dev/sda is "0" (or you can leave the - property empty).' - format: int32 - type: integer - readOnly: - description: 'Specify "true" to force and - set the ReadOnly property in VolumeMounts - to "true". If omitted, the default is "false". - More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: boolean - volumeID: - description: 'Unique ID of the persistent - disk resource in AWS (Amazon EBS volume). - More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: string - required: - - volumeID - type: object - azureDisk: - description: AzureDisk represents an Azure Data - Disk mount on the host and bind mount to the - pod. - properties: - cachingMode: - description: 'Host Caching mode: None, Read - Only, Read Write.' - type: string - diskName: - description: The Name of the data disk in - the blob storage - type: string - diskURI: - description: The URI the data disk in the - blob storage - type: string - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - kind: - description: 'Expected values Shared: multiple - blob disks per storage account Dedicated: - single blob disk per storage account Managed: - azure managed data disk (only in managed - availability set). defaults to shared' - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - required: - - diskName - - diskURI - type: object - azureFile: - description: AzureFile represents an Azure File - Service mount on the host and bind mount to - the pod. - properties: - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretName: - description: the name of secret that contains - Azure Storage Account Name and Key - type: string - shareName: - description: Share Name - type: string - required: - - secretName - - shareName - type: object - cephfs: - description: CephFS represents a Ceph FS mount - on the host that shares a pod's lifetime - properties: - monitors: - description: 'Required: Monitors is a collection - of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - items: - type: string - type: array - path: - description: 'Optional: Used as the mounted - root, rather than the full Ceph tree, default - is /' - type: string - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts. More info: - https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: boolean - secretFile: - description: 'Optional: SecretFile is the - path to key ring for User, default is /etc/ceph/user.secret - More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - secretRef: - description: 'Optional: SecretRef is reference - to the authentication secret for User, default - is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - user: - description: 'Optional: User is the rados - user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - required: - - monitors - type: object - cinder: - description: 'Cinder represents a cinder volume - attached and mounted on kubelets host machine. - More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - properties: - fsType: - description: 'Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Examples: "ext4", "xfs", - "ntfs". Implicitly inferred to be "ext4" - if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts. More info: - https://examples.k8s.io/mysql-cinder-pd/README.md' - type: boolean - secretRef: - description: 'Optional: points to a secret - object containing parameters used to connect - to OpenStack.' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - volumeID: - description: 'volume id used to identify the - volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - required: - - volumeID - type: object - configMap: - description: ConfigMap represents a configMap - that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits used to - set permissions on created files by default. - Must be an octal value between 0000 and - 0777 or a decimal value between 0 and 511. - YAML accepts both octal and decimal values, - JSON requires decimal values for mode bits. - Defaults to 0644. Directories within the - path are not affected by this setting. This - might be in conflict with other options - that affect the file mode, like fsGroup, - and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value - pair in the Data field of the referenced - ConfigMap will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the ConfigMap, the volume setup will - error unless it is marked optional. Paths - must be relative and may not contain the - '..' path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used - to set permissions on this file. Must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its keys must be defined - type: boolean - type: object - csi: - description: CSI (Container Storage Interface) - represents ephemeral storage that is handled - by certain external CSI drivers (Beta feature). - properties: - driver: - description: Driver is the name of the CSI - driver that handles this volume. Consult - with your admin for the correct name as - registered in the cluster. - type: string - fsType: - description: Filesystem type to mount. Ex. - "ext4", "xfs", "ntfs". If not provided, - the empty value is passed to the associated - CSI driver which will determine the default - filesystem to apply. - type: string - nodePublishSecretRef: - description: NodePublishSecretRef is a reference - to the secret object containing sensitive - information to pass to the CSI driver to - complete the CSI NodePublishVolume and NodeUnpublishVolume - calls. This field is optional, and may - be empty if no secret is required. If the - secret object contains more than one secret, - all secret references are passed. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - readOnly: - description: Specifies a read-only configuration - for the volume. Defaults to false (read/write). - type: boolean - volumeAttributes: - additionalProperties: - type: string - description: VolumeAttributes stores driver-specific - properties that are passed to the CSI driver. - Consult your driver's documentation for - supported values. - type: object - required: - - driver - type: object - downwardAPI: - description: DownwardAPI represents downward API - about the pod that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on - created files by default. Must be a Optional: - mode bits used to set permissions on created - files by default. Must be an octal value - between 0000 and 0777 or a decimal value - between 0 and 511. YAML accepts both octal - and decimal values, JSON requires decimal - values for mode bits. Defaults to 0644. - Directories within the path are not affected - by this setting. This might be in conflict - with other options that affect the file - mode, like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - items: - description: Items is a list of downward API - volume file - items: - description: DownwardAPIVolumeFile represents - information to create the file containing - the pod field - properties: - fieldRef: - description: 'Required: Selects a field - of the pod: only annotations, labels, - name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits used - to set permissions on this file, must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the - relative path name of the file to - be created. Must not be absolute or - contain the ''..'' path. Must be utf-8 - encoded. The first item of the relative - path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - requests.cpu and requests.memory) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - emptyDir: - description: 'EmptyDir represents a temporary - directory that shares a pod''s lifetime. More - info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - properties: - medium: - description: 'What type of storage medium - should back this directory. The default - is "" which means to use the node''s default - medium. Must be an empty string (default) - or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage - required for this EmptyDir volume. The size - limit is also applicable for memory medium. - The maximum usage on memory medium EmptyDir - would be the minimum value between the SizeLimit - specified here and the sum of memory limits - of all containers in a pod. The default - is nil which means that the limit is undefined. - More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - ephemeral: - description: "Ephemeral represents a volume that - is handled by a cluster storage driver (Alpha - feature). The volume's lifecycle is tied to - the pod that defines it - it will be created - before the pod starts, and deleted when the - pod is removed. \n Use this if: a) the volume - is only needed while the pod runs, b) features - of normal volumes like restoring from snapshot - or capacity tracking are needed, c) the storage - driver is specified through a storage class, - and d) the storage driver supports dynamic volume - provisioning through a PersistentVolumeClaim - (see EphemeralVolumeSource for more information - on the connection between this volume type and - PersistentVolumeClaim). \n Use PersistentVolumeClaim - or one of the vendor-specific APIs for volumes - that persist for longer than the lifecycle of - an individual pod. \n Use CSI for light-weight - local ephemeral volumes if the CSI driver is - meant to be used that way - see the documentation - of the driver for more information. \n A pod - can use both types of ephemeral volumes and - persistent volumes at the same time." - properties: - readOnly: - description: Specifies a read-only configuration - for the volume. Defaults to false (read/write). - type: boolean - volumeClaimTemplate: - description: "Will be used to create a stand-alone - PVC to provision the volume. The pod in - which this EphemeralVolumeSource is embedded - will be the owner of the PVC, i.e. the PVC - will be deleted together with the pod. The - name of the PVC will be `-` where `` is the name - from the `PodSpec.Volumes` array entry. - Pod validation will reject the pod if the - concatenated name is not valid for a PVC - (for example, too long). \n An existing - PVC with that name that is not owned by - the pod will *not* be used for the pod to - avoid using an unrelated volume by mistake. - Starting the pod is then blocked until the - unrelated PVC is removed. If such a pre-created - PVC is meant to be used by the pod, the - PVC has to updated with an owner reference - to the pod once the pod exists. Normally - this should not be necessary, but it may - be useful when manually reconstructing a - broken cluster. \n This field is read-only - and no changes will be made by Kubernetes - to the PVC after it has been created. \n - Required, must not be nil." - properties: - metadata: - description: May contain labels and annotations - that will be copied into the PVC when - creating it. No other fields are allowed - and will be rejected during validation. - type: object - spec: - description: The specification for the - PersistentVolumeClaim. The entire content - is copied unchanged into the PVC that - gets created from this template. The - same fields as in a PersistentVolumeClaim - are also valid here. - properties: - accessModes: - description: 'AccessModes contains - the desired access modes the volume - should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used - to specify either: * An existing - VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - - Beta) * An existing PVC (PersistentVolumeClaim) - * An existing custom resource/object - that implements data population - (Alpha) In order to use VolumeSnapshot - object types, the appropriate feature - gate must be enabled (VolumeSnapshotDataSource - or AnyVolumeDataSource) If the provisioner - or an external controller can support - the specified data source, it will - create a new volume based on the - contents of the specified data source. - If the specified data source is - not supported, the volume will not - be created and the failure will - be reported as an event. In the - future, we plan to support more - data source types and the behavior - of the provisioner may change.' - properties: - apiGroup: - description: APIGroup is the group - for the resource being referenced. - If APIGroup is not specified, - the specified Kind must be in - the core API group. For any - other third-party types, APIGroup - is required. - type: string - kind: - description: Kind is the type - of resource being referenced - type: string - name: - description: Name is the name - of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents - the minimum resources the volume - should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes - the maximum amount of compute - resources allowed. More info: - https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes - the minimum amount of compute - resources required. If Requests - is omitted for a container, - it defaults to Limits if that - is explicitly specified, otherwise - to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes - to consider for binding. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass - required by the claim. More info: - https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what - type of volume is required by the - claim. Value of Filesystem is implied - when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding - reference to the PersistentVolume - backing this claim. - type: string - type: object - required: - - spec - type: object - type: object - fc: - description: FC represents a Fibre Channel resource - that is attached to a kubelet's host machine - and then exposed to the pod. - properties: - fsType: - description: 'Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - lun: - description: 'Optional: FC target lun number' - format: int32 - type: integer - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts.' - type: boolean - targetWWNs: - description: 'Optional: FC target worldwide - names (WWNs)' - items: - type: string - type: array - wwids: - description: 'Optional: FC volume world wide - identifiers (wwids) Either wwids or combination - of targetWWNs and lun must be set, but not - both simultaneously.' - items: - type: string - type: array - type: object - flexVolume: - description: FlexVolume represents a generic volume - resource that is provisioned/attached using - an exec based plugin. - properties: - driver: - description: Driver is the name of the driver - to use for this volume. - type: string - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - The default filesystem depends on FlexVolume - script. - type: string - options: - additionalProperties: - type: string - description: 'Optional: Extra command options - if any.' - type: object - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts.' - type: boolean - secretRef: - description: 'Optional: SecretRef is reference - to the secret object containing sensitive - information to pass to the plugin scripts. - This may be empty if no secret object is - specified. If the secret object contains - more than one secret, all secrets are passed - to the plugin scripts.' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - required: - - driver - type: object - flocker: - description: Flocker represents a Flocker volume - attached to a kubelet's host machine. This depends - on the Flocker control service being running - properties: - datasetName: - description: Name of the dataset stored as - metadata -> name on the dataset for Flocker - should be considered as deprecated - type: string - datasetUUID: - description: UUID of the dataset. This is - unique identifier of a Flocker dataset - type: string - type: object - gcePersistentDisk: - description: 'GCEPersistentDisk represents a GCE - Disk resource that is attached to a kubelet''s - host machine and then exposed to the pod. More - info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - partition: - description: 'The partition in the volume - that you want to mount. If omitted, the - default is to mount by volume name. Examples: - For volume /dev/sda1, you specify the partition - as "1". Similarly, the volume partition - for /dev/sda is "0" (or you can leave the - property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - format: int32 - type: integer - pdName: - description: 'Unique name of the PD resource - in GCE. Used to identify the disk in GCE. - More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: string - readOnly: - description: 'ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: boolean - required: - - pdName - type: object - gitRepo: - description: 'GitRepo represents a git repository - at a particular revision. DEPRECATED: GitRepo - is deprecated. To provision a container with - a git repo, mount an EmptyDir into an InitContainer - that clones the repo using git, then mount the - EmptyDir into the Pod''s container.' - properties: - directory: - description: Target directory name. Must not - contain or start with '..'. If '.' is supplied, - the volume directory will be the git repository. Otherwise, - if specified, the volume will contain the - git repository in the subdirectory with - the given name. - type: string - repository: - description: Repository URL - type: string - revision: - description: Commit hash for the specified - revision. - type: string - required: - - repository - type: object - glusterfs: - description: 'Glusterfs represents a Glusterfs - mount on the host that shares a pod''s lifetime. - More info: https://examples.k8s.io/volumes/glusterfs/README.md' - properties: - endpoints: - description: 'EndpointsName is the endpoint - name that details Glusterfs topology. More - info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - path: - description: 'Path is the Glusterfs volume - path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - readOnly: - description: 'ReadOnly here will force the - Glusterfs volume to be mounted with read-only - permissions. Defaults to false. More info: - https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: boolean - required: - - endpoints - - path - type: object - hostPath: - description: 'HostPath represents a pre-existing - file or directory on the host machine that is - directly exposed to the container. This is generally - used for system agents or other privileged things - that are allowed to see the host machine. Most - containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath - --- TODO(jonesdl) We need to restrict who can - use host directory mounts and who can/can not - mount host directories as read/write.' - properties: - path: - description: 'Path of the directory on the - host. If the path is a symlink, it will - follow the link to the real path. More info: - https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - type: - description: 'Type for HostPath Volume Defaults - to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - required: - - path - type: object - iscsi: - description: 'ISCSI represents an ISCSI Disk resource - that is attached to a kubelet''s host machine - and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' - properties: - chapAuthDiscovery: - description: whether support iSCSI Discovery - CHAP authentication - type: boolean - chapAuthSession: - description: whether support iSCSI Session - CHAP authentication - type: boolean - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - initiatorName: - description: Custom iSCSI Initiator Name. - If initiatorName is specified with iscsiInterface - simultaneously, new iSCSI interface : will be created for - the connection. - type: string - iqn: - description: Target iSCSI Qualified Name. - type: string - iscsiInterface: - description: iSCSI Interface Name that uses - an iSCSI transport. Defaults to 'default' - (tcp). - type: string - lun: - description: iSCSI Target Lun number. - format: int32 - type: integer - portals: - description: iSCSI Target Portal List. The - portal is either an IP or ip_addr:port if - the port is other than default (typically - TCP ports 860 and 3260). - items: - type: string - type: array - readOnly: - description: ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. - type: boolean - secretRef: - description: CHAP Secret for iSCSI target - and initiator authentication - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - targetPortal: - description: iSCSI Target Portal. The Portal - is either an IP or ip_addr:port if the port - is other than default (typically TCP ports - 860 and 3260). - type: string - required: - - iqn - - lun - - targetPortal - type: object - name: - description: 'Volume''s name. Must be a DNS_LABEL - and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' - type: string - nfs: - description: 'NFS represents an NFS mount on the - host that shares a pod''s lifetime More info: - https://kubernetes.io/docs/concepts/storage/volumes#nfs' - properties: - path: - description: 'Path that is exported by the - NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - readOnly: - description: 'ReadOnly here will force the - NFS export to be mounted with read-only - permissions. Defaults to false. More info: - https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: boolean - server: - description: 'Server is the hostname or IP - address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - required: - - path - - server - type: object - persistentVolumeClaim: - description: 'PersistentVolumeClaimVolumeSource - represents a reference to a PersistentVolumeClaim - in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - claimName: - description: 'ClaimName is the name of a PersistentVolumeClaim - in the same namespace as the pod using this - volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - type: string - readOnly: - description: Will force the ReadOnly setting - in VolumeMounts. Default false. - type: boolean - required: - - claimName - type: object - photonPersistentDisk: - description: PhotonPersistentDisk represents a - PhotonController persistent disk attached and - mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - pdID: - description: ID that identifies Photon Controller - persistent disk - type: string - required: - - pdID - type: object - portworxVolume: - description: PortworxVolume represents a portworx - volume attached and mounted on kubelets host - machine - properties: - fsType: - description: FSType represents the filesystem - type to mount Must be a filesystem type - supported by the host operating system. - Ex. "ext4", "xfs". Implicitly inferred to - be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - volumeID: - description: VolumeID uniquely identifies - a Portworx volume - type: string - required: - - volumeID - type: object - projected: - description: Items for all in one resources secrets, - configmaps, and downward API - properties: - defaultMode: - description: Mode bits used to set permissions - on created files by default. Must be an - octal value between 0000 and 0777 or a decimal - value between 0 and 511. YAML accepts both - octal and decimal values, JSON requires - decimal values for mode bits. Directories - within the path are not affected by this - setting. This might be in conflict with - other options that affect the file mode, - like fsGroup, and the result can be other - mode bits set. - format: int32 - type: integer - sources: - description: list of volume projections - items: - description: Projection that may be projected - along with other supported volume types - properties: - configMap: - description: information about the configMap - data to project - properties: - items: - description: If unspecified, each - key-value pair in the Data field - of the referenced ConfigMap will - be projected into the volume as - a file whose name is the key and - content is the value. If specified, - the listed keys will be projected - into the specified paths, and - unlisted keys will not be present. - If a key is specified which is - not present in the ConfigMap, - the volume setup will error unless - it is marked optional. Paths must - be relative and may not contain - the '..' path or start with '..'. - items: - description: Maps a string key - to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode - bits used to set permissions - on this file. Must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative - path of the file to map - the key to. May not be an - absolute path. May not contain - the path element '..'. May - not start with the string - '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its keys must be - defined - type: boolean - type: object - downwardAPI: - description: information about the downwardAPI - data to project - properties: - items: - description: Items is a list of - DownwardAPIVolume file - items: - description: DownwardAPIVolumeFile - represents information to create - the file containing the pod - field - properties: - fieldRef: - description: 'Required: Selects - a field of the pod: only - annotations, labels, name - and namespace are supported.' - properties: - apiVersion: - description: Version of - the schema the FieldPath - is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the - field to select in the - specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode - bits used to set permissions - on this file, must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path - is the relative path name - of the file to be created. - Must not be absolute or - contain the ''..'' path. - Must be utf-8 encoded. The - first item of the relative - path must not start with - ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource - of the container: only resources - limits and requests (limits.cpu, - limits.memory, requests.cpu - and requests.memory) are - currently supported.' - properties: - containerName: - description: 'Container - name: required for volumes, - optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies - the output format of - the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: - resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - secret: - description: information about the secret - data to project - properties: - items: - description: If unspecified, each - key-value pair in the Data field - of the referenced Secret will - be projected into the volume as - a file whose name is the key and - content is the value. If specified, - the listed keys will be projected - into the specified paths, and - unlisted keys will not be present. - If a key is specified which is - not present in the Secret, the - volume setup will error unless - it is marked optional. Paths must - be relative and may not contain - the '..' path or start with '..'. - items: - description: Maps a string key - to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode - bits used to set permissions - on this file. Must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative - path of the file to map - the key to. May not be an - absolute path. May not contain - the path element '..'. May - not start with the string - '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - type: object - serviceAccountToken: - description: information about the serviceAccountToken - data to project - properties: - audience: - description: Audience is the intended - audience of the token. A recipient - of a token must identify itself - with an identifier specified in - the audience of the token, and - otherwise should reject the token. - The audience defaults to the identifier - of the apiserver. - type: string - expirationSeconds: - description: ExpirationSeconds is - the requested duration of validity - of the service account token. - As the token approaches expiration, - the kubelet volume plugin will - proactively rotate the service - account token. The kubelet will - start trying to rotate the token - if the token is older than 80 - percent of its time to live or - if the token is older than 24 - hours.Defaults to 1 hour and must - be at least 10 minutes. - format: int64 - type: integer - path: - description: Path is the path relative - to the mount point of the file - to project the token into. - type: string - required: - - path - type: object - type: object - type: array - required: - - sources - type: object - quobyte: - description: Quobyte represents a Quobyte mount - on the host that shares a pod's lifetime - properties: - group: - description: Group to map volume access to - Default is no group - type: string - readOnly: - description: ReadOnly here will force the - Quobyte volume to be mounted with read-only - permissions. Defaults to false. - type: boolean - registry: - description: Registry represents a single - or multiple Quobyte Registry services specified - as a string as host:port pair (multiple - entries are separated with commas) which - acts as the central registry for volumes - type: string - tenant: - description: Tenant owning the given Quobyte - volume in the Backend Used with dynamically - provisioned Quobyte volumes, value is set - by the plugin - type: string - user: - description: User to map volume access to - Defaults to serivceaccount user - type: string - volume: - description: Volume is a string that references - an already created Quobyte volume by name. - type: string - required: - - registry - - volume - type: object - rbd: - description: 'RBD represents a Rados Block Device - mount on the host that shares a pod''s lifetime. - More info: https://examples.k8s.io/volumes/rbd/README.md' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - image: - description: 'The rados image name. More info: - https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - keyring: - description: 'Keyring is the path to key ring - for RBDUser. Default is /etc/ceph/keyring. - More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - monitors: - description: 'A collection of Ceph monitors. - More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - items: - type: string - type: array - pool: - description: 'The rados pool name. Default - is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - readOnly: - description: 'ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: boolean - secretRef: - description: 'SecretRef is name of the authentication - secret for RBDUser. If provided overrides - keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - user: - description: 'The rados user name. Default - is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - required: - - image - - monitors - type: object - scaleIO: - description: ScaleIO represents a ScaleIO persistent - volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Default is "xfs". - type: string - gateway: - description: The host address of the ScaleIO - API Gateway. - type: string - protectionDomain: - description: The name of the ScaleIO Protection - Domain for the configured storage. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretRef: - description: SecretRef references to the secret - for ScaleIO user and other sensitive information. - If this is not provided, Login operation - will fail. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - sslEnabled: - description: Flag to enable/disable SSL communication - with Gateway, default false - type: boolean - storageMode: - description: Indicates whether the storage - for a volume should be ThickProvisioned - or ThinProvisioned. Default is ThinProvisioned. - type: string - storagePool: - description: The ScaleIO Storage Pool associated - with the protection domain. - type: string - system: - description: The name of the storage system - as configured in ScaleIO. - type: string - volumeName: - description: The name of a volume already - created in the ScaleIO system that is associated - with this volume source. - type: string - required: - - gateway - - secretRef - - system - type: object - secret: - description: 'Secret represents a secret that - should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - properties: - defaultMode: - description: 'Optional: mode bits used to - set permissions on created files by default. - Must be an octal value between 0000 and - 0777 or a decimal value between 0 and 511. - YAML accepts both octal and decimal values, - JSON requires decimal values for mode bits. - Defaults to 0644. Directories within the - path are not affected by this setting. This - might be in conflict with other options - that affect the file mode, like fsGroup, - and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value - pair in the Data field of the referenced - Secret will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the Secret, the volume setup will error - unless it is marked optional. Paths must - be relative and may not contain the '..' - path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used - to set permissions on this file. Must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - optional: - description: Specify whether the Secret or - its keys must be defined - type: boolean - secretName: - description: 'Name of the secret in the pod''s - namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - type: string - type: object - storageos: - description: StorageOS represents a StorageOS - volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretRef: - description: SecretRef specifies the secret - to use for obtaining the StorageOS API credentials. If - not specified, default values will be attempted. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - volumeName: - description: VolumeName is the human-readable - name of the StorageOS volume. Volume names - are only unique within a namespace. - type: string - volumeNamespace: - description: VolumeNamespace specifies the - scope of the volume within StorageOS. If - no namespace is specified then the Pod's - namespace will be used. This allows the - Kubernetes name scoping to be mirrored within - StorageOS for tighter integration. Set VolumeName - to any name to override the default behaviour. - Set to "default" if you are not using namespaces - within StorageOS. Namespaces that do not - pre-exist within StorageOS will be created. - type: string - type: object - vsphereVolume: - description: VsphereVolume represents a vSphere - volume attached and mounted on kubelets host - machine - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - storagePolicyID: - description: Storage Policy Based Management - (SPBM) profile ID associated with the StoragePolicyName. - type: string - storagePolicyName: - description: Storage Policy Based Management - (SPBM) profile name. - type: string - volumePath: - description: Path that identifies vSphere - volume vmdk - type: string - required: - - volumePath - type: object - required: - - name - type: object - type: array - required: - - containers - type: object - type: object - topologyPolicy: - description: Specifies the topology policy of task - type: string - type: object - type: array - ttlSecondsAfterFinished: - description: ttlSecondsAfterFinished limits the lifetime of a Job - that has finished execution (either Completed or Failed). If this - field is set, ttlSecondsAfterFinished after the Job finishes, it - is eligible to be automatically deleted. If this field is unset, - the Job won't be automatically deleted. If this field is set to - zero, the Job becomes eligible to be deleted immediately after it - finishes. - format: int32 - type: integer - volumes: - description: The volumes mount on Job - items: - description: VolumeSpec defines the specification of Volume, e.g. - PVC. - properties: - mountPath: - description: Path within the container at which the volume should - be mounted. Must not contain ':'. - type: string - volumeClaim: - description: VolumeClaim defines the PVC used by the VolumeMount. - properties: - accessModes: - description: 'AccessModes contains the desired access modes - the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify either: - * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - - Beta) * An existing PVC (PersistentVolumeClaim) * An - existing custom resource/object that implements data population - (Alpha) In order to use VolumeSnapshot object types, the - appropriate feature gate must be enabled (VolumeSnapshotDataSource - or AnyVolumeDataSource) If the provisioner or an external - controller can support the specified data source, it will - create a new volume based on the contents of the specified - data source. If the specified data source is not supported, - the volume will not be created and the failure will be - reported as an event. In the future, we plan to support - more data source types and the behavior of the provisioner - may change.' - properties: - apiGroup: - description: APIGroup is the group for the resource - being referenced. If APIGroup is not specified, the - specified Kind must be in the core API group. For - any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum resources - the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of - compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount - of compute resources required. If Requests is omitted - for a container, it defaults to Limits if that is - explicitly specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider for - binding. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: A label selector requirement is a selector - that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: operator represents a key's relationship - to a set of values. Valid operators are In, - NotIn, Exists and DoesNotExist. - type: string - values: - description: values is an array of string values. - If the operator is In or NotIn, the values array - must be non-empty. If the operator is Exists - or DoesNotExist, the values array must be empty. - This array is replaced during a strategic merge - patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. - A single {key,value} in the matchLabels map is equivalent - to an element of matchExpressions, whose key field - is "key", the operator is "In", and the values array - contains only "value". The requirements are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass required by the claim. - More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is required - by the claim. Value of Filesystem is implied when not - included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the - PersistentVolume backing this claim. - type: string - type: object - volumeClaimName: - description: defined the PVC name - type: string - required: - - mountPath - type: object - type: array - type: object - status: - description: Current status of the volcano Job - properties: - controlledResources: - additionalProperties: - type: string - description: The resources that controlled by this job, e.g. Service, - ConfigMap - type: object - failed: - description: The number of pods which reached phase Failed. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Job - format: int32 - type: integer - pending: - description: The number of pending pods. - format: int32 - type: integer - retryCount: - description: The number of Job retries. - format: int32 - type: integer - running: - description: The number of running pods. - format: int32 - type: integer - runningDuration: - description: The job running duration is the length of time from job - running to complete. - type: string - state: - description: Current state of Job. - properties: - lastTransitionTime: - description: Last time the condition transit from one phase to - another. - format: date-time - type: string - message: - description: Human-readable message indicating details about last - transition. - type: string - phase: - description: The phase of Job. - type: string - reason: - description: Unique, one-word, CamelCase reason for the phase's - last transition. - type: string - type: object - succeeded: - description: The number of pods which reached phase Succeeded. - format: int32 - type: integer - taskStatusCount: - additionalProperties: - description: TaskState contains details for the current state of - the task. - properties: - phase: - additionalProperties: - format: int32 - type: integer - description: The phase of Task. - type: object - type: object - description: The status of pods for each task - type: object - terminating: - description: The number of pods which reached phase Terminating. - format: int32 - type: integer - unknown: - description: The number of pods which reached phase Unknown. - format: int32 - type: integer - version: - description: Current version of job - format: int32 - type: integer - type: object - type: object - served: true - storage: true - subresources: - status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/bus_v1alpha1_command.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: commands.bus.volcano.sh -spec: - group: bus.volcano.sh - names: - kind: Command - listKind: CommandList - plural: commands - singular: command - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: Command defines command structure. - properties: - action: - description: Action defines the action that will be took to the target - object. - type: string - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - message: - description: Human-readable message indicating details of this command. - type: string - metadata: - type: object - reason: - description: Unique, one-word, CamelCase reason for this command. - type: string - target: - description: TargetObject defines the target object of this command. - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: If true, AND if the owner has the "foregroundDeletion" - finalizer, then the owner cannot be deleted from the key-value store - until this reference is removed. Defaults to false. To set this - field, a user needs "delete" permission of the owner, otherwise - 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - name: - description: 'Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - uid: - description: 'UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids' - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/controllers.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-controllers - namespace: volcano-system ---- -# Source: volcano/templates/controllers.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-controllers -rules: - - apiGroups: ["apiextensions.k8s.io"] - resources: ["customresourcedefinitions"] - verbs: ["create", "get", "list", "watch", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs"] - verbs: ["get", "list", "watch", "update", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs/status", "jobs/finalizers"] - verbs: ["update", "patch"] - - apiGroups: ["bus.volcano.sh"] - resources: ["commands"] - verbs: ["get", "list", "watch", "delete"] - - apiGroups: [""] - resources: ["events"] - verbs: ["create", "list", "watch", "update", "patch"] - - apiGroups: [""] - resources: ["pods"] - verbs: ["create", "get", "list", "watch", "update", "bind", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "create"] - - apiGroups: [""] - resources: ["services"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: [""] - resources: ["secrets"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups", "queues", "queues/status", "elasticresourcequotas", "elasticresourcequotas/status"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: ["scheduling.k8s.io"] - resources: ["priorityclasses"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: ["networking.k8s.io"] - resources: ["networkpolicies"] - verbs: ["get", "create", "delete"] ---- -# Source: volcano/templates/controllers.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-controllers-role -subjects: - - kind: ServiceAccount - name: volcano-controllers - namespace: volcano-system -roleRef: - kind: ClusterRole - name: volcano-controllers - apiGroup: rbac.authorization.k8s.io + - name: volcano-admission + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --tls-cert-file=/admission.local.config/certificates/tls.crt + - --tls-private-key-file=/admission.local.config/certificates/tls.key + - --ca-cert-file=/admission.local.config/certificates/ca.crt + - --webhook-namespace=paddleflow + - --webhook-service-name=volcano-admission-service + - --logtostderr=false + - --port=8443 + - -v=4 + - 2>&1 + - --alsologtostderr + - --log_dir=/tmp/log + - --log_file=/tmp/log/webhook.log + - --log_file_max_size=300 + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_admission-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + - name: volcano-admission-secret + #容器里配置文件存放路径 + mountPath: /admission.local.config/certificates + #容器里配置文件名称 + subPath: + initContainers: + volumes: + - name: logdir + hostPath: + path: /mnt/log/volcano/admission + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: volcano-admission-secret + secret: + secretName: volcano-admission-secret --- -# Source: volcano/templates/controllers.yaml -kind: Deployment +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-deployment.yaml apiVersion: apps/v1 +kind: Deployment metadata: - name: volcano-controllers - namespace: volcano-system + #文件里的所有volcano-controller、volcano_controller都替换成实际名称 + name: volcano-controller labels: app: volcano-controller + chart: "volcano-controller-0.0.11-rrm1js" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + app.kubernetes.io/name: 'volcano-controller' + app: volcano-controller + annotations: + app: volcano-controller + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -8504,151 +2069,71 @@ spec: metadata: labels: app: volcano-controller + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + app.kubernetes.io/name: 'volcano-controller' + app: volcano-controller + annotations: + app: volcano-controller spec: - serviceAccount: volcano-controllers + dnsPolicy: ClusterFirst + restartPolicy: Always + serviceAccountName: volcano-controllers containers: - - name: volcano-controllers - image: paddleflow/vc-controller-manager:pf-1.4-vc-1.3 - args: - - --logtostderr - - -v=4 - - 2>&1 - imagePullPolicy: "IfNotPresent" - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-scheduler - namespace: volcano-system ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: ConfigMap -metadata: - name: volcano-scheduler-configmap - namespace: volcano-system -data: - volcano-scheduler.conf: | - actions: "enqueue, allocate, backfill" - tiers: - - plugins: - - name: priority - - name: gang - - name: conformance - - plugins: - - name: drf - - name: predicates - - name: proportion - - name: nodeorder - - name: binpack ---- -# Source: volcano/templates/scheduler.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-scheduler -rules: - - apiGroups: ["apiextensions.k8s.io"] - resources: ["customresourcedefinitions"] - verbs: ["create", "get", "list", "watch", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs"] - verbs: ["get", "list", "watch", "update", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs/status"] - verbs: ["update", "patch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["create", "list", "watch", "update", "patch"] - - apiGroups: [""] - resources: ["pods", "pods/status"] - verbs: ["create", "get", "list", "watch", "update", "patch", "bind", "updateStatus", "delete"] - - apiGroups: [""] - resources: ["pods/binding"] - verbs: ["create"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["list", "watch", "update"] - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["namespaces"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["resourcequotas"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["list", "watch"] - - apiGroups: [ "storage.k8s.io" ] - resources: ["storageclasses", "csinodes", "csidrivers", "csistoragecapacities"] - verbs: [ "list", "watch" ] - - apiGroups: ["policy"] - resources: ["poddisruptionbudgets"] - verbs: ["list", "watch"] - - apiGroups: ["scheduling.k8s.io"] - resources: ["priorityclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["queues", "elasticresourcequotas"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups"] - verbs: ["list", "watch", "update"] - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "create", "delete", "update"] ---- -# Source: volcano/templates/scheduler.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-scheduler-role -subjects: - - kind: ServiceAccount - name: volcano-scheduler - namespace: volcano-system -roleRef: - kind: ClusterRole - name: volcano-scheduler - apiGroup: rbac.authorization.k8s.io ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: Service -metadata: - annotations: - prometheus.io/path: /metrics - prometheus.io/port: "8080" - prometheus.io/scrape: "true" - name: volcano-scheduler-service - namespace: volcano-system -spec: - ports: - - port: 8080 - protocol: TCP - targetPort: 8080 - selector: - app: volcano-scheduler - type: ClusterIP + - name: volcano-controller + image: "paddleflow/vc-controller-manager:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --logtostderr=false + - -v=4 + - 2>&1 + - --log_dir=/tmp/log + - --alsologtostderr + - --log_file=/tmp/log/controller.log + - --log_file_max_size=300 + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_controller-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + initContainers: + volumes: + - name: logdir + hostPath: + path: /mnt/log/volcano/controller + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- -# Source: volcano/templates/scheduler.yaml -kind: Deployment +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-deployment.yaml apiVersion: apps/v1 +kind: Deployment metadata: + #文件里的所有volcano-scheduler、volcano_scheduler都替换成实际名称 name: volcano-scheduler - namespace: volcano-system labels: app: volcano-scheduler + chart: "volcano-scheduler-0.0.23-rrm1mf" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + app: volcano-scheduler + annotations: + app: volcano-scheduler + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -8658,438 +2143,177 @@ spec: metadata: labels: app: volcano-scheduler + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + app: volcano-scheduler + annotations: + app: volcano-scheduler spec: - serviceAccount: volcano-scheduler + dnsPolicy: ClusterFirst + restartPolicy: Always + serviceAccountName: volcano-scheduler containers: - - name: volcano-scheduler - image: paddleflow/vc-scheduler:pf-1.4-vc-1.3 - args: - - --logtostderr - - --scheduler-conf=/volcano.scheduler/volcano-scheduler.conf - - -v=3 - - 2>&1 - imagePullPolicy: "IfNotPresent" - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - volumeMounts: - - name: scheduler-config - mountPath: /volcano.scheduler + - name: volcano-scheduler + image: "paddleflow/vc-scheduler:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --alsologtostderr + - --scheduler-conf=/volcano.scheduler/volcano-scheduler-pf.conf + - -v=4 + - 2>&1 + - --scheduler-name=volcano + - --log_dir=/tmp/log + - --logtostderr=false + - --log_file_max_size=100 + - --log_file=/tmp/log/scheduler.log + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_scheduler-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: scheduler-logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + - name: conf + #容器里配置文件存放路径 + mountPath: /volcano.scheduler/volcano-scheduler-pf.conf + #容器里配置文件名称 + subPath: volcano-scheduler-pf.conf + initContainers: volumes: - - name: scheduler-config - configMap: - name: volcano-scheduler-configmap ---- -# Source: volcano/templates/scheduling_v1beta1_podgroup.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: podgroups.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: PodGroup - listKind: PodGroupList - plural: podgroups - shortNames: - - pg - - podgroup-v1beta1 - singular: podgroup - scope: Namespaced - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - description: PodGroup is a collection of Pod; used for batch workload. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the pod group. - More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' - properties: - minMember: - description: MinMember defines the minimal number of members/tasks - to run the pod group; if there's not enough resources to start all - tasks, the scheduler will not start anyone. - format: int32 - type: integer - minResources: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: MinResources defines the minimal resource of members/tasks - to run the pod group; if there's not enough resources to start all - tasks, the scheduler will not start anyone. - type: object - minTaskMember: - additionalProperties: - format: int32 - type: integer - description: MinTaskMember defines the minimal number of pods to run - each task in the pod group; if there's not enough resources to start - each task, the scheduler will not start anyone. - type: object - priorityClassName: - description: If specified, indicates the PodGroup's priority. "system-node-critical" - and "system-cluster-critical" are two special keywords which indicate - the highest priorities with the former being the highest priority. - Any other name must be defined by creating a PriorityClass object - with that name. If not specified, the PodGroup priority will be - default or zero if there is no default. - type: string - queue: - description: Queue defines the queue to allocate resource for PodGroup; - if queue does not exist, the PodGroup will not be scheduled. Defaults - to `default` Queue with the lowest weight. - type: string - type: object - status: - description: Status represents the current information about a pod group. - This data may not be up to date. - properties: - conditions: - description: The conditions of PodGroup. - items: - description: PodGroupCondition contains details for the current - state of this pod group. - properties: - lastTransitionTime: - description: Last time the phase transitioned from another to - current phase. - format: date-time - type: string - message: - description: Human-readable message indicating details about - last transition. - type: string - reason: - description: Unique, one-word, CamelCase reason for the phase's - last transition. - type: string - status: - description: Status is the status of the condition. - type: string - transitionID: - description: The ID of condition transition. - type: string - type: - description: Type is the type of the condition - type: string - type: object - type: array - failed: - description: The number of pods which reached phase Failed. - format: int32 - type: integer - phase: - description: Current phase of PodGroup. - type: string - running: - description: The number of actively running pods. - format: int32 - type: integer - succeeded: - description: The number of pods which reached phase Succeeded. - format: int32 - type: integer - type: object - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/scheduling_v1beta1_queue.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: queues.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: Queue - listKind: QueueList - plural: queues - shortNames: - - q - - queue-v1beta1 - singular: queue - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - description: Queue is a queue of PodGroup. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the queue. More - info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' - properties: - capability: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: ResourceList is a set of (resource name, quantity) pairs. - type: object - reclaimable: - description: Reclaimable indicate whether the queue can be reclaimed - by other queue - type: boolean - weight: - format: int32 - type: integer - type: object - status: - description: The status of queue. - properties: - inqueue: - description: The number of `Inqueue` PodGroup in this queue. - format: int32 - type: integer - pending: - description: The number of 'Pending' PodGroup in this queue. - format: int32 - type: integer - running: - description: The number of 'Running' PodGroup in this queue. - format: int32 - type: integer - state: - description: State is state of queue - type: string - unknown: - description: The number of 'Unknown' PodGroup in this queue. - format: int32 - type: integer - type: object - type: object - served: true - storage: true - subresources: - status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] + - name: scheduler-logdir + hostPath: + path: /mnt/log/volcano/scheduler + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: conf + configMap: + name: volcano-scheduler --- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-job.yaml +apiVersion: batch/v1 +kind: Job metadata: + #文件里的所有volcano-admission-init、volcano_admission_init都替换成实际名称 + name: volcano-admission-init + labels: + app: volcano-admission-init + chart: "volcano-admission-init-0.0.8-rrm1o4" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + app.kubernetes.io/name: 'volcano-admission-init' + app: volcano-admission-init annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: elasticresourcequotas.scheduling.volcano.sh + reloader.stakater.com/auto: "false" spec: - group: scheduling.volcano.sh - names: - kind: ElasticResourceQuota - listKind: ElasticResourceQuotaList - plural: elasticresourcequotas - shortNames: - - equota - - equota-v1beta1 - singular: elasticresourcequota - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - type: object - properties: - kind: - type: string - description: >- - Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the - client submits requests to. Cannot be updated. In CamelCase. - More info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - spec: - type: object - properties: - max: - type: object - description: Max is the upper bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - min: - type: object - description: Min is the lower bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - namespace: - type: string - description: >- - namespace defines elastic resource quota belongs to one - namespace - reclaimable: - type: boolean - description: >- - Reclaimable indicate whether the elastic quota can be - reclaimed by other elastic resource quota - hardwareTypes: - type: array - items: - type: string - description: >- - HardwareTypes defines hardware types of elastic resource - quota - description: >- - Specification of the desired behavior of the - ElasticResourceQuota. More info: - https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status - status: - type: object - properties: - used: - type: object - description: Used resource of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - isLeaf: - type: boolean - description: IsLeaf defines whether elastic resource quota is leaf or not - queueName: - type: string - description: QueueName indicate bound queue - description: The status of ElasticResourceQuota. - metadata: - type: object - apiVersion: - type: string - description: >- - APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the - latest internal value, and may reject unrecognized values. More - info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - description: Elastic Resource Quota - served: true - storage: true - subresources: - status: {} - additionalPrinterColumns: - - name: Age - type: date - priority: 0 - jsonPath: .metadata.creationTimestamp - - name: Leaf - type: boolean - priority: 1 - jsonPath: .status.isLeaf - - name: QueueName - type: string - priority: 2 - description: The name of bound queue - jsonPath: .status.queueName - - name: Reclaim - type: boolean - priority: 3 - jsonPath: .spec.reclaimable - - name: Namespace - type: string - priority: 4 - description: The related of namespace - jsonPath: .spec.namespace - - name: HardwareTypes - type: string - priority: 5 - jsonPath: .spec.hardwareTypes - conversion: - strategy: None + backoffLimit: 3 + completions: 1 + parallelism: 1 + activeDeadlineSeconds: 120 + ttlSecondsAfterFinished: 100 + template: + metadata: + labels: + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + app.kubernetes.io/name: 'volcano-admission-init' + spec: + serviceAccountName: volcano-admission + containers: + - name: volcano-admission-init + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + command: + - ./gen-admission-secret.sh + - --service + - volcano-admission-service + - --namespace + - $(K8Sns) + - --secret + - volcano-admission-secret + env: + - name: "K8Sns" + valueFrom: + fieldRef: + fieldPath: metadata.namespace + securityContext: + privileged: false + #服务的环境变量,list形式,根据服务情况增加或删减 + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + initContainers: + volumes: + # 集群已存在的configMap和secret + restartPolicy: OnFailure --- -apiVersion: storage.k8s.io/v1beta1 +# Source: pfchart/charts/pfs-csi-provisioner/templates/paddleflowstorage.yaml +apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: - name: paddleflowstorage + name: paddleflowstorage spec: - attachRequired: false - podInfoOnMount: false - volumeLifecycleModes: - - Persistent + attachRequired: false + podInfoOnMount: false + volumeLifecycleModes: + - Persistent --- +# Source: pfchart/charts/volcano-scheduler/templates/high.yaml apiVersion: scheduling.k8s.io/v1 description: Used for critical pods that must not be moved from their current node. kind: PriorityClass metadata: - name: high - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/high + name: high + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/high value: 1000 - --- +# Source: pfchart/charts/volcano-scheduler/templates/low.yaml +apiVersion: scheduling.k8s.io/v1 +description: Used for low-priority Pods that are easily preempted. +kind: PriorityClass +metadata: + name: low + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/low +value: 50 +--- +# Source: pfchart/charts/volcano-scheduler/templates/normal.yaml apiVersion: scheduling.k8s.io/v1 description: Used for normal pods. +globalDefault: true kind: PriorityClass metadata: - name: normal - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/normal + name: normal + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/normal value: 100 - --- +# Source: pfchart/charts/volcano-scheduler/templates/very-high.yaml apiVersion: scheduling.k8s.io/v1 -description: Used for low-priority Pods that are easily preempted. +description: Used for system critical pods that must not be moved from their current node. kind: PriorityClass metadata: - name: low - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/low -value: 50 + name: very-high + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/very-high +value: 2000 +--- +# Source: pfchart/charts/volcano-scheduler/templates/very-low.yaml +apiVersion: scheduling.k8s.io/v1 +description: Used for pods that are easily preempted and unimportant. +kind: PriorityClass +metadata: + name: very-low + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/very-low +value: 10 +--- \ No newline at end of file diff --git a/installer/paddleflow-deployment-v1-13.yaml b/installer/paddleflow-deployment-v1-13.yaml index 85f57c350..5dff296d9 100644 --- a/installer/paddleflow-deployment-v1-13.yaml +++ b/installer/paddleflow-deployment-v1-13.yaml @@ -1,379 +1,242 @@ +--- apiVersion: v1 kind: Namespace metadata: name: paddleflow --- +# Source: pfchart/charts/paddleflow-server/templates/ServiceAccount-paddleflow-server.yaml apiVersion: v1 kind: ServiceAccount metadata: - name: csi-node-sa - namespace: paddleflow - + creationTimestamp: null + name: paddleflow-server + namespace: 'paddleflow' --- -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/pfs-csi-plugin/templates/ServiceAccount-csi-node-sa.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - name: paddleflow-csi-plugin-clusterrole -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete", "patch" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create" ] - - apiGroups: [""] - resources: ["nodes/proxy"] - verbs: ["get", "list", "watch", "update", "patch"] - + creationTimestamp: null + name: csi-node-sa + namespace: 'paddleflow' --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ServiceAccount-pfs-csi-provisioner.yaml apiVersion: v1 kind: ServiceAccount metadata: + creationTimestamp: null name: pfs-csi-provisioner - namespace: paddleflow - + namespace: 'paddleflow' --- -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-admission/templates/ServiceAccount-volcano-admission.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - name: external-provisioner-runner -rules: - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "update"] - - apiGroups: ["storage.k8s.io"] - resources: ["storageclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["list", "watch", "create", "update", "patch"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshots"] - verbs: ["get", "list"] - - apiGroups: ["snapshot.storage.k8s.io"] - resources: ["volumesnapshotcontents"] - verbs: ["get", "list"] - - apiGroups: ["storage.k8s.io"] - resources: ["csinodes"] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["get", "list", "watch"] - + creationTimestamp: null + name: volcano-admission + namespace: 'paddleflow' --- -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-controller/templates/ServiceAccount-volcano-controllers.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - name: csi-provisioner-role -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow -roleRef: - kind: ClusterRole - name: external-provisioner-runner - apiGroup: rbac.authorization.k8s.io - + creationTimestamp: null + name: volcano-controllers + namespace: 'paddleflow' --- -kind: Role -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-scheduler/templates/ServiceAccount-volcano-scheduler.yaml +apiVersion: v1 +kind: ServiceAccount metadata: - namespace: paddleflow - name: external-provisioner-cfg -rules: - - apiGroups: [""] - resources: ["endpoints"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - - apiGroups: ["coordination.k8s.io"] - resources: ["leases"] - verbs: ["get", "watch", "list", "delete", "update", "create"] - + creationTimestamp: null + name: volcano-scheduler + namespace: 'paddleflow' --- -kind: RoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: csi-provisioner-role-cfg - namespace: paddleflow -subjects: - - kind: ServiceAccount - name: pfs-csi-provisioner - namespace: paddleflow -roleRef: - kind: Role - name: external-provisioner-cfg - apiGroup: rbac.authorization.k8s.io - + labels: + app: 'paddleflow-server' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'paddleflow-server' + chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + heritage: 'Helm' + release: 'paddleflow' + name: 'paddleflow-server' +data: {} --- -# ServiceAccount for paddleflow-server +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-secret.yaml +kind: Secret apiVersion: v1 -kind: ServiceAccount metadata: - name: paddleflow-server - namespace: paddleflow - + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'paddleflow' + name: 'pfs-csi-plugin' +data: {} --- -# ClusterRole for paddleflow-server -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-server -rules: - - apiGroups: [""] - resources: ["events"] - verbs: ["get", "list", "watch", "create", "update", "patch"] - - apiGroups: [ "" ] - resources: [ "pods", "pods/log" ] - verbs: [ "create", "get", "list", "watch", "update", "bind", "delete" ] - - apiGroups: [ "" ] - resources: [ "persistentvolumeclaims", "persistentvolumes" ] - verbs: [ "get", "list", "watch", "create", "delete" ] - - apiGroups: [ "" ] - resources: [ "namespaces" ] - verbs: [ "get", "list" ] - - apiGroups: [""] - resources: ["nodes", "nodes/proxy"] - verbs: ["get", "list", "watch"] - - apiGroups: ["sparkoperator.k8s.io"] - resources: ["sparkapplications", "sparkapplications/status", "scheduledsparkapplications", "scheduledsparkapplications/status" ] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["batch.paddlepaddle.org"] - resources: ["paddlejobs", "paddlejobs/finalizers", "paddlejobs/status"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups", "queues", "queues/status", "elasticresourcequotas", "elasticresourcequotas/status"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["bus.volcano.sh"] - resources: ["commands"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs", "jobs/status", "jobs/finalizers"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["argoproj.io"] - resources: ["workflowtemplates", "workflowtemplates/finalizers", "clusterworkflowtemplates", "clusterworkflowtemplates/finalizers"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - - apiGroups: ["kubeflow.org"] - resources: ["*"] - verbs: ["create", "delete", "get", "list", "watch", "update"] - + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'volcano' + name: 'pfs-csi-provisioner' +data: {} --- -# ClusterRoleBinding for paddleflow-server -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-server -subjects: - - kind: ServiceAccount - name: paddleflow-server - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-server - apiGroup: rbac.authorization.k8s.io + labels: + app: 'volcano-admission-init' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission-init' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission-init' +data: {} --- -kind: Service +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-secret.yaml +kind: Secret apiVersion: v1 metadata: - name: pfs-csi-provisioner - labels: - app: pfs-csi-provisioner -spec: - selector: - app: pfs-csi-provisioner - ports: - - name: dummy - port: 12345 - + labels: + app: 'volcano-admission' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-admission' +data: {} --- -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-secret.yaml +kind: Secret +apiVersion: v1 metadata: - name: paddleflow-csi-node-binding -subjects: - - kind: ServiceAccount - name: csi-node-sa - namespace: paddleflow -roleRef: - kind: ClusterRole - name: paddleflow-csi-plugin-clusterrole - apiGroup: rbac.authorization.k8s.io - + labels: + app: 'volcano-controller' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-controller' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-controller' +data: {} --- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-secret.yaml +kind: Secret apiVersion: v1 +metadata: + labels: + app: 'volcano-scheduler' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-scheduler' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + heritage: 'Helm' + release: 'volcano' + name: 'volcano-scheduler' +data: {} +--- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'paddleflow-server' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'paddleflow-server' + chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + heritage: 'Helm' + release: 'paddleflow' + name: 'paddleflow-server' data: - default_pv.yaml: |2- - kind: PersistentVolume - metadata: - name: pfs-$(pfs.fs.id)-$(namespace)-pv - annotations: - pv.kubernetes.io/provisioned-by: paddleflowstorage - spec: - accessModes: - - ReadWriteMany - persistentVolumeReclaimPolicy: Delete - storageClassName: paddleflowstorage - capacity: - storage: 400Gi - csi: - driver: paddleflowstorage - fsType: ext4 - volumeAttributes: - pfs.fs.id: $(pfs.fs.id) - pfs.fs.info: $(pfs.fs.info) - pfs.fs.cache: $(pfs.fs.cache) - pfs.server: $(pfs.server) - volumeHandle: pfs-$(pfs.fs.id)-$(namespace)-pv - default_pvc.yaml: |2- - kind: PersistentVolumeClaim - metadata: - name: pfs-$(pfs.fs.id)-pvc - namespace: $(namespace) - spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: 100Gi - storageClassName: paddleflowstorage - volumeMode: Filesystem - volumeName: pfs-$(pfs.fs.id)-$(namespace)-pv - paddle_collective.yaml: |2 - apiVersion: batch.paddlepaddle.org/v1 - kind: PaddleJob - metadata: - name: default-name - spec: - cleanPodPolicy: Never - worker: - replicas: 2 - template: - spec: - containers: - - name: worker-name - image: paddleflow/demo-resnet:v1 - paddle_ps.yaml: |- - apiVersion: batch.paddlepaddle.org/v1 - kind: PaddleJob - metadata: - name: default-name - spec: - withGloo: 1 - intranet: PodIP - cleanPodPolicy: OnCompletion - worker: - replicas: 2 - template: + default_pv.yaml: |4- + kind: PersistentVolume + metadata: + name: pfs-$(pfs.fs.id)-$(namespace)-pv + annotations: + pv.kubernetes.io/provisioned-by: paddleflowstorage spec: - containers: - - name: worker-name - image: paddleflow/demo-wide-and-deep:v1 - ps: - replicas: 2 - template: + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Delete + storageClassName: paddleflowstorage + capacity: + storage: 400Gi + csi: + driver: paddleflowstorage + fsType: ext4 + volumeAttributes: + pfs.fs.id: $(pfs.fs.id) + pfs.server: $(pfs.server) + volumeHandle: pfs-$(pfs.fs.id)-$(namespace)-pv + default_pvc.yaml: |4- + kind: PersistentVolumeClaim + metadata: + name: pfs-$(pfs.fs.id)-pvc + namespace: $(namespace) spec: - containers: - - name: ps-name - image: paddleflow/demo-wide-and-deep:v1 - paddleserver.yaml: |2 - database: - driver: sqlite - host: 127.0.0.1 - port: 3306 - user: paddleflow - password: paddleflow - database: paddleflow - - log: - dir: ./ - filePrefix: log - level: INFO - maxKeepDays: 7 - maxFileNum: 7 - maxFileSizeInMB: 100 - isCompress: true - - traceLog: - dir: ./ - filePrefix: trace-log - level: INFO - maxKeepDays: 7 - maxFileNum: 7 - maxFileSizeInMB: 100 - isCompress: true - timeout: 2h - maxCacheSize: 10000 - syncInterval: 30s - deleteInterval: 10s - - apiServer: - host: "paddleflow-server" - port: 8999 - tokenExpirationHour: -1 - - fs: - defaultPVPath: "./config/fs/default_pv.yaml" - defaultPVCPath: "./config/fs/default_pvc.yaml" - servicePort: 8999 - - job: - reclaim: - isCleanJob: true - isSkipCleanFailedJob: false - succeededJobTTLSeconds: 600 - failedJobTTLSeconds: 3600 - schedulerName: volcano - clusterSyncPeriod: 30 - defaultJobYamlDir: "./config/server/default/job" - isSingleCluster: true - - pipeline: pipeline - - imageRepository: - server: "" - namespace: "" - username: "" - password: "" - concurrency: 10 - removeLocalImage: true - - monitor: - server: "" - - metrics: - enable: true - port: 8231 - - single.yaml: |- - apiVersion: v1 - kind: Pod - metadata: - name: default-name - namespace: default - spec: - containers: - - image: nginx - imagePullPolicy: Always - name: job-default-name - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - dnsPolicy: ClusterFirst - enableServiceLinks: true - priorityClassName: normal - restartPolicy: Always - schedulerName: volcano - securityContext: {} - serviceAccount: default - serviceAccountName: default - terminationGracePeriodSeconds: 30 - spark.yaml: |2 + accessModes: + - ReadWriteMany + resources: + requests: + storage: 100Gi + storageClassName: paddleflowstorage + volumeMode: Filesystem + volumeName: pfs-$(pfs.fs.id)-$(namespace)-pv + job_template.yaml: | + apiVersion: v1 + kind: Pod + metadata: + name: default-name + namespace: default + spec: + containers: + - image: nginx + imagePullPolicy: IfNotPresent + name: job-default-name + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + dnsPolicy: ClusterFirst + enableServiceLinks: true + priorityClassName: normal + restartPolicy: Never + schedulerName: volcano + securityContext: {} + serviceAccount: default + serviceAccountName: default + terminationGracePeriodSeconds: 30 + # single-job + --- apiVersion: sparkoperator.k8s.io/v1beta2 kind: SparkApplication metadata: @@ -382,770 +245,1733 @@ data: spec: driver: serviceAccount: spark + terminationGracePeriodSeconds: 30 executor: - image: paddleflow/spark:pyml-2.8.0 + terminationGracePeriodSeconds: 30 + image: imagePullPolicy: IfNotPresent - mainApplicationFile: local:///opt/spark/examples/jars/spark-examples_2.11-2.4.0.jar - mainClass: org.apache.spark.examples.SparkPi + mainApplicationFile: + mainClass: mode: cluster restartPolicy: onSubmissionFailureRetries: 3 onSubmissionFailureRetryInterval: 5 type: Never sparkConf: - spark.driver.extraJavaOptions: -Dsun.zip.disableMemoryMapping=true - spark.executor.extraJavaOptions: -Dsun.zip.disableMemoryMapping=true spark.hadoop.mapreduce.fileoutputcommitter.algorithm.version: "2" sparkVersion: 3.0.0 type: Scala batchSchedulerOptions: - queue: default - priorityClass: normal - telegraf.conf: | - [global_tags] - vcjob_collective.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + queue: + priorityClass: + # spark-job + --- + apiVersion: batch.paddlepaddle.org/v1 + kind: PaddleJob metadata: - name: vcJobName + name: default-name spec: - minAvailable: 2 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - plugins: - ssh: [] - env: [] - svc: [] - maxRetry: 5 - queue: default - tasks: - - replicas: 2 - name: "task" + withGloo: 1 + intranet: PodIP + cleanPodPolicy: OnCompletion + worker: + replicas: 2 + template: + spec: + containers: + - name: paddle + image: registry.baidubce.com/paddle-operator/demo-wide-and-deep:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + ps: + replicas: 2 + template: + spec: + containers: + - name: paddle + image: registry.baidubce.com/paddle-operator/demo-wide-and-deep:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + # paddle-ps-job + --- + apiVersion: batch.paddlepaddle.org/v1 + kind: PaddleJob + metadata: + name: default-name + spec: + cleanPodPolicy: Never + worker: + replicas: 2 + template: + spec: + containers: + - name: worker-name + image: registry.baidubce.com/paddle-operator/demo-resnet:v1 + terminationGracePeriodSeconds: 30 + restartPolicy: Never + # paddle-collective-job + --- + apiVersion: "kubeflow.org/v1" + kind: "PyTorchJob" + metadata: + name: "pytorch-dist-sendrecv" + spec: + pytorchReplicaSpecs: + Master: + replicas: 1 + restartPolicy: Never + template: + spec: + containers: + - name: pytorch + command: + - /bin/sh + - -c + - sleep 10 + image: paddleflow/pytorch-dist-sendrecv-test:1.12.0 + Worker: + replicas: 1 + restartPolicy: Never template: - metadata: - name: templateName spec: containers: - - image: collective-container - imagePullPolicy: IfNotPresent - name: defaultContainer - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob - vcjob_pod.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + - name: pytorch + command: + - /bin/sh + - -c + - sleep 10 + image: paddleflow/pytorch-dist-sendrecv-test:1.12.0 + # pytorch-ps-job + --- + apiVersion: "kubeflow.org/v1" + kind: "TFJob" metadata: - name: vcJobName + name: "tf-mnist-dist" spec: - minAvailable: 1 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - maxRetry: 5 - queue: default - tasks: - - replicas: 1 - name: "task" + tfReplicaSpecs: + PS: + replicas: 1 + restartPolicy: Never template: - metadata: - name: pod spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: container - resources: - requests: - cpu: "1" - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob - vcjob_ps.yaml: |2 - apiVersion: batch.volcano.sh/v1alpha1 - kind: Job + - name: tensorflow + image: tf-mnist-dist:1.2 + command: + - "python" + - "/var/tf_dist_mnist/dist_mnist.py" + - "--num_gpus=0" + # faster trainning + - "--train_steps=1" + Worker: + replicas: 1 + restartPolicy: Never + template: + spec: + containers: + - name: tensorflow + image: tf-mnist-dist:1.2 + command: + - "python" + - "/var/tf_dist_mnist/dist_mnist.py" + - "--num_gpus=0" + - "--train_steps=1" + # tensorflow-ps-job + --- + apiVersion: ray.io/v1alpha1 + kind: RayJob metadata: - name: vcJobName + name: rayjob-sample spec: - minAvailable: 3 - schedulerName: volcano - priorityClassName: normal - policies: - - event: PodEvicted - action: RestartJob - plugins: - ssh: [] - env: [] - svc: [] - maxRetry: 5 - queue: default - tasks: - - replicas: 1 - name: "ps" - ports: - - ps-port: 8001 + entrypoint: sleep 60 + shutdownAfterJobFinishes: true + rayClusterSpec: + rayVersion: '2.0.0' + enableInTreeAutoscaling: true + headGroupSpec: + serviceType: ClusterIP + replicas: 1 + rayStartParams: + node-ip-address: $MY_POD_IP + block: 'true' template: metadata: - name: web + labels: + rayCluster: raycluster-heterogeneous + rayNodeType: head + groupName: headgroup + annotations: + key: value + spec: + containers: + - name: ray-head + image: rayproject/ray:2.0.0 + env: + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + workerGroupSpecs: + - replicas: 1 + minReplicas: 1 + maxReplicas: 5 + groupName: small-group + rayStartParams: + node-ip-address: $MY_POD_IP + block: 'true' + template: + metadata: + labels: + key: value + annotations: + key: value + spec: + initContainers: + - name: init-myservice + image: busybox:1 + command: [ 'sh', '-c', "until nslookup $RAY_IP.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for myservice; sleep 2; done" ] + containers: + - name: machine-learning + image: rayproject/ray:2.0.0 + env: + - name: RAY_DISABLE_DOCKER_CPU_WARNING + value: "1" + - name: TYPE + value: "worker" + - name: CPU_REQUEST + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: requests.cpu + - name: CPU_LIMITS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: limits.cpu + - name: MEMORY_LIMITS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: limits.memory + - name: MEMORY_REQUESTS + valueFrom: + resourceFieldRef: + containerName: machine-learning + resource: requests.memory + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + ports: + - containerPort: 80 + name: client + lifecycle: + preStop: + exec: + command: [ "/bin/sh","-c","ray stop" ] + # ray-job + --- + apiVersion: kubeflow.org/v1 + kind: MPIJob + metadata: + name: tensorflow-mnist + spec: + slotsPerWorker: 1 + runPolicy: + cleanPodPolicy: Running + mpiReplicaSpecs: + Launcher: + replicas: 1 + template: spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: ps + - image: horovod/horovod:0.20.0-tf2.3.0-torch1.6.0-mxnet1.5.0-py3.7-cpu + name: mpi + command: + - mpirun + args: + - -np + - "2" + - --allow-run-as-root + - -bind-to + - none + - -map-by + - slot + - -x + - LD_LIBRARY_PATH + - -x + - PATH + - -mca + - pml + - ob1 + - -mca + - btl + - ^openib + - python + - /examples/tensorflow2_mnist.py resources: - requests: - cpu: "1" - restartPolicy: OnFailure - - replicas: 2 - name: "worker" - ports: - - worker-port: 8001 + limits: + cpu: 1 + memory: 2Gi + Worker: + replicas: 2 template: - metadata: - name: web spec: containers: - - image: nginx - imagePullPolicy: IfNotPresent - name: worker + - image: horovod/horovod:0.20.0-tf2.3.0-torch1.6.0-mxnet1.5.0-py3.7-cpu + name: mpi resources: - requests: - cpu: "1" - restartPolicy: Never - policies: - - event: TaskCompleted - action: CompleteJob + limits: + cpu: 2 + memory: 4Gi + # mpi-job + --- + paddleserver.yaml: | + database: + driver: sqlite + host: mysql-standalone + port: 3306 + user: root + password: Paddle@2022 + database: paddleflow + monitor: + server: "http://127.0.0.1:8395" + metrics: + port: 8231 + enable: true + log: + dir: ./ + filePrefix: log + level: INFO + maxKeepDays: 7 + maxFileNum: 7 + maxFileSizeInMB: 100 + isCompress: true + traceLog: + dir: ./ + filePrefix: trace-log + level: INFO + maxKeepDays: 7 + maxFileNum: 7 + maxFileSizeInMB: 100 + isCompress: true + timeout: 2h + maxCacheSize: 10000 + syncInterval: 30s + deleteInterval: 10s + apiServer: + host: paddleflow-server + port: 8999 + tokenExpirationHour: -1 + fs: + defaultPVPath: "./config/fs/default_pv.yaml" + defaultPVCPath: "./config/fs/default_pvc.yaml" + servicePort: 8999 + job: + reclaim: + isCleanJob: true + isSkipCleanFailedJob: false + succeededJobTTLSeconds: 3600 + failedJobTTLSeconds: 36000 + schedulerName: volcano + clusterSyncPeriod: 30 + defaultJobYamlDir: "./config/server/default/job" + defaultJobYamlPath: "./config/server/default/job/job_template.yaml" + isSingleCluster: true + pipeline: pipeline + imageRepository: + server: "" + namespace: "" + username: "" + password: "" + concurrency: 10 + removeLocalImage: true + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-plugin' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-plugin' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + heritage: 'Helm' + release: 'paddleflow' + name: 'pfs-csi-plugin' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'pfs-csi-provisioner' + app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'pfs-csi-provisioner' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + heritage: 'Helm' + release: 'paddleflow' + name: 'pfs-csi-provisioner' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission-init' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission-init' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-admission-init' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-admission' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-admission' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-admission' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-configmap.yaml +kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-controller' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-controller' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-controller' +data: + telegraf.conf: |4 + [global_tags] +binaryData: {} +--- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-configmap.yaml kind: ConfigMap +apiVersion: v1 +metadata: + labels: + app: 'volcano-scheduler' + app.kubernetes.io/instance: 'volcano' + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/name: 'volcano-scheduler' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + heritage: 'Helm' + release: 'paddleflow' + name: 'volcano-scheduler' +data: + telegraf.conf: |4 + [global_tags] + volcano-scheduler-pf.conf: |4 + actions: "enqueue, allocate, preemptpf, backfill" + tiers: + - plugins: + - name: priority + enableJobOrder: true + - name: gang + - name: conformance + - plugins: + - name: kmpredicates + arguments: + kmpredicate.GPUTopoEnable: true + kmpredicate.AvailableGPUTypes: "baidu.com/gpu_p40_8,baidu.com/v100_cgpu,baidu.com/p40_cgpu" + - name: proportionpf + enableJobEnqueued: true + - name: nodeorder + - name: binpack + arguments: + binpack.weight: 10 + binpack.cpu: 3 + binpack.memory: 1 + binpack.resources: baidu.com/p40_cgpu, baidu.com/p40_cgpu_core, baidu.com/p40_cgpu_memory, baidu.com/v100_cgpu, baidu.com/v100_cgpu_core, baidu.com/v100_cgpu_memory + binpack.resources.baidu.com/v100_cgpu_memory: 6 + binpack.resources.baidu.com/p40_cgpu: 0 + binpack.resources.baidu.com/p40_cgpu_core: 0 + binpack.resources.baidu.com/p40_cgpu_memory: 6 +binaryData: {} +--- +# Source: pfchart/charts/paddleflow-server/templates/ClusterRole-paddleflow-server.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: paddleflow-server +rules: +- apiGroups: + - "" + resources: + - events + - pods + - pods/log + - services + - persistentvolumeclaims + - persistentvolumes + verbs: + - '*' +- apiGroups: + - apps + resources: + - '*' + verbs: + - '*' +- apiGroups: + - "" + resources: + - '*' + verbs: + - get + - list + - watch +- apiGroups: + - sparkoperator.k8s.io + - batch.paddlepaddle.org + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + - bus.volcano.sh + - batch.volcano.sh + - argoproj.io + - kubeflow.org + - ray.io + resources: + - '*' + verbs: + - '*' +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRole-paddleflow-csi-plugin-clusterrole.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: paddleflow-csi-plugin-clusterrole +rules: +- apiGroups: + - "" + resources: + - events + verbs: + - get + - list + - watch + - create + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete + - patch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create + - update + - bind + - patch +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - nodes/proxy + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRole-external-provisioner-runner.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: external-provisioner-runner +rules: +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - events + verbs: + - list + - watch + - create + - update + - patch +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshots + verbs: + - get + - list +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshotcontents + verbs: + - get + - list +- apiGroups: + - storage.k8s.io + resources: + - csinodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/volcano-admission/templates/ClusterRole-volcano-admission.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: volcano-admission +rules: +- apiGroups: + - "" + resources: + - configmaps + - nodes + - namespaces + verbs: + - get + - list + - watch +- apiGroups: + - admissionregistration.k8s.io + resources: + - mutatingwebhookconfigurations + - validatingwebhookconfigurations + verbs: + - get + - list + - watch + - create + - update +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests + verbs: + - get + - list + - create + - delete +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests/approval + verbs: + - create + - update +- apiGroups: + - "" + resources: + - secrets + verbs: + - create + - get + - patch +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - queues + verbs: + - get + - list +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - elasticresourcequotas + - elasticresourcequotas/status + verbs: + - get + - list + - update +- apiGroups: + - "" + resources: + - services + verbs: + - get +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + verbs: + - get + - list + - watch +--- +# Source: pfchart/charts/volcano-controller/templates/ClusterRole-volcano-controllers.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole metadata: + creationTimestamp: null + name: volcano-controllers +rules: +- apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - create + - get + - list + - watch + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs + verbs: + - get + - list + - watch + - update + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs/status + - jobs/finalizers + verbs: + - update + - patch +- apiGroups: + - bus.volcano.sh + resources: + - commands + verbs: + - get + - list + - watch + - delete +- apiGroups: + - "" + resources: + - events + verbs: + - create + - list + - watch + - update + - patch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - get + - list + - watch + - update + - bind + - delete +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - get + - list + - watch + - create +- apiGroups: + - "" + resources: + - services + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - "" + resources: + - secrets + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + - queues + - queues/status + - elasticresourcequotas + - elasticresourcequotas/status + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - scheduling.k8s.io + resources: + - priorityclasses + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - networking.k8s.io + resources: + - networkpolicies + verbs: + - get + - create + - delete +--- +# Source: pfchart/charts/volcano-scheduler/templates/ClusterRole-volcano-scheduler.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: volcano-scheduler +rules: +- apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - create + - get + - list + - watch + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs + verbs: + - get + - list + - watch + - update + - delete +- apiGroups: + - batch.volcano.sh + resources: + - jobs/status + verbs: + - update + - patch +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - list + - watch + - create + - delete + - update +- apiGroups: + - "" + resources: + - events + verbs: + - create + - list + - watch + - update + - patch +- apiGroups: + - "" + resources: + - pods + - pods/status + verbs: + - create + - get + - list + - watch + - update + - patch + - bind + - updateStatus + - delete +- apiGroups: + - "" + resources: + - pods/binding + verbs: + - create +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - list + - watch + - get +- apiGroups: + - "" + resources: + - persistentvolumes + verbs: + - list + - watch + - get +- apiGroups: + - "" + resources: + - namespaces + verbs: + - list + - watch +- apiGroups: + - "" + resources: + - resourcequotas + verbs: + - list + - watch + - create + - update +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + verbs: + - list + - watch +- apiGroups: + - "" + resources: + - nodes + verbs: + - list + - watch +- apiGroups: + - policy + resources: + - poddisruptionbudgets + verbs: + - list + - watch +- apiGroups: + - scheduling.k8s.io + resources: + - priorityclasses + verbs: + - get + - list + - watch +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - queues + - elasticresourcequotas + verbs: + - get + - list + - watch + - create + - delete +- apiGroups: + - scheduling.incubator.k8s.io + - scheduling.volcano.sh + resources: + - podgroups + verbs: + - list + - watch + - update +--- +# Source: pfchart/charts/paddleflow-server/templates/ClusterRoleBinding-paddleflow-server.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: paddleflow-server +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-server +subjects: +- kind: ServiceAccount name: paddleflow-server namespace: paddleflow --- +# Source: pfchart/charts/pfs-csi-plugin/templates/ClusterRoleBinding-csi-plugin-clusterrolebinding.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: csi-plugin-clusterrolebinding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: paddleflow-csi-plugin-clusterrole +subjects: +- kind: ServiceAccount + name: csi-node-sa + namespace: paddleflow +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/ClusterRoleBinding-csi-provisioner-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: csi-provisioner-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: external-provisioner-runner +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' +--- +# Source: pfchart/charts/volcano-admission/templates/ClusterRoleBinding-volcano-admission-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-admission-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-admission +subjects: +- kind: ServiceAccount + name: volcano-admission + namespace: paddleflow +--- +# Source: pfchart/charts/volcano-controller/templates/ClusterRoleBinding-volcano-controllers-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-controllers-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-controllers +subjects: +- kind: ServiceAccount + name: volcano-controllers + namespace: paddleflow +--- +# Source: pfchart/charts/volcano-scheduler/templates/ClusterRoleBinding-volcano-scheduler-role.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + creationTimestamp: null + name: volcano-scheduler-role +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: volcano-scheduler +subjects: +- kind: ServiceAccount + name: volcano-scheduler + namespace: paddleflow +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/Role-external-provisioner-cfg.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + creationTimestamp: null + name: external-provisioner-cfg + namespace: 'paddleflow' +rules: +- apiGroups: + - "" + resources: + - endpoints + verbs: + - get + - watch + - list + - delete + - update + - create +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - get + - watch + - list + - delete + - update + - create +--- +# Source: pfchart/charts/pfs-csi-provisioner/templates/RoleBinding-csi-provisioner-role-cfg.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + creationTimestamp: null + name: csi-provisioner-role-cfg + namespace: 'paddleflow' +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: external-provisioner-cfg +subjects: +- kind: ServiceAccount + name: pfs-csi-provisioner + namespace: 'paddleflow' +--- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-service.yaml apiVersion: v1 kind: Service metadata: name: paddleflow-server - namespace: paddleflow labels: app: paddleflow-server + chart: "paddleflow-server-0.10.61-rrx7rl-tmp" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + app.kubernetes.io/name: 'paddleflow-server' + + annotations: spec: type: NodePort + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 ports: - - port: 8999 - name: listen - targetPort: 8999 - nodePort: 8999 + - name: port-0 + port: 8999 + nodePort: 8999 + protocol: TCP + targetPort: 8999 + - name: port-2 + port: 8231 + nodePort: 8231 + protocol: TCP + targetPort: 8231 selector: app: paddleflow-server --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-service.yaml apiVersion: v1 kind: Service metadata: + name: pfs-csi-provisioner-service labels: - app: paddleflow-server - name: paddleflow-server-metrics - namespace: paddleflow + app: pfs-csi-provisioner + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + + annotations: spec: + type: ClusterIP + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 ports: - - name: metrics - nodePort: 8231 - port: 8231 - targetPort: 8231 - protocol: TCP + - name: port-0 + port: 12345 + protocol: TCP + targetPort: 12345 selector: - app: paddleflow-server + app: pfs-csi-provisioner +--- +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: volcano-admission-service + labels: + app: volcano-admission + chart: "volcano-admission-0.0.21-rrm1l0" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' + + annotations: +spec: type: NodePort + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: + port: 443 + nodePort: 18443 + protocol: TCP + targetPort: 8443 + selector: + app: volcano-admission +--- +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: volcano-scheduler-service + labels: + app: volcano-scheduler + chart: "volcano-scheduler-0.0.23-rrm1mf" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + + annotations: +spec: + type: ClusterIP + sessionAffinity: None + sessionAffinityConfig: + clientIP: + timeoutSeconds: 10800 + ports: + - name: port-0 + port: 8080 + protocol: TCP + targetPort: 8080 + selector: + app: volcano-scheduler --- +kind: ElasticResourceQuota +spec: + max: + cpu: '0' + memory: '0' + min: + cpu: '0' + memory: '0' + namespace: default +metadata: + name: root + labels: + paddleflow.baidu.com/resource-isolation-type: logical +apiVersion: scheduling.volcano.sh/v1beta1 +--- +# Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-daemonset.yaml apiVersion: apps/v1 -kind: Deployment +kind: DaemonSet metadata: - name: paddleflow-server - namespace: paddleflow + #文件里的所有pfs-csi-plugin、pfs_csi_plugin都替换成实际名称 + name: pfs-csi-plugin labels: - app: paddleflow-server + app: pfs-csi-plugin + chart: "pfs-csi-plugin-0.0.80-rrnwa0" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' + annotations: + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 - replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: - app: paddleflow-server - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate + app: pfs-csi-plugin template: metadata: - creationTimestamp: null labels: - app: paddleflow-server + app: pfs-csi-plugin + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + app.kubernetes.io/name: 'pfs-csi-plugin' spec: + dnsPolicy: ClusterFirstWithHostNet + restartPolicy: Always + hostNetwork: true + serviceAccountName: csi-node-sa containers: - - args: - - -c - - cd /home/paddleflow/server && ./paddleflow - command: - - /bin/sh - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + - name: pfs-csi-plugin + image: "paddleflow/csi-driver-registrar:1.2.0" + imagePullPolicy: "IfNotPresent" + lifecycle: + preStop: + exec: + command: + - /bin/sh + - -c + - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock + args: + - --v=5 + - --csi-address=/csi/csi.sock + - --kubelet-registration-path=$(KUBELET_DATA_PATH)/plugins/pfs-csi/csi.sock + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_plugin-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - image: paddleflow/paddleflow-server:1.4.2 - imagePullPolicy: IfNotPresent - name: paddleflow-server - ports: - - containerPort: 8999 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "8G" - cpu: "8000m" - securityContext: - privileged: false - runAsGroup: 1000 - runAsUser: 1000 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /home/paddleflow/server/paddleflow.db - mountPropagation: None - name: paddleflowdb - - mountPath: /home/paddleflow/server/config/server/default/paddleserver.yaml - name: conf - subPath: paddleserver.yaml - - mountPath: /home/paddleflow/server/config/fs/default_pvc.yaml - name: conf - subPath: default_pvc.yaml - - mountPath: /home/paddleflow/server/config/fs/default_pv.yaml - name: conf - subPath: default_pv.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/spark.yaml - name: conf - subPath: spark.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_ps.yaml - name: conf - subPath: vcjob_ps.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_pod.yaml - name: conf - subPath: vcjob_pod.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/vcjob_collective.yaml - name: conf - subPath: vcjob_collective.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/paddle_collective.yaml - name: conf - subPath: paddle_collective.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/paddle_ps.yaml - name: conf - subPath: paddle_ps.yaml - - mountPath: /home/paddleflow/server/config/server/default/job/single.yaml - name: conf - subPath: single.yaml - dnsPolicy: ClusterFirst - restartPolicy: Always - schedulerName: default-scheduler - serviceAccount: paddleflow-server - serviceAccountName: paddleflow-server - securityContext: - runAsGroup: 1000 - runAsUser: 1000 - terminationGracePeriodSeconds: 30 + + - name: "MOUNT_POINT_INTERVAL_TIME" + value: "10" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: registration-dir + mountPath: /registration + mountPropagation: None + subPath: + + - name: csi-storage-driver + image: "paddleflow/pfs-csi-plugin:1.4.6" + imagePullPolicy: + command: + - /sbin/tini + - -- + - /bin/sh + - -c + - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) + --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow + --log-level=debug + securityContext: + capabilities: + add: + - SYS_ADMIN + privileged: true + runAsGroup: 0 + runAsUser: 0 + resources: + requests: + cpu: "0.5" + memory: 1000Mi + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #env_list + - name: "CSI_ENDPOINT" + value: "unix:///csi/csi.sock" + - name: "DEFAULT_GID_ENV" + value: "601" + - name: "DEFAULT_UID_ENV" + value: "601" + - name: "KUBELET_DATA_PATH" + value: "/var/lib/kubelet" + - name: "CSI_NAMESPACE" + valueFrom: + fieldRef: + fieldPath: metadata.namespace + + - name: "CSI_POD_NAME" + valueFrom: + fieldRef: + fieldPath: metadata.name + + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: + fieldPath: spec.nodeName + #env end + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + - name: mountpoint-dir + mountPath: /var/lib/kubelet/pods + mountPropagation: Bidirectional + subPath: + - name: plugins-dir + mountPath: /var/lib/kubelet/plugins + mountPropagation: Bidirectional + subPath: + - name: paddlefow-csi-log + mountPath: /home/paddleflow/log + mountPropagation: None + subPath: + - name: pfs-mnt + mountPath: /home/paddleflow/mnt + mountPropagation: Bidirectional + subPath: + + #sidecar container messages + initContainers: volumes: - - hostPath: - path: /mnt/paddleflow.db - type: FileOrCreate - name: paddleflowdb - - configMap: - defaultMode: 420 - name: paddleflow-server - name: conf + - name: fuse + hostPath: + path: /dev/fuse + type: File + - name: mountpoint-dir + hostPath: + path: /var/lib/kubelet/pods + type: DirectoryOrCreate + - name: paddlefow-csi-log + hostPath: + path: /home/paddleflow/log + type: DirectoryOrCreate + - name: pfs-mnt + hostPath: + path: /var/lib/kubelet/data/paddleflow-fs/mnt + type: DirectoryOrCreate + - name: plugins-dir + hostPath: + path: /var/lib/kubelet/plugins + type: DirectoryOrCreate + - name: registration-dir + hostPath: + path: /var/lib/kubelet/plugins_registry + type: DirectoryOrCreate + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- +# Source: pfchart/charts/paddleflow-server/templates/paddleflow-server-deployment.yaml apiVersion: apps/v1 -kind: DaemonSet +kind: Deployment metadata: - name: pfs-csi-plugin - namespace: paddleflow + #文件里的所有paddleflow-server、paddleflow_server都替换成实际名称 + name: paddleflow-server + labels: + app: paddleflow-server + chart: "paddleflow-server-0.10.61-rrx7rl-tmp" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + app.kubernetes.io/name: 'paddleflow-server' + annotations: + reloader.stakater.com/auto: "false" spec: - revisionHistoryLimit: 10 + replicas: 1 selector: matchLabels: - app: pfs-csi-plugin + app: paddleflow-server template: metadata: - creationTimestamp: null labels: - app: pfs-csi-plugin + app: paddleflow-server + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + app.kubernetes.io/name: 'paddleflow-server' spec: + dnsPolicy: ClusterFirst + restartPolicy: Always + securityContext: + runAsGroup: 1000 + runAsUser: 1000 + serviceAccountName: paddleflow-server containers: - - args: - - --v=5 - - --csi-address=/csi/csi.sock - - --kubelet-registration-path=/var/lib/kubelet/plugins/pfs-csi/csi.sock - env: - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: spec.nodeName - - name: MOUNT_POINT_INTERVAL_TIME - value: "10" - image: paddleflow/csi-driver-registrar:1.2.0 - imagePullPolicy: IfNotPresent - lifecycle: - preStop: - exec: - command: - - /bin/sh - - -c - - rm -rf /registration/pfs-csi /registration/paddleflowstorage-reg.sock - name: pfs-csi-plugin - resources: {} - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /registration - mountPropagation: None - name: registration-dir - - command: - - tini - - -- - - /bin/sh - - -c - - cd /home/paddleflow && /home/paddleflow/csi-plugin --unix-endpoint=$(CSI_ENDPOINT) - --node-id=$(KUBE_NODE_NAME) --log-dir=./log/csidriver --username=root --password=paddleflow - --log-level=debug - env: - - name: CSI_ENDPOINT - value: unix:///csi/csi.sock - - name: DEFAULT_GID_ENV - value: "601" - - name: DEFAULT_UID_ENV - value: "601" - - name: KUBELET_DATA_PATH - value: /var/lib/kubelet - - name: CSI_POD_NAME - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.name - - name: CSI_NAMESPACE - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: metadata.namespace - - name: KUBE_NODE_NAME - valueFrom: - fieldRef: - apiVersion: v1 + - name: paddleflow-server + image: "paddleflow/paddleflow-server:1.4.6" + imagePullPolicy: "IfNotPresent" + command: + - /bin/sh + args: + #container_args list + - -c + - cd /home/paddleflow/server && ./paddleflow + securityContext: + privileged: false + runAsGroup: 1000 + runAsUser: 1000 + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟paddleflow_server-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + - name: "KUBE_NODE_NAME" + valueFrom: + fieldRef: fieldPath: spec.nodeName - image: paddleflow/pfs-csi-plugin:1.4.2 - imagePullPolicy: IfNotPresent - name: csi-storage-driver - resources: - requests: - cpu: "500m" - memory: 1G - securityContext: - capabilities: - add: - - SYS_ADMIN - privileged: true - runAsGroup: 0 - runAsUser: 0 - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir - - mountPath: /var/lib/kubelet/pods - mountPropagation: Bidirectional - name: mountpoint-dir - - mountPath: /var/lib/kubelet/plugins - mountPropagation: Bidirectional - name: plugins-dir - - mountPath: /home/paddleflow/log - mountPropagation: None - name: paddlefow-csi-log - - mountPath: /home/paddleflow/mnt - mountPropagation: Bidirectional - name: pfs-mnt - dnsPolicy: ClusterFirstWithHostNet - hostNetwork: true - restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: csi-node-sa - serviceAccountName: csi-node-sa - terminationGracePeriodSeconds: 30 + + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/server/default/paddleserver.yaml + #容器里配置文件名称 + subPath: paddleserver.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/fs/default_pvc.yaml + #容器里配置文件名称 + subPath: default_pvc.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/fs/default_pv.yaml + #容器里配置文件名称 + subPath: default_pv.yaml + - name: conf + #容器里配置文件存放路径 + mountPath: /home/paddleflow/server/config/server/default/job/job_template.yaml + #容器里配置文件名称 + subPath: job_template.yaml + initContainers: volumes: - - hostPath: - path: /dev/fuse - type: File - name: fuse - - hostPath: - path: /var/lib/kubelet/pods - type: DirectoryOrCreate - name: mountpoint-dir - - hostPath: - path: /home/paddleflow/log - type: DirectoryOrCreate - name: paddlefow-csi-log - - hostPath: - path: /var/lib/kubelet/data/paddleflow-fs/mnt - type: DirectoryOrCreate - name: pfs-mnt - - hostPath: - path: /var/lib/kubelet/plugins - type: DirectoryOrCreate - name: plugins-dir - - hostPath: - path: /var/lib/kubelet/plugins_registry - type: DirectoryOrCreate - name: registration-dir - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir - updateStrategy: - rollingUpdate: - maxUnavailable: 1 - type: RollingUpdate + - name: paddleflowdir + hostPath: + path: /mnt/paddleflow + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: conf + configMap: + name: paddleflow-server --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/pfs-csi-provisioner-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: - annotations: - app: pfs-csi-provisioner + #文件里的所有pfs-csi-provisioner、pfs_csi_provisioner都替换成实际名称 + name: pfs-csi-provisioner labels: app: pfs-csi-provisioner - name: pfs-csi-provisioner - namespace: paddleflow + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner + reloader.stakater.com/auto: "false" spec: - progressDeadlineSeconds: 600 replicas: 1 - revisionHistoryLimit: 10 selector: matchLabels: app: pfs-csi-provisioner - strategy: - rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% - type: RollingUpdate template: metadata: - annotations: - app: pfs-csi-provisioner labels: app: pfs-csi-provisioner + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'paddleflow' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + app.kubernetes.io/name: 'pfs-csi-provisioner' + app: pfs-csi-provisioner + annotations: + app: pfs-csi-provisioner spec: - affinity: - podAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: app - operator: In - values: - - pfs-csi-plugin - topologyKey: kubernetes.io/hostname - containers: - - args: - - -v=5 - - --csi-address=/csi/csi.sock - - --feature-gates=Topology=true - image: paddleflow/csi-provisioner:1.4.0 - imagePullPolicy: IfNotPresent - name: pfs-csi-provisioner - ports: - - containerPort: 12345 - name: port-0 - protocol: TCP - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - securityContext: - privileged: true - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - volumeMounts: - - mountPath: /csi - mountPropagation: None - name: socket-dir dnsPolicy: ClusterFirst restartPolicy: Always - schedulerName: default-scheduler - securityContext: {} - serviceAccount: pfs-csi-provisioner - serviceAccountName: pfs-csi-provisioner - terminationGracePeriodSeconds: 30 tolerations: - effect: NoSchedule operator: Exists - effect: NoExecute operator: Exists - volumes: - - hostPath: - path: /var/lib/kubelet/plugins/pfs-csi - type: DirectoryOrCreate - name: socket-dir - ---- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: elasticresourcequotas.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: ElasticResourceQuota - listKind: ElasticResourceQuotaList - plural: elasticresourcequotas - shortNames: - - equota - - equota-v1beta1 - singular: elasticresourcequota - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - type: object - properties: - kind: - type: string - description: >- - Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the - client submits requests to. Cannot be updated. In CamelCase. - More info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - spec: - type: object - properties: - max: - type: object - description: Max is the upper bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - min: - type: object - description: Min is the lower bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - namespace: - type: string - description: >- - namespace defines elastic resource quota belongs to one - namespace - reclaimable: - type: boolean - description: >- - Reclaimable indicate whether the elastic quota can be - reclaimed by other elastic resource quota - hardwareTypes: - type: array - items: - type: string - description: >- - HardwareTypes defines hardware types of elastic resource - quota - description: >- - Specification of the desired behavior of the - ElasticResourceQuota. More info: - https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status - status: - type: object - properties: - used: - type: object - description: Used resource of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - isLeaf: - type: boolean - description: IsLeaf defines whether elastic resource quota is leaf or not - queueName: - type: string - description: QueueName indicate bound queue - description: The status of ElasticResourceQuota. - metadata: - type: object - apiVersion: - type: string - description: >- - APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the - latest internal value, and may reject unrecognized values. More - info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - description: Elastic Resource Quota - served: true - storage: true - subresources: - status: {} - additionalPrinterColumns: - - name: Age - type: date - priority: 0 - jsonPath: .metadata.creationTimestamp - - name: Leaf - type: boolean - priority: 1 - jsonPath: .status.isLeaf - - name: QueueName - type: string - priority: 2 - description: The name of bound queue - jsonPath: .status.queueName - - name: Reclaim - type: boolean - priority: 3 - jsonPath: .spec.reclaimable - - name: Namespace - type: string - priority: 4 - description: The related of namespace - jsonPath: .spec.namespace - - name: HardwareTypes - type: string - priority: 5 - jsonPath: .spec.hardwareTypes - conversion: - strategy: None + affinity: + podAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: app + operator: In + values: + - pfs-csi-plugin + topologyKey: kubernetes.io/hostname + serviceAccountName: pfs-csi-provisioner + containers: + - name: pfs-csi-provisioner + image: "paddleflow/csi-provisioner:1.4.0" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - -v=5 + - --csi-address=/csi/csi.sock + - --feature-gates=Topology=true + securityContext: + privileged: true + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟pfs_csi_provisioner-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: socket-dir + mountPath: /csi + mountPropagation: None + subPath: + initContainers: + volumes: + - name: socket-dir + hostPath: + path: /var/lib/kubelet/plugins/pfs-csi + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- ---- -apiVersion: v1 -kind: Namespace -metadata: - name: volcano-system ---- -apiVersion: v1 -kind: Namespace -metadata: - name: volcano-monitoring ---- -# Source: volcano/templates/admission.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-admission - namespace: volcano-system ---- -# Source: volcano/templates/admission.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-admission -rules: - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "list", "watch"] - - apiGroups: ["admissionregistration.k8s.io"] - resources: ["mutatingwebhookconfigurations", "validatingwebhookconfigurations"] - verbs: ["get", "list", "watch", "create", "update"] - - apiGroups: ["certificates.k8s.io"] - resources: ["certificatesigningrequests"] - verbs: ["get", "list", "create", "delete"] - - apiGroups: ["certificates.k8s.io"] - resources: ["certificatesigningrequests/approval"] - verbs: ["create", "update"] - - apiGroups: [""] - resources: ["secrets"] - verbs: ["create", "get", "patch"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["queues"] - verbs: ["get", "list"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["elasticresourcequotas"] - verbs: ["get", "list", "update"] - - apiGroups: [""] - resources: ["services"] - verbs: ["get"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups"] - verbs: ["get", "list", "watch"] ---- -# Source: volcano/templates/admission.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 +# Source: pfchart/charts/volcano-admission/templates/volcano-admission-deployment.yaml +apiVersion: apps/v1 +kind: Deployment metadata: - name: volcano-admission-role -subjects: - - kind: ServiceAccount - name: volcano-admission - namespace: volcano-system -roleRef: - kind: ClusterRole + #文件里的所有volcano-admission、volcano_admission都替换成实际名称 name: volcano-admission - apiGroup: rbac.authorization.k8s.io ---- -# Source: volcano/templates/admission.yaml -apiVersion: v1 -kind: Service -metadata: labels: app: volcano-admission - name: volcano-admission-service - namespace: volcano-system -spec: - ports: - - port: 443 - protocol: TCP - targetPort: 8443 - selector: + chart: "volcano-admission-0.0.21-rrm1l0" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' app: volcano-admission - sessionAffinity: None ---- -# Source: volcano/templates/admission.yaml -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: + annotations: app: volcano-admission - name: volcano-admission - namespace: volcano-system + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -1155,7346 +1981,85 @@ spec: metadata: labels: app: volcano-admission + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' + app.kubernetes.io/name: 'volcano-admission' + app: volcano-admission + annotations: + app: volcano-admission spec: - serviceAccount: volcano-admission - containers: - - args: - - --tls-cert-file=/admission.local.config/certificates/tls.crt - - --tls-private-key-file=/admission.local.config/certificates/tls.key - - --ca-cert-file=/admission.local.config/certificates/ca.crt - - --webhook-namespace=volcano-system - - --webhook-service-name=volcano-admission-service - - --logtostderr - - --port=8443 - - -v=4 - - 2>&1 - image: paddleflow/vc-webhook-manager:pf-1.4-vc-1.3 - imagePullPolicy: IfNotPresent - name: admission - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - volumeMounts: - - mountPath: /admission.local.config/certificates - name: admission-certs - readOnly: true - volumes: - - name: admission-certs - secret: - defaultMode: 420 - secretName: volcano-admission-secret ---- -# Source: volcano/templates/admission.yaml -apiVersion: batch/v1 -kind: Job -metadata: - name: volcano-admission-init - namespace: volcano-system - labels: - app: volcano-admission-init -spec: - backoffLimit: 3 - template: - spec: + dnsPolicy: ClusterFirst + restartPolicy: Always serviceAccountName: volcano-admission - restartPolicy: Never containers: - - name: main - image: paddleflow/vc-webhook-manager:pf-1.4-vc-1.3 - imagePullPolicy: IfNotPresent - command: ["./gen-admission-secret.sh", "--service", "volcano-admission-service", "--namespace", - "volcano-system", "--secret", "volcano-admission-secret"] ---- -# Source: volcano/templates/batch_v1alpha1_job.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: jobs.batch.volcano.sh -spec: - group: batch.volcano.sh - names: - kind: Job - listKind: JobList - plural: jobs - shortNames: - - vcjob - - vj - singular: job - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: Job defines the volcano job. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Specification of the desired behavior of the volcano job, - including the minAvailable - properties: - maxRetry: - description: Specifies the maximum number of retries before marking - this Job failed. Defaults to 3. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Job Defaults - to the summary of tasks' replicas - format: int32 - type: integer - minSuccess: - description: The minimal success pods to run for this Job - format: int32 - minimum: 1 - type: integer - plugins: - additionalProperties: - items: - type: string - type: array - description: Specifies the plugin of job Key is plugin name, value - is the arguments of the plugin - type: object - policies: - description: Specifies the default lifecycle of tasks - items: - description: LifecyclePolicy specifies the lifecycle and error handling - of task and job. - properties: - action: - description: The action that will be taken to the PodGroup according - to Event. One of "Restart", "None". Default to None. - type: string - event: - description: The Event recorded by scheduler; the controller - takes actions according to this Event. - type: string - events: - description: The Events recorded by scheduler; the controller - takes actions according to this Events. - items: - description: Event represent the phase of Job, e.g. pod-failed. - type: string - type: array - exitCode: - description: 'The exit code of the pod container, controller - will take action according to this code. Note: only one of - `Event` or `ExitCode` can be specified.' - format: int32 - type: integer - timeout: - description: Timeout is the grace period for controller to take - actions. Default to nil (take action immediately). - type: string - type: object - type: array - priorityClassName: - description: If specified, indicates the job's priority. - type: string - queue: - description: Specifies the queue that will be used in the scheduler, - "default" queue is used this leaves empty. - type: string - runningEstimate: - description: Running Estimate is a user running duration estimate - for the job Default to nil - type: string - schedulerName: - description: SchedulerName is the default value of `tasks.template.spec.schedulerName`. - type: string - tasks: - description: Tasks specifies the task specification of Job - items: - description: TaskSpec specifies the task specification of Job. - properties: - maxRetry: - description: Specifies the maximum number of retries before - marking this Task failed. Defaults to 3. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Task - Defaults to the task replicas - format: int32 - type: integer - name: - description: Name specifies the name of tasks - type: string - policies: - description: Specifies the lifecycle of task - items: - description: LifecyclePolicy specifies the lifecycle and error - handling of task and job. - properties: - action: - description: The action that will be taken to the PodGroup - according to Event. One of "Restart", "None". Default - to None. - type: string - event: - description: The Event recorded by scheduler; the controller - takes actions according to this Event. - type: string - events: - description: The Events recorded by scheduler; the controller - takes actions according to this Events. - items: - description: Event represent the phase of Job, e.g. - pod-failed. - type: string - type: array - exitCode: - description: 'The exit code of the pod container, controller - will take action according to this code. Note: only - one of `Event` or `ExitCode` can be specified.' - format: int32 - type: integer - timeout: - description: Timeout is the grace period for controller - to take actions. Default to nil (take action immediately). - type: string - type: object - type: array - replicas: - description: Replicas specifies the replicas of this TaskSpec - in Job - format: int32 - type: integer - template: - description: Specifies the pod that will be created for this - TaskSpec when executing a Job - properties: - metadata: - description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' - type: object - spec: - description: 'Specification of the desired behavior of the - pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - activeDeadlineSeconds: - description: Optional duration in seconds the pod may - be active on the node relative to StartTime before - the system will actively try to mark it failed and - kill associated containers. Value must be a positive - integer. - format: int64 - type: integer - affinity: - description: If specified, the pod's scheduling constraints - properties: - nodeAffinity: - description: Describes node affinity scheduling - rules for the pod. - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the affinity expressions - specified by this field, but it may choose - a node that violates one or more of the expressions. - The node that is most preferred is the one - with the greatest sum of weights, i.e. for - each node that meets all of the scheduling - requirements (resource request, requiredDuringScheduling - affinity expressions, etc.), compute a sum - by iterating through the elements of this - field and adding "weight" to the sum if the - node matches the corresponding matchExpressions; - the node(s) with the highest sum are the most - preferred. - items: - description: An empty preferred scheduling - term matches all objects with implicit weight - 0 (i.e. it's a no-op). A null preferred - scheduling term matches no objects (i.e. - is also a no-op). - properties: - preference: - description: A node selector term, associated - with the corresponding weight. - properties: - matchExpressions: - description: A list of node selector - requirements by node's labels. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchFields: - description: A list of node selector - requirements by node's fields. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - weight: - description: Weight associated with matching - the corresponding nodeSelectorTerm, - in the range 1-100. - format: int32 - type: integer - required: - - preference - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified - by this field are not met at scheduling time, - the pod will not be scheduled onto the node. - If the affinity requirements specified by - this field cease to be met at some point during - pod execution (e.g. due to an update), the - system may or may not try to eventually evict - the pod from its node. - properties: - nodeSelectorTerms: - description: Required. A list of node selector - terms. The terms are ORed. - items: - description: A null or empty node selector - term matches no objects. The requirements - of them are ANDed. The TopologySelectorTerm - type implements a subset of the NodeSelectorTerm. - properties: - matchExpressions: - description: A list of node selector - requirements by node's labels. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchFields: - description: A list of node selector - requirements by node's fields. - items: - description: A node selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: The label key that - the selector applies to. - type: string - operator: - description: Represents a key's - relationship to a set of values. - Valid operators are In, NotIn, - Exists, DoesNotExist. Gt, - and Lt. - type: string - values: - description: An array of string - values. If the operator is - In or NotIn, the values array - must be non-empty. If the - operator is Exists or DoesNotExist, - the values array must be empty. - If the operator is Gt or Lt, - the values array must have - a single element, which will - be interpreted as an integer. - This array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - type: array - required: - - nodeSelectorTerms - type: object - type: object - podAffinity: - description: Describes pod affinity scheduling rules - (e.g. co-locate this pod in the same node, zone, - etc. as some other pod(s)). - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the affinity expressions - specified by this field, but it may choose - a node that violates one or more of the expressions. - The node that is most preferred is the one - with the greatest sum of weights, i.e. for - each node that meets all of the scheduling - requirements (resource request, requiredDuringScheduling - affinity expressions, etc.), compute a sum - by iterating through the elements of this - field and adding "weight" to the sum if the - node has pods which matches the corresponding - podAffinityTerm; the node(s) with the highest - sum are the most preferred. - items: - description: The weights of all of the matched - WeightedPodAffinityTerm fields are added - per-node to find the most preferred node(s) - properties: - podAffinityTerm: - description: Required. A pod affinity - term, associated with the corresponding - weight. - properties: - labelSelector: - description: A label query over a - set of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies - which namespaces the labelSelector - applies to (matches against); null - or empty list means "this pod's - namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where - co-located is defined as running - on a node whose value of the label - with key topologyKey matches that - of any node on which any of the - selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching - the corresponding podAffinityTerm, in - the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified - by this field are not met at scheduling time, - the pod will not be scheduled onto the node. - If the affinity requirements specified by - this field cease to be met at some point during - pod execution (e.g. due to a pod label update), - the system may or may not try to eventually - evict the pod from its node. When there are - multiple elements, the lists of nodes corresponding - to each podAffinityTerm are intersected, i.e. - all terms must be satisfied. - items: - description: Defines a set of pods (namely - those matching the labelSelector relative - to the given namespace(s)) that this pod - should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is - defined as running on a node whose value - of the label with key matches - that of any node on which a pod of the set - of pods is running - properties: - labelSelector: - description: A label query over a set - of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions is a - list of label selector requirements. - The requirements are ANDed. - items: - description: A label selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: key is the label - key that the selector applies - to. - type: string - operator: - description: operator represents - a key's relationship to a - set of values. Valid operators - are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array - of string values. If the operator - is In or NotIn, the values - array must be non-empty. If - the operator is Exists or - DoesNotExist, the values array - must be empty. This array - is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map - of {key,value} pairs. A single {key,value} - in the matchLabels map is equivalent - to an element of matchExpressions, - whose key field is "key", the operator - is "In", and the values array contains - only "value". The requirements are - ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which - namespaces the labelSelector applies - to (matches against); null or empty - list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where co-located - is defined as running on a node whose - value of the label with key topologyKey - matches that of any node on which any - of the selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - podAntiAffinity: - description: Describes pod anti-affinity scheduling - rules (e.g. avoid putting this pod in the same - node, zone, etc. as some other pod(s)). - properties: - preferredDuringSchedulingIgnoredDuringExecution: - description: The scheduler will prefer to schedule - pods to nodes that satisfy the anti-affinity - expressions specified by this field, but it - may choose a node that violates one or more - of the expressions. The node that is most - preferred is the one with the greatest sum - of weights, i.e. for each node that meets - all of the scheduling requirements (resource - request, requiredDuringScheduling anti-affinity - expressions, etc.), compute a sum by iterating - through the elements of this field and adding - "weight" to the sum if the node has pods which - matches the corresponding podAffinityTerm; - the node(s) with the highest sum are the most - preferred. - items: - description: The weights of all of the matched - WeightedPodAffinityTerm fields are added - per-node to find the most preferred node(s) - properties: - podAffinityTerm: - description: Required. A pod affinity - term, associated with the corresponding - weight. - properties: - labelSelector: - description: A label query over a - set of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies - which namespaces the labelSelector - applies to (matches against); null - or empty list means "this pod's - namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where - co-located is defined as running - on a node whose value of the label - with key topologyKey matches that - of any node on which any of the - selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching - the corresponding podAffinityTerm, in - the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements - specified by this field are not met at scheduling - time, the pod will not be scheduled onto the - node. If the anti-affinity requirements specified - by this field cease to be met at some point - during pod execution (e.g. due to a pod label - update), the system may or may not try to - eventually evict the pod from its node. When - there are multiple elements, the lists of - nodes corresponding to each podAffinityTerm - are intersected, i.e. all terms must be satisfied. - items: - description: Defines a set of pods (namely - those matching the labelSelector relative - to the given namespace(s)) that this pod - should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is - defined as running on a node whose value - of the label with key matches - that of any node on which a pod of the set - of pods is running - properties: - labelSelector: - description: A label query over a set - of resources, in this case pods. - properties: - matchExpressions: - description: matchExpressions is a - list of label selector requirements. - The requirements are ANDed. - items: - description: A label selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: key is the label - key that the selector applies - to. - type: string - operator: - description: operator represents - a key's relationship to a - set of values. Valid operators - are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array - of string values. If the operator - is In or NotIn, the values - array must be non-empty. If - the operator is Exists or - DoesNotExist, the values array - must be empty. This array - is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map - of {key,value} pairs. A single {key,value} - in the matchLabels map is equivalent - to an element of matchExpressions, - whose key field is "key", the operator - is "In", and the values array contains - only "value". The requirements are - ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which - namespaces the labelSelector applies - to (matches against); null or empty - list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located - (affinity) or not co-located (anti-affinity) - with the pods matching the labelSelector - in the specified namespaces, where co-located - is defined as running on a node whose - value of the label with key topologyKey - matches that of any node on which any - of the selected pods is running. Empty - topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - type: object - automountServiceAccountToken: - description: AutomountServiceAccountToken indicates - whether a service account token should be automatically - mounted. - type: boolean - containers: - description: List of containers belonging to the pod. - Containers cannot currently be added or removed. There - must be at least one container in a Pod. Cannot be - updated. - items: - description: A single application container that you - want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level - config management to default or override container - images in workload controllers like Deployments - and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system - should take in response to container lifecycle - events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. - Container will be restarted if the probe fails. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as - a DNS_LABEL. Each container in a pod must have - a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the - container. Exposing a port here gives the system - additional information about the network connections - a container uses, but is primarily informational. - Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which - is listening on the default "0.0.0.0" address - inside a container will be accessible from the - network. Cannot be updated. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service - readiness. Container will be removed from service - endpoints if the probe fails. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this - container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should - run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the - Pod has successfully initialized. If specified, - no other probes are executed until this completes - successfully. If this probe fails, the Pod will - be restarted, just as if the livenessProbe failed. - This can be used to provide different probe - parameters at the beginning of a Pod''s lifecycle, - when it might take a long time to load data - or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature - enabled by the StartupProbe feature flag. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - dnsConfig: - description: Specifies the DNS parameters of a pod. - Parameters specified here will be merged to the generated - DNS configuration based on DNSPolicy. - properties: - nameservers: - description: A list of DNS name server IP addresses. - This will be appended to the base nameservers - generated from DNSPolicy. Duplicated nameservers - will be removed. - items: - type: string - type: array - options: - description: A list of DNS resolver options. This - will be merged with the base options generated - from DNSPolicy. Duplicated entries will be removed. - Resolution options given in Options will override - those that appear in the base DNSPolicy. - items: - description: PodDNSConfigOption defines DNS resolver - options of a pod. - properties: - name: - description: Required. - type: string - value: - type: string - type: object - type: array - searches: - description: A list of DNS search domains for host-name - lookup. This will be appended to the base search - paths generated from DNSPolicy. Duplicated search - paths will be removed. - items: - type: string - type: array - type: object - dnsPolicy: - description: Set DNS policy for the pod. Defaults to - "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', - 'ClusterFirst', 'Default' or 'None'. DNS parameters - given in DNSConfig will be merged with the policy - selected with DNSPolicy. To have DNS options set along - with hostNetwork, you have to specify DNS policy explicitly - to 'ClusterFirstWithHostNet'. - type: string - enableServiceLinks: - description: 'EnableServiceLinks indicates whether information - about services should be injected into pod''s environment - variables, matching the syntax of Docker links. Optional: - Defaults to true.' - type: boolean - ephemeralContainers: - description: List of ephemeral containers run in this - pod. Ephemeral containers may be run in an existing - pod to perform user-initiated actions such as debugging. - This list cannot be specified when creating a pod, - and it cannot be modified by updating the pod spec. - In order to add an ephemeral container to an existing - pod, use the pod's ephemeralcontainers subresource. - This field is alpha-level and is only honored by servers - that enable the EphemeralContainers feature. - items: - description: An EphemeralContainer is a container - that may be added temporarily to an existing pod - for user-initiated activities such as debugging. - Ephemeral containers have no resource or scheduling - guarantees, and they will not be restarted when - they exit or when a pod is removed or restarted. - If an ephemeral container causes a pod to exceed - its resource allocation, the pod may be evicted. - Ephemeral containers may not be added by directly - updating the pod spec. They must be added via the - pod's ephemeralcontainers subresource, and they - will appear in the pod spec once added. This is - an alpha feature enabled by the EphemeralContainers - feature flag. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Lifecycle is not allowed for ephemeral - containers. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the ephemeral container specified - as a DNS_LABEL. This name must be unique among - all containers, init containers and ephemeral - containers. - type: string - ports: - description: Ports are not allowed for ephemeral - containers. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - readinessProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: Resources are not allowed for ephemeral - containers. Ephemeral containers use spare resources - already allocated to the pod. - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: SecurityContext is not allowed for - ephemeral containers. - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: Probes are not allowed for ephemeral - containers. - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - targetContainerName: - description: If set, the name of the container - from PodSpec that this ephemeral container targets. - The ephemeral container will be run in the namespaces - (IPC, PID, etc) of this container. If not set - then the ephemeral container is run in whatever - namespaces are shared for the pod. Note that - the container runtime must support this feature. - type: string - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - hostAliases: - description: HostAliases is an optional list of hosts - and IPs that will be injected into the pod's hosts - file if specified. This is only valid for non-hostNetwork - pods. - items: - description: HostAlias holds the mapping between IP - and hostnames that will be injected as an entry - in the pod's hosts file. - properties: - hostnames: - description: Hostnames for the above IP address. - items: - type: string - type: array - ip: - description: IP address of the host file entry. - type: string - type: object - type: array - hostIPC: - description: 'Use the host''s ipc namespace. Optional: - Default to false.' - type: boolean - hostNetwork: - description: Host networking requested for this pod. - Use the host's network namespace. If this option is - set, the ports that will be used must be specified. - Default to false. - type: boolean - hostPID: - description: 'Use the host''s pid namespace. Optional: - Default to false.' - type: boolean - hostname: - description: Specifies the hostname of the Pod If not - specified, the pod's hostname will be set to a system-defined - value. - type: string - imagePullSecrets: - description: 'ImagePullSecrets is an optional list of - references to secrets in the same namespace to use - for pulling any of the images used by this PodSpec. - If specified, these secrets will be passed to individual - puller implementations for them to use. For example, - in the case of docker, only DockerConfig type secrets - are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' - items: - description: LocalObjectReference contains enough - information to let you locate the referenced object - inside the same namespace. - properties: - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - type: object - type: array - initContainers: - description: 'List of initialization containers belonging - to the pod. Init containers are executed in order - prior to containers being started. If any init container - fails, the pod is considered to have failed and is - handled according to its restartPolicy. The name for - an init container or normal container must be unique - among all containers. Init containers may not have - Lifecycle actions, Readiness probes, Liveness probes, - or Startup probes. The resourceRequirements of an - init container are taken into account during scheduling - by finding the highest request/limit for each resource - type, and then using the max of of that value or the - sum of the normal containers. Limits are applied to - init containers in a similar fashion. Init containers - cannot currently be added or removed. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/' - items: - description: A single application container that you - want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The - docker image''s CMD is used if this is not provided. - Variable references $(VAR_NAME) are expanded - using the container''s environment. If a variable - cannot be resolved, the reference in the input - string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, regardless - of whether the variable exists or not. Cannot - be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within - a shell. The docker image''s ENTRYPOINT is used - if this is not provided. Variable references - $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, - the reference in the input string will be unchanged. - The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references - will never be expanded, regardless of whether - the variable exists or not. Cannot be updated. - More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to - set in the container. Cannot be updated. - items: - description: EnvVar represents an environment - variable present in a Container. - properties: - name: - description: Name of the environment variable. - Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) - are expanded using the previous defined - environment variables in the container - and any service environment variables. - If a variable cannot be resolved, the - reference in the input string will be - unchanged. The $(VAR_NAME) syntax can - be escaped with a double $$, ie: $$(VAR_NAME). - Escaped references will never be expanded, - regardless of whether the variable exists - or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment - variable's value. Cannot be used if value - is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the - pod: supports metadata.name, metadata.namespace, - `metadata.labels['''']`, `metadata.annotations['''']`, - spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret - in the pod's namespace - properties: - key: - description: The key of the secret - to select from. Must be a valid - secret key. - type: string - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment - variables in the container. The keys defined - within a source must be a C_IDENTIFIER. All - invalid keys will be reported as an event when - the container is starting. When a key exists - in multiple sources, the value associated with - the last source will take precedence. Values - defined by an Env with a duplicate key will - take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source - of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend - to each key in the ConfigMap. Must be - a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level - config management to default or override container - images in workload controllers like Deployments - and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, - Never, IfNotPresent. Defaults to Always if :latest - tag is specified, or IfNotPresent otherwise. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system - should take in response to container lifecycle - events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately - after a container is created. If the handler - fails, the container is terminated and restarted - according to its restart policy. Other management - of the container blocks until the hook completes. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately - before a container is terminated due to - an API request or management event such - as liveness/startup probe failure, preemption, - resource contention, etc. The handler is - not called if the container crashes or exits. - The reason for termination is passed to - the handler. The Pod''s termination grace - period countdown begins before the PreStop - hooked is executed. Regardless of the outcome - of the handler, the container will eventually - terminate within the Pod''s termination - grace period. Other management of the container - blocks until the hook completes or until - the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies - the action to take. - properties: - command: - description: Command is the command - line to execute inside the container, - the working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it - is not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to - explicitly call out to that shell. - Exit status of 0 is treated as live/healthy - and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http - request to perform. - properties: - host: - description: Host name to connect - to, defaults to the pod IP. You - probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set - in the request. HTTP allows repeated - headers. - items: - description: HTTPHeader describes - a custom header to be used in - HTTP probes - properties: - name: - description: The header field - name - type: string - value: - description: The header field - value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the - HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not - yet supported TODO: implement a realistic - TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name - to connect to, defaults to the pod - IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the - port to access on the container. - Number must be in the range 1 to - 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. - Container will be restarted if the probe fails. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as - a DNS_LABEL. Each container in a pod must have - a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the - container. Exposing a port here gives the system - additional information about the network connections - a container uses, but is primarily informational. - Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which - is listening on the default "0.0.0.0" address - inside a container will be accessible from the - network. Cannot be updated. - items: - description: ContainerPort represents a network - port in a single container. - properties: - containerPort: - description: Number of port to expose on - the pod's IP address. This must be a valid - port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external - port to. - type: string - hostPort: - description: Number of port to expose on - the host. If specified, this must be a - valid port number, 0 < x < 65536. If HostNetwork - is specified, this must match ContainerPort. - Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be - an IANA_SVC_NAME and unique within the - pod. Each named port in a pod must have - a unique name. Name for the port that - can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be - UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service - readiness. Container will be removed from service - endpoints if the probe fails. Cannot be updated. - More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this - container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum - amount of compute resources allowed. More - info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum - amount of compute resources required. If - Requests is omitted for a container, it - defaults to Limits if that is explicitly - specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should - run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls - whether a process can gain more privileges - than its parent process. This bool directly - controls if the no_new_privs flag will be - set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) - run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop - when running containers. Defaults to the - default set of capabilities granted by the - container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX - capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. - Processes in privileged containers are essentially - equivalent to root on the host. Defaults - to false. - type: boolean - procMount: - description: procMount denotes the type of - proc mount to use for the containers. The - default is DefaultProcMount which uses the - container runtime defaults for readonly - paths and masked paths. This requires the - ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a - read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint - of the container process. Uses runtime default - if unset. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container - must run as a non-root user. If true, the - Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 - (root) and fail to start the container if - it does. If unset or false, no such validation - will be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint - of the container process. Defaults to user - specified in image metadata if unspecified. - May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied - to the container. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in - PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label - that applies to the container. - type: string - role: - description: Role is a SELinux role label - that applies to the container. - type: string - type: - description: Type is a SELinux type label - that applies to the container. - type: string - user: - description: User is a SELinux user label - that applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by - this container. If seccomp options are provided - at both the pod & container level, the container - options override the pod options. - properties: - localhostProfile: - description: localhostProfile indicates - a profile defined in a file on the node - should be used. The profile must be - preconfigured on the node to work. Must - be a descending path, relative to the - kubelet's configured seccomp profile - location. Must only be set if type is - "Localhost". - type: string - type: - description: "type indicates which kind - of seccomp profile will be applied. - Valid options are: \n Localhost - a - profile defined in a file on the node - should be used. RuntimeDefault - the - container runtime default profile should - be used. Unconfined - no profile should - be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings - applied to all containers. If unspecified, - the options from the PodSecurityContext - will be used. If set in both SecurityContext - and PodSecurityContext, the value specified - in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where - the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName - field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is - the name of the GMSA credential spec - to use. - type: string - runAsUserName: - description: The UserName in Windows to - run the entrypoint of the container - process. Defaults to the user specified - in image metadata if unspecified. May - also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the - Pod has successfully initialized. If specified, - no other probes are executed until this completes - successfully. If this probe fails, the Pod will - be restarted, just as if the livenessProbe failed. - This can be used to provide different probe - parameters at the beginning of a Pod''s lifecycle, - when it might take a long time to load data - or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature - enabled by the StartupProbe feature flag. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following - should be specified. Exec specifies the - action to take. - properties: - command: - description: Command is the command line - to execute inside the container, the - working directory for the command is - root ('/') in the container's filesystem. - The command is simply exec'd, it is - not run inside a shell, so traditional - shell instructions ('|', etc) won't - work. To use a shell, you need to explicitly - call out to that shell. Exit status - of 0 is treated as live/healthy and - non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures - for the probe to be considered failed after - having succeeded. Defaults to 3. Minimum - value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, - defaults to the pod IP. You probably - want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in - the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a - custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP - server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting - to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the - container has started before liveness probes - are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform - the probe. Default to 10 seconds. Minimum - value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes - for the probe to be considered successful - after having failed. Defaults to 1. Must - be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action - involving a TCP port. TCP hooks not yet - supported TODO: implement a realistic TCP - lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect - to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port - to access on the container. Number must - be in the range 1 to 65535. Name must - be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which - the probe times out. Defaults to 1 second. - Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate - a buffer for stdin in the container runtime. - If this is not set, reads from stdin in the - container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should - close the stdin channel after it has been opened - by a single attach. When stdin is true the stdin - stream will remain open across multiple attach - sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until - the first client attaches to stdin, and then - remains open and accepts data until the client - disconnects, at which time stdin is closed and - remains closed until the container is restarted. - If this flag is false, a container processes - that reads from stdin will never receive an - EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file - to which the container''s termination message - will be written is mounted into the container''s - filesystem. Message written is intended to be - brief final status, such as an assertion failure - message. Will be truncated by the node if greater - than 4096 bytes. The total message length across - all containers will be limited to 12kb. Defaults - to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message - should be populated. File will use the contents - of terminationMessagePath to populate the container - status message on both success and failure. - FallbackToLogsOnError will use the last chunk - of container log output if the termination message - file is empty and the container exited with - an error. The log output is limited to 2048 - bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate - a TTY for itself, also requires 'stdin' to be - true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block - devices to be used by the container. - items: - description: volumeDevice describes a mapping - of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside - of the container that the device will - be mapped to. - type: string - name: - description: name must match the name of - a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's - filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting - of a Volume within a container. - properties: - mountPath: - description: Path within the container at - which the volume should be mounted. Must - not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines - how mounts are propagated from the host - to container and the other way around. - When not set, MountPropagationNone is - used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of - a Volume. - type: string - readOnly: - description: Mounted read-only if true, - read-write otherwise (false or unspecified). - Defaults to false. - type: boolean - subPath: - description: Path within the volume from - which the container's volume should be - mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume - from which the container's volume should - be mounted. Behaves similarly to SubPath - but environment variable references $(VAR_NAME) - are expanded using the container's environment. - Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If - not specified, the container runtime's default - will be used, which might be configured in the - container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - nodeName: - description: NodeName is a request to schedule this - pod onto a specific node. If it is non-empty, the - scheduler simply schedules this pod onto that node, - assuming that it fits resource requirements. - type: string - nodeSelector: - additionalProperties: - type: string - description: 'NodeSelector is a selector which must - be true for the pod to fit on a node. Selector which - must match a node''s labels for the pod to be scheduled - on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' - type: object - overhead: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Overhead represents the resource overhead - associated with running a pod for a given RuntimeClass. - This field will be autopopulated at admission time - by the RuntimeClass admission controller. If the RuntimeClass - admission controller is enabled, overhead must not - be set in Pod create requests. The RuntimeClass admission - controller will reject Pod create requests which have - the overhead already set. If RuntimeClass is configured - and selected in the PodSpec, Overhead will be set - to the value defined in the corresponding RuntimeClass, - otherwise it will remain unset and treated as zero. - More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md - This field is alpha-level as of Kubernetes v1.16, - and is only honored by servers that enable the PodOverhead - feature.' - type: object - preemptionPolicy: - description: PreemptionPolicy is the Policy for preempting - pods with lower priority. One of Never, PreemptLowerPriority. - Defaults to PreemptLowerPriority if unset. This field - is beta-level, gated by the NonPreemptingPriority - feature-gate. - type: string - priority: - description: The priority value. Various system components - use this field to find the priority of the pod. When - Priority Admission Controller is enabled, it prevents - users from setting this field. The admission controller - populates this field from PriorityClassName. The higher - the value, the higher the priority. - format: int32 - type: integer - priorityClassName: - description: If specified, indicates the pod's priority. - "system-node-critical" and "system-cluster-critical" - are two special keywords which indicate the highest - priorities with the former being the highest priority. - Any other name must be defined by creating a PriorityClass - object with that name. If not specified, the pod priority - will be default or zero if there is no default. - type: string - readinessGates: - description: 'If specified, all readiness gates will - be evaluated for pod readiness. A pod is ready when - all its containers are ready AND all conditions specified - in the readiness gates have status equal to "True" - More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md' - items: - description: PodReadinessGate contains the reference - to a pod condition - properties: - conditionType: - description: ConditionType refers to a condition - in the pod's condition list with matching type. - type: string - required: - - conditionType - type: object - type: array - restartPolicy: - description: 'Restart policy for all containers within - the pod. One of Always, OnFailure, Never. Default - to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy' - type: string - runtimeClassName: - description: 'RuntimeClassName refers to a RuntimeClass - object in the node.k8s.io group, which should be used - to run this pod. If no RuntimeClass resource matches - the named class, the pod will not be run. If unset - or empty, the "legacy" RuntimeClass will be used, - which is an implicit class with an empty definition - that uses the default runtime handler. More info: - https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md - This is a beta feature as of Kubernetes v1.14.' - type: string - schedulerName: - description: If specified, the pod will be dispatched - by specified scheduler. If not specified, the pod - will be dispatched by default scheduler. - type: string - securityContext: - description: 'SecurityContext holds pod-level security - attributes and common container settings. Optional: - Defaults to empty. See type description for default - values of each field.' - properties: - fsGroup: - description: "A special supplemental group that - applies to all containers in a pod. Some volume - types allow the Kubelet to change the ownership - of that volume to be owned by the pod: \n 1. The - owning GID will be the FSGroup 2. The setgid bit - is set (new files created in the volume will be - owned by FSGroup) 3. The permission bits are OR'd - with rw-rw---- \n If unset, the Kubelet will not - modify the ownership and permissions of any volume." - format: int64 - type: integer - fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior - of changing ownership and permission of the volume - before being exposed inside Pod. This field will - only apply to volume types which support fsGroup - based ownership(and permissions). It will have - no effect on ephemeral volume types such as: secret, - configmaps and emptydir. Valid values are "OnRootMismatch" - and "Always". If not specified defaults to "Always".' - type: string - runAsGroup: - description: The GID to run the entrypoint of the - container process. Uses runtime default if unset. - May also be set in SecurityContext. If set in - both SecurityContext and PodSecurityContext, the - value specified in SecurityContext takes precedence - for that container. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run - as a non-root user. If true, the Kubelet will - validate the image at runtime to ensure that it - does not run as UID 0 (root) and fail to start - the container if it does. If unset or false, no - such validation will be performed. May also be - set in SecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in - SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the - container process. Defaults to user specified - in image metadata if unspecified. May also be - set in SecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in - SecurityContext takes precedence for that container. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to - all containers. If unspecified, the container - runtime will allocate a random SELinux context - for each container. May also be set in SecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence - for that container. - properties: - level: - description: Level is SELinux level label that - applies to the container. - type: string - role: - description: Role is a SELinux role label that - applies to the container. - type: string - type: - description: Type is a SELinux type label that - applies to the container. - type: string - user: - description: User is a SELinux user label that - applies to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by the containers - in this pod. - properties: - localhostProfile: - description: localhostProfile indicates a profile - defined in a file on the node should be used. - The profile must be preconfigured on the node - to work. Must be a descending path, relative - to the kubelet's configured seccomp profile - location. Must only be set if type is "Localhost". - type: string - type: - description: "type indicates which kind of seccomp - profile will be applied. Valid options are: - \n Localhost - a profile defined in a file - on the node should be used. RuntimeDefault - - the container runtime default profile should - be used. Unconfined - no profile should be - applied." - type: string - required: - - type - type: object - supplementalGroups: - description: A list of groups applied to the first - process run in each container, in addition to - the container's primary GID. If unspecified, - no groups will be added to any container. - items: - format: int64 - type: integer - type: array - sysctls: - description: Sysctls hold a list of namespaced sysctls - used for the pod. Pods with unsupported sysctls - (by the container runtime) might fail to launch. - items: - description: Sysctl defines a kernel parameter - to be set - properties: - name: - description: Name of a property to set - type: string - value: - description: Value of a property to set - type: string - required: - - name - - value - type: object - type: array - windowsOptions: - description: The Windows specific settings applied - to all containers. If unspecified, the options - within a container's SecurityContext will be used. - If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the - GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential - spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name - of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run - the entrypoint of the container process. Defaults - to the user specified in image metadata if - unspecified. May also be set in PodSecurityContext. - If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes - precedence. - type: string - type: object - type: object - serviceAccount: - description: 'DeprecatedServiceAccount is a depreciated - alias for ServiceAccountName. Deprecated: Use serviceAccountName - instead.' - type: string - serviceAccountName: - description: 'ServiceAccountName is the name of the - ServiceAccount to use to run this pod. More info: - https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/' - type: string - setHostnameAsFQDN: - description: If true the pod's hostname will be configured - as the pod's FQDN, rather than the leaf name (the - default). In Linux containers, this means setting - the FQDN in the hostname field of the kernel (the - nodename field of struct utsname). In Windows containers, - this means setting the registry value of hostname - for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters - to FQDN. If a pod does not have FQDN, this has no - effect. Default to false. - type: boolean - shareProcessNamespace: - description: 'Share a single process namespace between - all of the containers in a pod. When this is set containers - will be able to view and signal processes from other - containers in the same pod, and the first process - in each container will not be assigned PID 1. HostPID - and ShareProcessNamespace cannot both be set. Optional: - Default to false.' - type: boolean - subdomain: - description: If specified, the fully qualified Pod hostname - will be "...svc.". If not specified, the pod will not have - a domainname at all. - type: string - terminationGracePeriodSeconds: - description: Optional duration in seconds the pod needs - to terminate gracefully. May be decreased in delete - request. Value must be non-negative integer. The value - zero indicates delete immediately. If this value is - nil, the default grace period will be used instead. - The grace period is the duration in seconds after - the processes running in the pod are sent a termination - signal and the time when the processes are forcibly - halted with a kill signal. Set this value longer than - the expected cleanup time for your process. Defaults - to 30 seconds. - format: int64 - type: integer - tolerations: - description: If specified, the pod's tolerations. - items: - description: The pod this Toleration is attached to - tolerates any taint that matches the triple - using the matching operator . - properties: - effect: - description: Effect indicates the taint effect - to match. Empty means match all taint effects. - When specified, allowed values are NoSchedule, - PreferNoSchedule and NoExecute. - type: string - key: - description: Key is the taint key that the toleration - applies to. Empty means match all taint keys. - If the key is empty, operator must be Exists; - this combination means to match all values and - all keys. - type: string - operator: - description: Operator represents a key's relationship - to the value. Valid operators are Exists and - Equal. Defaults to Equal. Exists is equivalent - to wildcard for value, so that a pod can tolerate - all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the - period of time the toleration (which must be - of effect NoExecute, otherwise this field is - ignored) tolerates the taint. By default, it - is not set, which means tolerate the taint forever - (do not evict). Zero and negative values will - be treated as 0 (evict immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration - matches to. If the operator is Exists, the value - should be empty, otherwise just a regular string. - type: string - type: object - type: array - topologySpreadConstraints: - description: TopologySpreadConstraints describes how - a group of pods ought to spread across topology domains. - Scheduler will schedule pods in a way which abides - by the constraints. All topologySpreadConstraints - are ANDed. - items: - description: TopologySpreadConstraint specifies how - to spread matching pods among the given topology. - properties: - labelSelector: - description: LabelSelector is used to find matching - pods. Pods that match this label selector are - counted to determine the number of pods in their - corresponding topology domain. - properties: - matchExpressions: - description: matchExpressions is a list of - label selector requirements. The requirements - are ANDed. - items: - description: A label selector requirement - is a selector that contains values, a - key, and an operator that relates the - key and values. - properties: - key: - description: key is the label key that - the selector applies to. - type: string - operator: - description: operator represents a key's - relationship to a set of values. Valid - operators are In, NotIn, Exists and - DoesNotExist. - type: string - values: - description: values is an array of string - values. If the operator is In or NotIn, - the values array must be non-empty. - If the operator is Exists or DoesNotExist, - the values array must be empty. This - array is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator is - "In", and the values array contains only - "value". The requirements are ANDed. - type: object - type: object - maxSkew: - description: 'MaxSkew describes the degree to - which pods may be unevenly distributed. When - `whenUnsatisfiable=DoNotSchedule`, it is the - maximum permitted difference between the number - of matching pods in the target topology and - the global minimum. For example, in a 3-zone - cluster, MaxSkew is set to 1, and pods with - the same labelSelector spread as 1/1/0: | zone1 - | zone2 | zone3 | | P | P | | - - if MaxSkew is 1, incoming pod can only be - scheduled to zone3 to become 1/1/1; scheduling - it onto zone1(zone2) would make the ActualSkew(2-0) - on zone1(zone2) violate MaxSkew(1). - if MaxSkew - is 2, incoming pod can be scheduled onto any - zone. When `whenUnsatisfiable=ScheduleAnyway`, - it is used to give higher precedence to topologies - that satisfy it. It''s a required field. Default - value is 1 and 0 is not allowed.' - format: int32 - type: integer - topologyKey: - description: TopologyKey is the key of node labels. - Nodes that have a label with this key and identical - values are considered to be in the same topology. - We consider each as a "bucket", - and try to put balanced number of pods into - each bucket. It's a required field. - type: string - whenUnsatisfiable: - description: 'WhenUnsatisfiable indicates how - to deal with a pod if it doesn''t satisfy the - spread constraint. - DoNotSchedule (default) - tells the scheduler not to schedule it. - ScheduleAnyway - tells the scheduler to schedule the pod in any - location, but giving higher precedence to - topologies that would help reduce the skew. - A constraint is considered "Unsatisfiable" for - an incoming pod if and only if every possible - node assigment for that pod would violate "MaxSkew" - on some topology. For example, in a 3-zone cluster, - MaxSkew is set to 1, and pods with the same - labelSelector spread as 3/1/1: | zone1 | zone2 - | zone3 | | P P P | P | P | If WhenUnsatisfiable - is set to DoNotSchedule, incoming pod can only - be scheduled to zone2(zone3) to become 3/2/1(3/1/2) - as ActualSkew(2-1) on zone2(zone3) satisfies - MaxSkew(1). In other words, the cluster can - still be imbalanced, but scheduler won''t make - it *more* imbalanced. It''s a required field.' - type: string - required: - - maxSkew - - topologyKey - - whenUnsatisfiable - type: object - type: array - x-kubernetes-list-map-keys: - - topologyKey - - whenUnsatisfiable - x-kubernetes-list-type: map - volumes: - description: 'List of volumes that can be mounted by - containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' - items: - description: Volume represents a named volume in a - pod that may be accessed by any container in the - pod. - properties: - awsElasticBlockStore: - description: 'AWSElasticBlockStore represents - an AWS Disk resource that is attached to a kubelet''s - host machine and then exposed to the pod. More - info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - partition: - description: 'The partition in the volume - that you want to mount. If omitted, the - default is to mount by volume name. Examples: - For volume /dev/sda1, you specify the partition - as "1". Similarly, the volume partition - for /dev/sda is "0" (or you can leave the - property empty).' - format: int32 - type: integer - readOnly: - description: 'Specify "true" to force and - set the ReadOnly property in VolumeMounts - to "true". If omitted, the default is "false". - More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: boolean - volumeID: - description: 'Unique ID of the persistent - disk resource in AWS (Amazon EBS volume). - More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: string - required: - - volumeID - type: object - azureDisk: - description: AzureDisk represents an Azure Data - Disk mount on the host and bind mount to the - pod. - properties: - cachingMode: - description: 'Host Caching mode: None, Read - Only, Read Write.' - type: string - diskName: - description: The Name of the data disk in - the blob storage - type: string - diskURI: - description: The URI the data disk in the - blob storage - type: string - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - kind: - description: 'Expected values Shared: multiple - blob disks per storage account Dedicated: - single blob disk per storage account Managed: - azure managed data disk (only in managed - availability set). defaults to shared' - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - required: - - diskName - - diskURI - type: object - azureFile: - description: AzureFile represents an Azure File - Service mount on the host and bind mount to - the pod. - properties: - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretName: - description: the name of secret that contains - Azure Storage Account Name and Key - type: string - shareName: - description: Share Name - type: string - required: - - secretName - - shareName - type: object - cephfs: - description: CephFS represents a Ceph FS mount - on the host that shares a pod's lifetime - properties: - monitors: - description: 'Required: Monitors is a collection - of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - items: - type: string - type: array - path: - description: 'Optional: Used as the mounted - root, rather than the full Ceph tree, default - is /' - type: string - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts. More info: - https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: boolean - secretFile: - description: 'Optional: SecretFile is the - path to key ring for User, default is /etc/ceph/user.secret - More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - secretRef: - description: 'Optional: SecretRef is reference - to the authentication secret for User, default - is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - user: - description: 'Optional: User is the rados - user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - required: - - monitors - type: object - cinder: - description: 'Cinder represents a cinder volume - attached and mounted on kubelets host machine. - More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - properties: - fsType: - description: 'Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Examples: "ext4", "xfs", - "ntfs". Implicitly inferred to be "ext4" - if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts. More info: - https://examples.k8s.io/mysql-cinder-pd/README.md' - type: boolean - secretRef: - description: 'Optional: points to a secret - object containing parameters used to connect - to OpenStack.' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - volumeID: - description: 'volume id used to identify the - volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - required: - - volumeID - type: object - configMap: - description: ConfigMap represents a configMap - that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits used to - set permissions on created files by default. - Must be an octal value between 0000 and - 0777 or a decimal value between 0 and 511. - YAML accepts both octal and decimal values, - JSON requires decimal values for mode bits. - Defaults to 0644. Directories within the - path are not affected by this setting. This - might be in conflict with other options - that affect the file mode, like fsGroup, - and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value - pair in the Data field of the referenced - ConfigMap will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the ConfigMap, the volume setup will - error unless it is marked optional. Paths - must be relative and may not contain the - '..' path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used - to set permissions on this file. Must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its keys must be defined - type: boolean - type: object - csi: - description: CSI (Container Storage Interface) - represents ephemeral storage that is handled - by certain external CSI drivers (Beta feature). - properties: - driver: - description: Driver is the name of the CSI - driver that handles this volume. Consult - with your admin for the correct name as - registered in the cluster. - type: string - fsType: - description: Filesystem type to mount. Ex. - "ext4", "xfs", "ntfs". If not provided, - the empty value is passed to the associated - CSI driver which will determine the default - filesystem to apply. - type: string - nodePublishSecretRef: - description: NodePublishSecretRef is a reference - to the secret object containing sensitive - information to pass to the CSI driver to - complete the CSI NodePublishVolume and NodeUnpublishVolume - calls. This field is optional, and may - be empty if no secret is required. If the - secret object contains more than one secret, - all secret references are passed. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - readOnly: - description: Specifies a read-only configuration - for the volume. Defaults to false (read/write). - type: boolean - volumeAttributes: - additionalProperties: - type: string - description: VolumeAttributes stores driver-specific - properties that are passed to the CSI driver. - Consult your driver's documentation for - supported values. - type: object - required: - - driver - type: object - downwardAPI: - description: DownwardAPI represents downward API - about the pod that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on - created files by default. Must be a Optional: - mode bits used to set permissions on created - files by default. Must be an octal value - between 0000 and 0777 or a decimal value - between 0 and 511. YAML accepts both octal - and decimal values, JSON requires decimal - values for mode bits. Defaults to 0644. - Directories within the path are not affected - by this setting. This might be in conflict - with other options that affect the file - mode, like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - items: - description: Items is a list of downward API - volume file - items: - description: DownwardAPIVolumeFile represents - information to create the file containing - the pod field - properties: - fieldRef: - description: 'Required: Selects a field - of the pod: only annotations, labels, - name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits used - to set permissions on this file, must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the - relative path name of the file to - be created. Must not be absolute or - contain the ''..'' path. Must be utf-8 - encoded. The first item of the relative - path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of - the container: only resources limits - and requests (limits.cpu, limits.memory, - requests.cpu and requests.memory) - are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env - vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource - to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - emptyDir: - description: 'EmptyDir represents a temporary - directory that shares a pod''s lifetime. More - info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - properties: - medium: - description: 'What type of storage medium - should back this directory. The default - is "" which means to use the node''s default - medium. Must be an empty string (default) - or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage - required for this EmptyDir volume. The size - limit is also applicable for memory medium. - The maximum usage on memory medium EmptyDir - would be the minimum value between the SizeLimit - specified here and the sum of memory limits - of all containers in a pod. The default - is nil which means that the limit is undefined. - More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - ephemeral: - description: "Ephemeral represents a volume that - is handled by a cluster storage driver (Alpha - feature). The volume's lifecycle is tied to - the pod that defines it - it will be created - before the pod starts, and deleted when the - pod is removed. \n Use this if: a) the volume - is only needed while the pod runs, b) features - of normal volumes like restoring from snapshot - or capacity tracking are needed, c) the storage - driver is specified through a storage class, - and d) the storage driver supports dynamic volume - provisioning through a PersistentVolumeClaim - (see EphemeralVolumeSource for more information - on the connection between this volume type and - PersistentVolumeClaim). \n Use PersistentVolumeClaim - or one of the vendor-specific APIs for volumes - that persist for longer than the lifecycle of - an individual pod. \n Use CSI for light-weight - local ephemeral volumes if the CSI driver is - meant to be used that way - see the documentation - of the driver for more information. \n A pod - can use both types of ephemeral volumes and - persistent volumes at the same time." - properties: - readOnly: - description: Specifies a read-only configuration - for the volume. Defaults to false (read/write). - type: boolean - volumeClaimTemplate: - description: "Will be used to create a stand-alone - PVC to provision the volume. The pod in - which this EphemeralVolumeSource is embedded - will be the owner of the PVC, i.e. the PVC - will be deleted together with the pod. The - name of the PVC will be `-` where `` is the name - from the `PodSpec.Volumes` array entry. - Pod validation will reject the pod if the - concatenated name is not valid for a PVC - (for example, too long). \n An existing - PVC with that name that is not owned by - the pod will *not* be used for the pod to - avoid using an unrelated volume by mistake. - Starting the pod is then blocked until the - unrelated PVC is removed. If such a pre-created - PVC is meant to be used by the pod, the - PVC has to updated with an owner reference - to the pod once the pod exists. Normally - this should not be necessary, but it may - be useful when manually reconstructing a - broken cluster. \n This field is read-only - and no changes will be made by Kubernetes - to the PVC after it has been created. \n - Required, must not be nil." - properties: - metadata: - description: May contain labels and annotations - that will be copied into the PVC when - creating it. No other fields are allowed - and will be rejected during validation. - type: object - spec: - description: The specification for the - PersistentVolumeClaim. The entire content - is copied unchanged into the PVC that - gets created from this template. The - same fields as in a PersistentVolumeClaim - are also valid here. - properties: - accessModes: - description: 'AccessModes contains - the desired access modes the volume - should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used - to specify either: * An existing - VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - - Beta) * An existing PVC (PersistentVolumeClaim) - * An existing custom resource/object - that implements data population - (Alpha) In order to use VolumeSnapshot - object types, the appropriate feature - gate must be enabled (VolumeSnapshotDataSource - or AnyVolumeDataSource) If the provisioner - or an external controller can support - the specified data source, it will - create a new volume based on the - contents of the specified data source. - If the specified data source is - not supported, the volume will not - be created and the failure will - be reported as an event. In the - future, we plan to support more - data source types and the behavior - of the provisioner may change.' - properties: - apiGroup: - description: APIGroup is the group - for the resource being referenced. - If APIGroup is not specified, - the specified Kind must be in - the core API group. For any - other third-party types, APIGroup - is required. - type: string - kind: - description: Kind is the type - of resource being referenced - type: string - name: - description: Name is the name - of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents - the minimum resources the volume - should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes - the maximum amount of compute - resources allowed. More info: - https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes - the minimum amount of compute - resources required. If Requests - is omitted for a container, - it defaults to Limits if that - is explicitly specified, otherwise - to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes - to consider for binding. - properties: - matchExpressions: - description: matchExpressions - is a list of label selector - requirements. The requirements - are ANDed. - items: - description: A label selector - requirement is a selector - that contains values, a key, - and an operator that relates - the key and values. - properties: - key: - description: key is the - label key that the selector - applies to. - type: string - operator: - description: operator represents - a key's relationship to - a set of values. Valid - operators are In, NotIn, - Exists and DoesNotExist. - type: string - values: - description: values is an - array of string values. - If the operator is In - or NotIn, the values array - must be non-empty. If - the operator is Exists - or DoesNotExist, the values - array must be empty. This - array is replaced during - a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a - map of {key,value} pairs. A - single {key,value} in the matchLabels - map is equivalent to an element - of matchExpressions, whose key - field is "key", the operator - is "In", and the values array - contains only "value". The requirements - are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass - required by the claim. More info: - https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what - type of volume is required by the - claim. Value of Filesystem is implied - when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding - reference to the PersistentVolume - backing this claim. - type: string - type: object - required: - - spec - type: object - type: object - fc: - description: FC represents a Fibre Channel resource - that is attached to a kubelet's host machine - and then exposed to the pod. - properties: - fsType: - description: 'Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - lun: - description: 'Optional: FC target lun number' - format: int32 - type: integer - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts.' - type: boolean - targetWWNs: - description: 'Optional: FC target worldwide - names (WWNs)' - items: - type: string - type: array - wwids: - description: 'Optional: FC volume world wide - identifiers (wwids) Either wwids or combination - of targetWWNs and lun must be set, but not - both simultaneously.' - items: - type: string - type: array - type: object - flexVolume: - description: FlexVolume represents a generic volume - resource that is provisioned/attached using - an exec based plugin. - properties: - driver: - description: Driver is the name of the driver - to use for this volume. - type: string - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - The default filesystem depends on FlexVolume - script. - type: string - options: - additionalProperties: - type: string - description: 'Optional: Extra command options - if any.' - type: object - readOnly: - description: 'Optional: Defaults to false - (read/write). ReadOnly here will force the - ReadOnly setting in VolumeMounts.' - type: boolean - secretRef: - description: 'Optional: SecretRef is reference - to the secret object containing sensitive - information to pass to the plugin scripts. - This may be empty if no secret object is - specified. If the secret object contains - more than one secret, all secrets are passed - to the plugin scripts.' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - required: - - driver - type: object - flocker: - description: Flocker represents a Flocker volume - attached to a kubelet's host machine. This depends - on the Flocker control service being running - properties: - datasetName: - description: Name of the dataset stored as - metadata -> name on the dataset for Flocker - should be considered as deprecated - type: string - datasetUUID: - description: UUID of the dataset. This is - unique identifier of a Flocker dataset - type: string - type: object - gcePersistentDisk: - description: 'GCEPersistentDisk represents a GCE - Disk resource that is attached to a kubelet''s - host machine and then exposed to the pod. More - info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - partition: - description: 'The partition in the volume - that you want to mount. If omitted, the - default is to mount by volume name. Examples: - For volume /dev/sda1, you specify the partition - as "1". Similarly, the volume partition - for /dev/sda is "0" (or you can leave the - property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - format: int32 - type: integer - pdName: - description: 'Unique name of the PD resource - in GCE. Used to identify the disk in GCE. - More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: string - readOnly: - description: 'ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: boolean - required: - - pdName - type: object - gitRepo: - description: 'GitRepo represents a git repository - at a particular revision. DEPRECATED: GitRepo - is deprecated. To provision a container with - a git repo, mount an EmptyDir into an InitContainer - that clones the repo using git, then mount the - EmptyDir into the Pod''s container.' - properties: - directory: - description: Target directory name. Must not - contain or start with '..'. If '.' is supplied, - the volume directory will be the git repository. Otherwise, - if specified, the volume will contain the - git repository in the subdirectory with - the given name. - type: string - repository: - description: Repository URL - type: string - revision: - description: Commit hash for the specified - revision. - type: string - required: - - repository - type: object - glusterfs: - description: 'Glusterfs represents a Glusterfs - mount on the host that shares a pod''s lifetime. - More info: https://examples.k8s.io/volumes/glusterfs/README.md' - properties: - endpoints: - description: 'EndpointsName is the endpoint - name that details Glusterfs topology. More - info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - path: - description: 'Path is the Glusterfs volume - path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - readOnly: - description: 'ReadOnly here will force the - Glusterfs volume to be mounted with read-only - permissions. Defaults to false. More info: - https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: boolean - required: - - endpoints - - path - type: object - hostPath: - description: 'HostPath represents a pre-existing - file or directory on the host machine that is - directly exposed to the container. This is generally - used for system agents or other privileged things - that are allowed to see the host machine. Most - containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath - --- TODO(jonesdl) We need to restrict who can - use host directory mounts and who can/can not - mount host directories as read/write.' - properties: - path: - description: 'Path of the directory on the - host. If the path is a symlink, it will - follow the link to the real path. More info: - https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - type: - description: 'Type for HostPath Volume Defaults - to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - required: - - path - type: object - iscsi: - description: 'ISCSI represents an ISCSI Disk resource - that is attached to a kubelet''s host machine - and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' - properties: - chapAuthDiscovery: - description: whether support iSCSI Discovery - CHAP authentication - type: boolean - chapAuthSession: - description: whether support iSCSI Session - CHAP authentication - type: boolean - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - initiatorName: - description: Custom iSCSI Initiator Name. - If initiatorName is specified with iscsiInterface - simultaneously, new iSCSI interface : will be created for - the connection. - type: string - iqn: - description: Target iSCSI Qualified Name. - type: string - iscsiInterface: - description: iSCSI Interface Name that uses - an iSCSI transport. Defaults to 'default' - (tcp). - type: string - lun: - description: iSCSI Target Lun number. - format: int32 - type: integer - portals: - description: iSCSI Target Portal List. The - portal is either an IP or ip_addr:port if - the port is other than default (typically - TCP ports 860 and 3260). - items: - type: string - type: array - readOnly: - description: ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. - type: boolean - secretRef: - description: CHAP Secret for iSCSI target - and initiator authentication - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - targetPortal: - description: iSCSI Target Portal. The Portal - is either an IP or ip_addr:port if the port - is other than default (typically TCP ports - 860 and 3260). - type: string - required: - - iqn - - lun - - targetPortal - type: object - name: - description: 'Volume''s name. Must be a DNS_LABEL - and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' - type: string - nfs: - description: 'NFS represents an NFS mount on the - host that shares a pod''s lifetime More info: - https://kubernetes.io/docs/concepts/storage/volumes#nfs' - properties: - path: - description: 'Path that is exported by the - NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - readOnly: - description: 'ReadOnly here will force the - NFS export to be mounted with read-only - permissions. Defaults to false. More info: - https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: boolean - server: - description: 'Server is the hostname or IP - address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - required: - - path - - server - type: object - persistentVolumeClaim: - description: 'PersistentVolumeClaimVolumeSource - represents a reference to a PersistentVolumeClaim - in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - claimName: - description: 'ClaimName is the name of a PersistentVolumeClaim - in the same namespace as the pod using this - volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - type: string - readOnly: - description: Will force the ReadOnly setting - in VolumeMounts. Default false. - type: boolean - required: - - claimName - type: object - photonPersistentDisk: - description: PhotonPersistentDisk represents a - PhotonController persistent disk attached and - mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - pdID: - description: ID that identifies Photon Controller - persistent disk - type: string - required: - - pdID - type: object - portworxVolume: - description: PortworxVolume represents a portworx - volume attached and mounted on kubelets host - machine - properties: - fsType: - description: FSType represents the filesystem - type to mount Must be a filesystem type - supported by the host operating system. - Ex. "ext4", "xfs". Implicitly inferred to - be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - volumeID: - description: VolumeID uniquely identifies - a Portworx volume - type: string - required: - - volumeID - type: object - projected: - description: Items for all in one resources secrets, - configmaps, and downward API - properties: - defaultMode: - description: Mode bits used to set permissions - on created files by default. Must be an - octal value between 0000 and 0777 or a decimal - value between 0 and 511. YAML accepts both - octal and decimal values, JSON requires - decimal values for mode bits. Directories - within the path are not affected by this - setting. This might be in conflict with - other options that affect the file mode, - like fsGroup, and the result can be other - mode bits set. - format: int32 - type: integer - sources: - description: list of volume projections - items: - description: Projection that may be projected - along with other supported volume types - properties: - configMap: - description: information about the configMap - data to project - properties: - items: - description: If unspecified, each - key-value pair in the Data field - of the referenced ConfigMap will - be projected into the volume as - a file whose name is the key and - content is the value. If specified, - the listed keys will be projected - into the specified paths, and - unlisted keys will not be present. - If a key is specified which is - not present in the ConfigMap, - the volume setup will error unless - it is marked optional. Paths must - be relative and may not contain - the '..' path or start with '..'. - items: - description: Maps a string key - to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode - bits used to set permissions - on this file. Must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative - path of the file to map - the key to. May not be an - absolute path. May not contain - the path element '..'. May - not start with the string - '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - ConfigMap or its keys must be - defined - type: boolean - type: object - downwardAPI: - description: information about the downwardAPI - data to project - properties: - items: - description: Items is a list of - DownwardAPIVolume file - items: - description: DownwardAPIVolumeFile - represents information to create - the file containing the pod - field - properties: - fieldRef: - description: 'Required: Selects - a field of the pod: only - annotations, labels, name - and namespace are supported.' - properties: - apiVersion: - description: Version of - the schema the FieldPath - is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the - field to select in the - specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode - bits used to set permissions - on this file, must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path - is the relative path name - of the file to be created. - Must not be absolute or - contain the ''..'' path. - Must be utf-8 encoded. The - first item of the relative - path must not start with - ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource - of the container: only resources - limits and requests (limits.cpu, - limits.memory, requests.cpu - and requests.memory) are - currently supported.' - properties: - containerName: - description: 'Container - name: required for volumes, - optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies - the output format of - the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: - resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - secret: - description: information about the secret - data to project - properties: - items: - description: If unspecified, each - key-value pair in the Data field - of the referenced Secret will - be projected into the volume as - a file whose name is the key and - content is the value. If specified, - the listed keys will be projected - into the specified paths, and - unlisted keys will not be present. - If a key is specified which is - not present in the Secret, the - volume setup will error unless - it is marked optional. Paths must - be relative and may not contain - the '..' path or start with '..'. - items: - description: Maps a string key - to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode - bits used to set permissions - on this file. Must be an - octal value between 0000 - and 0777 or a decimal value - between 0 and 511. YAML - accepts both octal and decimal - values, JSON requires decimal - values for mode bits. If - not specified, the volume - defaultMode will be used. - This might be in conflict - with other options that - affect the file mode, like - fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative - path of the file to map - the key to. May not be an - absolute path. May not contain - the path element '..'. May - not start with the string - '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. - apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the - Secret or its key must be defined - type: boolean - type: object - serviceAccountToken: - description: information about the serviceAccountToken - data to project - properties: - audience: - description: Audience is the intended - audience of the token. A recipient - of a token must identify itself - with an identifier specified in - the audience of the token, and - otherwise should reject the token. - The audience defaults to the identifier - of the apiserver. - type: string - expirationSeconds: - description: ExpirationSeconds is - the requested duration of validity - of the service account token. - As the token approaches expiration, - the kubelet volume plugin will - proactively rotate the service - account token. The kubelet will - start trying to rotate the token - if the token is older than 80 - percent of its time to live or - if the token is older than 24 - hours.Defaults to 1 hour and must - be at least 10 minutes. - format: int64 - type: integer - path: - description: Path is the path relative - to the mount point of the file - to project the token into. - type: string - required: - - path - type: object - type: object - type: array - required: - - sources - type: object - quobyte: - description: Quobyte represents a Quobyte mount - on the host that shares a pod's lifetime - properties: - group: - description: Group to map volume access to - Default is no group - type: string - readOnly: - description: ReadOnly here will force the - Quobyte volume to be mounted with read-only - permissions. Defaults to false. - type: boolean - registry: - description: Registry represents a single - or multiple Quobyte Registry services specified - as a string as host:port pair (multiple - entries are separated with commas) which - acts as the central registry for volumes - type: string - tenant: - description: Tenant owning the given Quobyte - volume in the Backend Used with dynamically - provisioned Quobyte volumes, value is set - by the plugin - type: string - user: - description: User to map volume access to - Defaults to serivceaccount user - type: string - volume: - description: Volume is a string that references - an already created Quobyte volume by name. - type: string - required: - - registry - - volume - type: object - rbd: - description: 'RBD represents a Rados Block Device - mount on the host that shares a pod''s lifetime. - More info: https://examples.k8s.io/volumes/rbd/README.md' - properties: - fsType: - description: 'Filesystem type of the volume - that you want to mount. Tip: Ensure that - the filesystem type is supported by the - host operating system. Examples: "ext4", - "xfs", "ntfs". Implicitly inferred to be - "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd - TODO: how do we prevent errors in the filesystem - from compromising the machine' - type: string - image: - description: 'The rados image name. More info: - https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - keyring: - description: 'Keyring is the path to key ring - for RBDUser. Default is /etc/ceph/keyring. - More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - monitors: - description: 'A collection of Ceph monitors. - More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - items: - type: string - type: array - pool: - description: 'The rados pool name. Default - is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - readOnly: - description: 'ReadOnly here will force the - ReadOnly setting in VolumeMounts. Defaults - to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: boolean - secretRef: - description: 'SecretRef is name of the authentication - secret for RBDUser. If provided overrides - keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - user: - description: 'The rados user name. Default - is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - required: - - image - - monitors - type: object - scaleIO: - description: ScaleIO represents a ScaleIO persistent - volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Default is "xfs". - type: string - gateway: - description: The host address of the ScaleIO - API Gateway. - type: string - protectionDomain: - description: The name of the ScaleIO Protection - Domain for the configured storage. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretRef: - description: SecretRef references to the secret - for ScaleIO user and other sensitive information. - If this is not provided, Login operation - will fail. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - sslEnabled: - description: Flag to enable/disable SSL communication - with Gateway, default false - type: boolean - storageMode: - description: Indicates whether the storage - for a volume should be ThickProvisioned - or ThinProvisioned. Default is ThinProvisioned. - type: string - storagePool: - description: The ScaleIO Storage Pool associated - with the protection domain. - type: string - system: - description: The name of the storage system - as configured in ScaleIO. - type: string - volumeName: - description: The name of a volume already - created in the ScaleIO system that is associated - with this volume source. - type: string - required: - - gateway - - secretRef - - system - type: object - secret: - description: 'Secret represents a secret that - should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - properties: - defaultMode: - description: 'Optional: mode bits used to - set permissions on created files by default. - Must be an octal value between 0000 and - 0777 or a decimal value between 0 and 511. - YAML accepts both octal and decimal values, - JSON requires decimal values for mode bits. - Defaults to 0644. Directories within the - path are not affected by this setting. This - might be in conflict with other options - that affect the file mode, like fsGroup, - and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value - pair in the Data field of the referenced - Secret will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the Secret, the volume setup will error - unless it is marked optional. Paths must - be relative and may not contain the '..' - path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used - to set permissions on this file. Must - be an octal value between 0000 and - 0777 or a decimal value between 0 - and 511. YAML accepts both octal and - decimal values, JSON requires decimal - values for mode bits. If not specified, - the volume defaultMode will be used. - This might be in conflict with other - options that affect the file mode, - like fsGroup, and the result can be - other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - optional: - description: Specify whether the Secret or - its keys must be defined - type: boolean - secretName: - description: 'Name of the secret in the pod''s - namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - type: string - type: object - storageos: - description: StorageOS represents a StorageOS - volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting - in VolumeMounts. - type: boolean - secretRef: - description: SecretRef specifies the secret - to use for obtaining the StorageOS API credentials. If - not specified, default values will be attempted. - properties: - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - type: object - volumeName: - description: VolumeName is the human-readable - name of the StorageOS volume. Volume names - are only unique within a namespace. - type: string - volumeNamespace: - description: VolumeNamespace specifies the - scope of the volume within StorageOS. If - no namespace is specified then the Pod's - namespace will be used. This allows the - Kubernetes name scoping to be mirrored within - StorageOS for tighter integration. Set VolumeName - to any name to override the default behaviour. - Set to "default" if you are not using namespaces - within StorageOS. Namespaces that do not - pre-exist within StorageOS will be created. - type: string - type: object - vsphereVolume: - description: VsphereVolume represents a vSphere - volume attached and mounted on kubelets host - machine - properties: - fsType: - description: Filesystem type to mount. Must - be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs", "ntfs". - Implicitly inferred to be "ext4" if unspecified. - type: string - storagePolicyID: - description: Storage Policy Based Management - (SPBM) profile ID associated with the StoragePolicyName. - type: string - storagePolicyName: - description: Storage Policy Based Management - (SPBM) profile name. - type: string - volumePath: - description: Path that identifies vSphere - volume vmdk - type: string - required: - - volumePath - type: object - required: - - name - type: object - type: array - required: - - containers - type: object - type: object - topologyPolicy: - description: Specifies the topology policy of task - type: string - type: object - type: array - ttlSecondsAfterFinished: - description: ttlSecondsAfterFinished limits the lifetime of a Job - that has finished execution (either Completed or Failed). If this - field is set, ttlSecondsAfterFinished after the Job finishes, it - is eligible to be automatically deleted. If this field is unset, - the Job won't be automatically deleted. If this field is set to - zero, the Job becomes eligible to be deleted immediately after it - finishes. - format: int32 - type: integer - volumes: - description: The volumes mount on Job - items: - description: VolumeSpec defines the specification of Volume, e.g. - PVC. - properties: - mountPath: - description: Path within the container at which the volume should - be mounted. Must not contain ':'. - type: string - volumeClaim: - description: VolumeClaim defines the PVC used by the VolumeMount. - properties: - accessModes: - description: 'AccessModes contains the desired access modes - the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify either: - * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - - Beta) * An existing PVC (PersistentVolumeClaim) * An - existing custom resource/object that implements data population - (Alpha) In order to use VolumeSnapshot object types, the - appropriate feature gate must be enabled (VolumeSnapshotDataSource - or AnyVolumeDataSource) If the provisioner or an external - controller can support the specified data source, it will - create a new volume based on the contents of the specified - data source. If the specified data source is not supported, - the volume will not be created and the failure will be - reported as an event. In the future, we plan to support - more data source types and the behavior of the provisioner - may change.' - properties: - apiGroup: - description: APIGroup is the group for the resource - being referenced. If APIGroup is not specified, the - specified Kind must be in the core API group. For - any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum resources - the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of - compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount - of compute resources required. If Requests is omitted - for a container, it defaults to Limits if that is - explicitly specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider for - binding. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: A label selector requirement is a selector - that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: operator represents a key's relationship - to a set of values. Valid operators are In, - NotIn, Exists and DoesNotExist. - type: string - values: - description: values is an array of string values. - If the operator is In or NotIn, the values array - must be non-empty. If the operator is Exists - or DoesNotExist, the values array must be empty. - This array is replaced during a strategic merge - patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. - A single {key,value} in the matchLabels map is equivalent - to an element of matchExpressions, whose key field - is "key", the operator is "In", and the values array - contains only "value". The requirements are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass required by the claim. - More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is required - by the claim. Value of Filesystem is implied when not - included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the - PersistentVolume backing this claim. - type: string - type: object - volumeClaimName: - description: defined the PVC name - type: string - required: - - mountPath - type: object - type: array - type: object - status: - description: Current status of the volcano Job - properties: - controlledResources: - additionalProperties: - type: string - description: The resources that controlled by this job, e.g. Service, - ConfigMap - type: object - failed: - description: The number of pods which reached phase Failed. - format: int32 - type: integer - minAvailable: - description: The minimal available pods to run for this Job - format: int32 - type: integer - pending: - description: The number of pending pods. - format: int32 - type: integer - retryCount: - description: The number of Job retries. - format: int32 - type: integer - running: - description: The number of running pods. - format: int32 - type: integer - runningDuration: - description: The job running duration is the length of time from job - running to complete. - type: string - state: - description: Current state of Job. - properties: - lastTransitionTime: - description: Last time the condition transit from one phase to - another. - format: date-time - type: string - message: - description: Human-readable message indicating details about last - transition. - type: string - phase: - description: The phase of Job. - type: string - reason: - description: Unique, one-word, CamelCase reason for the phase's - last transition. - type: string - type: object - succeeded: - description: The number of pods which reached phase Succeeded. - format: int32 - type: integer - taskStatusCount: - additionalProperties: - description: TaskState contains details for the current state of - the task. - properties: - phase: - additionalProperties: - format: int32 - type: integer - description: The phase of Task. - type: object - type: object - description: The status of pods for each task - type: object - terminating: - description: The number of pods which reached phase Terminating. - format: int32 - type: integer - unknown: - description: The number of pods which reached phase Unknown. - format: int32 - type: integer - version: - description: Current version of job - format: int32 - type: integer - type: object - type: object - served: true - storage: true - subresources: - status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/bus_v1alpha1_command.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: commands.bus.volcano.sh -spec: - group: bus.volcano.sh - names: - kind: Command - listKind: CommandList - plural: commands - singular: command - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: Command defines command structure. - properties: - action: - description: Action defines the action that will be took to the target - object. - type: string - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - message: - description: Human-readable message indicating details of this command. - type: string - metadata: - type: object - reason: - description: Unique, one-word, CamelCase reason for this command. - type: string - target: - description: TargetObject defines the target object of this command. - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: If true, AND if the owner has the "foregroundDeletion" - finalizer, then the owner cannot be deleted from the key-value store - until this reference is removed. Defaults to false. To set this - field, a user needs "delete" permission of the owner, otherwise - 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - name: - description: 'Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - uid: - description: 'UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids' - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/controllers.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-controllers - namespace: volcano-system ---- -# Source: volcano/templates/controllers.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-controllers -rules: - - apiGroups: ["apiextensions.k8s.io"] - resources: ["customresourcedefinitions"] - verbs: ["create", "get", "list", "watch", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs"] - verbs: ["get", "list", "watch", "update", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs/status", "jobs/finalizers"] - verbs: ["update", "patch"] - - apiGroups: ["bus.volcano.sh"] - resources: ["commands"] - verbs: ["get", "list", "watch", "delete"] - - apiGroups: [""] - resources: ["events"] - verbs: ["create", "list", "watch", "update", "patch"] - - apiGroups: [""] - resources: ["pods"] - verbs: ["create", "get", "list", "watch", "update", "bind", "delete"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["get", "list", "watch", "create"] - - apiGroups: [""] - resources: ["services"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: [""] - resources: ["secrets"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups", "queues", "queues/status", "elasticresourcequotas", "elasticresourcequotas/status"] - verbs: ["get", "list", "watch", "create", "delete", "update"] - - apiGroups: ["scheduling.k8s.io"] - resources: ["priorityclasses"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: ["networking.k8s.io"] - resources: ["networkpolicies"] - verbs: ["get", "create", "delete"] ---- -# Source: volcano/templates/controllers.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-controllers-role -subjects: - - kind: ServiceAccount - name: volcano-controllers - namespace: volcano-system -roleRef: - kind: ClusterRole - name: volcano-controllers - apiGroup: rbac.authorization.k8s.io + - name: volcano-admission + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --tls-cert-file=/admission.local.config/certificates/tls.crt + - --tls-private-key-file=/admission.local.config/certificates/tls.key + - --ca-cert-file=/admission.local.config/certificates/ca.crt + - --webhook-namespace=paddleflow + - --webhook-service-name=volcano-admission-service + - --logtostderr=false + - --port=8443 + - -v=4 + - 2>&1 + - --alsologtostderr + - --log_dir=/tmp/log + - --log_file=/tmp/log/webhook.log + - --log_file_max_size=300 + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_admission-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + - name: volcano-admission-secret + #容器里配置文件存放路径 + mountPath: /admission.local.config/certificates + #容器里配置文件名称 + subPath: + initContainers: + volumes: + - name: logdir + hostPath: + path: /mnt/log/volcano/admission + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: volcano-admission-secret + secret: + secretName: volcano-admission-secret --- -# Source: volcano/templates/controllers.yaml -kind: Deployment +# Source: pfchart/charts/volcano-controller/templates/volcano-controller-deployment.yaml apiVersion: apps/v1 +kind: Deployment metadata: - name: volcano-controllers - namespace: volcano-system + #文件里的所有volcano-controller、volcano_controller都替换成实际名称 + name: volcano-controller labels: app: volcano-controller + chart: "volcano-controller-0.0.11-rrm1js" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + app.kubernetes.io/name: 'volcano-controller' + app: volcano-controller + annotations: + app: volcano-controller + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -8504,151 +2069,71 @@ spec: metadata: labels: app: volcano-controller + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' + app.kubernetes.io/name: 'volcano-controller' + app: volcano-controller + annotations: + app: volcano-controller spec: - serviceAccount: volcano-controllers + dnsPolicy: ClusterFirst + restartPolicy: Always + serviceAccountName: volcano-controllers containers: - - name: volcano-controllers - image: paddleflow/vc-controller-manager:pf-1.4-vc-1.3 - args: - - --logtostderr - - -v=4 - - 2>&1 - imagePullPolicy: "IfNotPresent" - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: ServiceAccount -metadata: - name: volcano-scheduler - namespace: volcano-system ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: ConfigMap -metadata: - name: volcano-scheduler-configmap - namespace: volcano-system -data: - volcano-scheduler.conf: | - actions: "enqueue, allocate, backfill" - tiers: - - plugins: - - name: priority - - name: gang - - name: conformance - - plugins: - - name: drf - - name: predicates - - name: proportion - - name: nodeorder - - name: binpack ---- -# Source: volcano/templates/scheduler.yaml -kind: ClusterRole -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-scheduler -rules: - - apiGroups: ["apiextensions.k8s.io"] - resources: ["customresourcedefinitions"] - verbs: ["create", "get", "list", "watch", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs"] - verbs: ["get", "list", "watch", "update", "delete"] - - apiGroups: ["batch.volcano.sh"] - resources: ["jobs/status"] - verbs: ["update", "patch"] - - apiGroups: [""] - resources: ["events"] - verbs: ["create", "list", "watch", "update", "patch"] - - apiGroups: [""] - resources: ["pods", "pods/status"] - verbs: ["create", "get", "list", "watch", "update", "patch", "bind", "updateStatus", "delete"] - - apiGroups: [""] - resources: ["pods/binding"] - verbs: ["create"] - - apiGroups: [""] - resources: ["persistentvolumeclaims"] - verbs: ["list", "watch", "update"] - - apiGroups: [""] - resources: ["persistentvolumes"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["namespaces"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["resourcequotas"] - verbs: ["list", "watch"] - - apiGroups: [""] - resources: ["nodes"] - verbs: ["list", "watch"] - - apiGroups: [ "storage.k8s.io" ] - resources: ["storageclasses", "csinodes", "csidrivers", "csistoragecapacities"] - verbs: [ "list", "watch" ] - - apiGroups: ["policy"] - resources: ["poddisruptionbudgets"] - verbs: ["list", "watch"] - - apiGroups: ["scheduling.k8s.io"] - resources: ["priorityclasses"] - verbs: ["get", "list", "watch"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["queues", "elasticresourcequotas"] - verbs: ["get", "list", "watch", "create", "delete"] - - apiGroups: ["scheduling.incubator.k8s.io", "scheduling.volcano.sh"] - resources: ["podgroups"] - verbs: ["list", "watch", "update"] - - apiGroups: [""] - resources: ["configmaps"] - verbs: ["get", "create", "delete", "update"] ---- -# Source: volcano/templates/scheduler.yaml -kind: ClusterRoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - name: volcano-scheduler-role -subjects: - - kind: ServiceAccount - name: volcano-scheduler - namespace: volcano-system -roleRef: - kind: ClusterRole - name: volcano-scheduler - apiGroup: rbac.authorization.k8s.io ---- -# Source: volcano/templates/scheduler.yaml -apiVersion: v1 -kind: Service -metadata: - annotations: - prometheus.io/path: /metrics - prometheus.io/port: "8080" - prometheus.io/scrape: "true" - name: volcano-scheduler-service - namespace: volcano-system -spec: - ports: - - port: 8080 - protocol: TCP - targetPort: 8080 - selector: - app: volcano-scheduler - type: ClusterIP + - name: volcano-controller + image: "paddleflow/vc-controller-manager:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --logtostderr=false + - -v=4 + - 2>&1 + - --log_dir=/tmp/log + - --alsologtostderr + - --log_file=/tmp/log/controller.log + - --log_file_max_size=300 + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_controller-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + initContainers: + volumes: + - name: logdir + hostPath: + path: /mnt/log/volcano/controller + type: DirectoryOrCreate + # 集群已存在的configMap和secret --- -# Source: volcano/templates/scheduler.yaml -kind: Deployment +# Source: pfchart/charts/volcano-scheduler/templates/volcano-scheduler-deployment.yaml apiVersion: apps/v1 +kind: Deployment metadata: + #文件里的所有volcano-scheduler、volcano_scheduler都替换成实际名称 name: volcano-scheduler - namespace: volcano-system labels: app: volcano-scheduler + chart: "volcano-scheduler-0.0.23-rrm1mf" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + app: volcano-scheduler + annotations: + app: volcano-scheduler + reloader.stakater.com/auto: "false" spec: replicas: 1 selector: @@ -8658,464 +2143,177 @@ spec: metadata: labels: app: volcano-scheduler + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' + app.kubernetes.io/name: 'volcano-scheduler' + app: volcano-scheduler + annotations: + app: volcano-scheduler spec: - serviceAccount: volcano-scheduler + dnsPolicy: ClusterFirst + restartPolicy: Always + serviceAccountName: volcano-scheduler containers: - - name: volcano-scheduler - image: paddleflow/vc-scheduler:pf-1.4-vc-1.3 - args: - - --logtostderr - - --scheduler-conf=/volcano.scheduler/volcano-scheduler.conf - - -v=3 - - 2>&1 - imagePullPolicy: "IfNotPresent" - resources: - requests: - memory: "1G" - cpu: "500m" - limits: - memory: "2G" - cpu: "2000m" - volumeMounts: - - name: scheduler-config - mountPath: /volcano.scheduler + - name: volcano-scheduler + image: "paddleflow/vc-scheduler:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + args: + #container_args list + - --alsologtostderr + - --scheduler-conf=/volcano.scheduler/volcano-scheduler-pf.conf + - -v=4 + - 2>&1 + - --scheduler-name=volcano + - --log_dir=/tmp/log + - --logtostderr=false + - --log_file_max_size=100 + - --log_file=/tmp/log/scheduler.log + securityContext: + privileged: false + #服务启动暴露的端口,list形式,根据服务情况增加或删减 + #注意:这个要跟volcano_scheduler-service.yaml里的ports一一对应 + ports: + #服务的环境变量,list形式,根据服务情况增加或删减 + env: + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + - name: scheduler-logdir + mountPath: /tmp/log + mountPropagation: None + subPath: + - name: conf + #容器里配置文件存放路径 + mountPath: /volcano.scheduler/volcano-scheduler-pf.conf + #容器里配置文件名称 + subPath: volcano-scheduler-pf.conf + initContainers: volumes: - - name: scheduler-config - configMap: - name: volcano-scheduler-configmap ---- -# Source: volcano/templates/scheduling_v1beta1_podgroup.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: podgroups.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: PodGroup - listKind: PodGroupList - plural: podgroups - shortNames: - - pg - - podgroup-v1beta1 - singular: podgroup - scope: Namespaced - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - description: PodGroup is a collection of Pod; used for batch workload. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the pod group. - More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' - properties: - minMember: - description: MinMember defines the minimal number of members/tasks - to run the pod group; if there's not enough resources to start all - tasks, the scheduler will not start anyone. - format: int32 - type: integer - minResources: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: MinResources defines the minimal resource of members/tasks - to run the pod group; if there's not enough resources to start all - tasks, the scheduler will not start anyone. - type: object - minTaskMember: - additionalProperties: - format: int32 - type: integer - description: MinTaskMember defines the minimal number of pods to run - each task in the pod group; if there's not enough resources to start - each task, the scheduler will not start anyone. - type: object - priorityClassName: - description: If specified, indicates the PodGroup's priority. "system-node-critical" - and "system-cluster-critical" are two special keywords which indicate - the highest priorities with the former being the highest priority. - Any other name must be defined by creating a PriorityClass object - with that name. If not specified, the PodGroup priority will be - default or zero if there is no default. - type: string - queue: - description: Queue defines the queue to allocate resource for PodGroup; - if queue does not exist, the PodGroup will not be scheduled. Defaults - to `default` Queue with the lowest weight. - type: string - type: object - status: - description: Status represents the current information about a pod group. - This data may not be up to date. - properties: - conditions: - description: The conditions of PodGroup. - items: - description: PodGroupCondition contains details for the current - state of this pod group. - properties: - lastTransitionTime: - description: Last time the phase transitioned from another to - current phase. - format: date-time - type: string - message: - description: Human-readable message indicating details about - last transition. - type: string - reason: - description: Unique, one-word, CamelCase reason for the phase's - last transition. - type: string - status: - description: Status is the status of the condition. - type: string - transitionID: - description: The ID of condition transition. - type: string - type: - description: Type is the type of the condition - type: string - type: object - type: array - failed: - description: The number of pods which reached phase Failed. - format: int32 - type: integer - phase: - description: Current phase of PodGroup. - type: string - running: - description: The number of actively running pods. - format: int32 - type: integer - succeeded: - description: The number of pods which reached phase Succeeded. - format: int32 - type: integer - type: object - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -# Source: volcano/templates/scheduling_v1beta1_queue.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: queues.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: Queue - listKind: QueueList - plural: queues - shortNames: - - q - - queue-v1beta1 - singular: queue - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - description: Queue is a queue of PodGroup. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the queue. More - info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status' - properties: - capability: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: ResourceList is a set of (resource name, quantity) pairs. - type: object - reclaimable: - description: Reclaimable indicate whether the queue can be reclaimed - by other queue - type: boolean - weight: - format: int32 - type: integer - type: object - status: - description: The status of queue. - properties: - inqueue: - description: The number of `Inqueue` PodGroup in this queue. - format: int32 - type: integer - pending: - description: The number of 'Pending' PodGroup in this queue. - format: int32 - type: integer - running: - description: The number of 'Running' PodGroup in this queue. - format: int32 - type: integer - state: - description: State is state of queue - type: string - unknown: - description: The number of 'Unknown' PodGroup in this queue. - format: int32 - type: integer - type: object - type: object - served: true - storage: true - subresources: - status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] ---- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: elasticresourcequotas.scheduling.volcano.sh -spec: - group: scheduling.volcano.sh - names: - kind: ElasticResourceQuota - listKind: ElasticResourceQuotaList - plural: elasticresourcequotas - shortNames: - - equota - - equota-v1beta1 - singular: elasticresourcequota - scope: Cluster - versions: - - name: v1beta1 - schema: - openAPIV3Schema: - type: object - properties: - kind: - type: string - description: >- - Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the - client submits requests to. Cannot be updated. In CamelCase. - More info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - spec: - type: object - properties: - max: - type: object - description: Max is the upper bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - min: - type: object - description: Min is the lower bound of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - namespace: - type: string - description: >- - namespace defines elastic resource quota belongs to one - namespace - reclaimable: - type: boolean - description: >- - Reclaimable indicate whether the elastic quota can be - reclaimed by other elastic resource quota - hardwareTypes: - type: array - items: - type: string - description: >- - HardwareTypes defines hardware types of elastic resource - quota - description: >- - Specification of the desired behavior of the - ElasticResourceQuota. More info: - https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status - status: - type: object - properties: - used: - type: object - description: Used resource of elastic resource quota - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: >- - ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - isLeaf: - type: boolean - description: IsLeaf defines whether elastic resource quota is leaf or not - queueName: - type: string - description: QueueName indicate bound queue - description: The status of ElasticResourceQuota. - metadata: - type: object - apiVersion: - type: string - description: >- - APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the - latest internal value, and may reject unrecognized values. More - info: - https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - description: Elastic Resource Quota - served: true - storage: true - subresources: - status: {} - additionalPrinterColumns: - - name: Age - type: date - priority: 0 - jsonPath: .metadata.creationTimestamp - - name: Leaf - type: boolean - priority: 1 - jsonPath: .status.isLeaf - - name: QueueName - type: string - priority: 2 - description: The name of bound queue - jsonPath: .status.queueName - - name: Reclaim - type: boolean - priority: 3 - jsonPath: .spec.reclaimable - - name: Namespace - type: string - priority: 4 - description: The related of namespace - jsonPath: .spec.namespace - - name: HardwareTypes - type: string - priority: 5 - jsonPath: .spec.hardwareTypes - conversion: - strategy: None + - name: scheduler-logdir + hostPath: + path: /mnt/log/volcano/scheduler + type: DirectoryOrCreate + # 集群已存在的configMap和secret + - name: conf + configMap: + name: volcano-scheduler --- -kind: CustomResourceDefinition +# Source: pfchart/charts/volcano-admission-init/templates/volcano-admission-init-job.yaml +apiVersion: batch/v1 +kind: Job metadata: - name: csidrivers.csi.storage.k8s.io + #文件里的所有volcano-admission-init、volcano_admission_init都替换成实际名称 + name: volcano-admission-init labels: - addonmanager.kubernetes.io/mode: Reconcile + app: volcano-admission-init + chart: "volcano-admission-init-0.0.8-rrm1o4" + release: "paddleflow" + heritage: "Helm" + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + app.kubernetes.io/name: 'volcano-admission-init' + app: volcano-admission-init + annotations: + reloader.stakater.com/auto: "false" spec: - group: csi.storage.k8s.io - names: - kind: CSIDriver - plural: csidrivers - scope: Cluster - validation: - openAPIV3Schema: - properties: - spec: - description: Specification of the CSI Driver. - properties: - attachRequired: - description: Indicates this CSI volume driver requires an attach operation, - and that Kubernetes should call attach and wait for any attach operation - to complete before proceeding to mount. - type: boolean - podInfoOnMountVersion: - description: Indicates this CSI volume driver requires additional pod - information (like podName, podUID, etc.) during mount operations. - type: string - version: v1alpha1 + backoffLimit: 3 + completions: 1 + parallelism: 1 + activeDeadlineSeconds: 120 + ttlSecondsAfterFinished: 100 + template: + metadata: + labels: + app.kubernetes.io/managed-by: 'Helm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' + app.kubernetes.io/name: 'volcano-admission-init' + spec: + serviceAccountName: volcano-admission + containers: + - name: volcano-admission-init + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc4" + imagePullPolicy: "IfNotPresent" + command: + - ./gen-admission-secret.sh + - --service + - volcano-admission-service + - --namespace + - $(K8Sns) + - --secret + - volcano-admission-secret + env: + - name: "K8Sns" + valueFrom: + fieldRef: + fieldPath: metadata.namespace + securityContext: + privileged: false + #服务的环境变量,list形式,根据服务情况增加或删减 + #container_envs list + #注意:这里的name跟后面volumes里name是一一对应的 + volumeMounts: + initContainers: + volumes: + # 集群已存在的configMap和secret + restartPolicy: OnFailure --- +# Source: pfchart/charts/pfs-csi-provisioner/templates/paddleflowstorage.yaml apiVersion: csi.storage.k8s.io/v1alpha1 kind: CSIDriver metadata: - name: paddleflowstorage + name: paddleflowstorage spec: - attachRequired: false - podInfoOnMount: false + attachRequired: false + podInfoOnMount: false + volumeLifecycleModes: + - Persistent --- +# Source: pfchart/charts/volcano-scheduler/templates/high.yaml apiVersion: scheduling.k8s.io/v1 description: Used for critical pods that must not be moved from their current node. kind: PriorityClass metadata: - name: high - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/high + name: high + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/high value: 1000 - --- +# Source: pfchart/charts/volcano-scheduler/templates/low.yaml +apiVersion: scheduling.k8s.io/v1 +description: Used for low-priority Pods that are easily preempted. +kind: PriorityClass +metadata: + name: low + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/low +value: 50 +--- +# Source: pfchart/charts/volcano-scheduler/templates/normal.yaml apiVersion: scheduling.k8s.io/v1 description: Used for normal pods. +globalDefault: true kind: PriorityClass metadata: - name: normal - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/normal + name: normal + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/normal value: 100 - --- +# Source: pfchart/charts/volcano-scheduler/templates/very-high.yaml apiVersion: scheduling.k8s.io/v1 -description: Used for low-priority Pods that are easily preempted. +description: Used for system critical pods that must not be moved from their current node. kind: PriorityClass metadata: - name: low - selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/low -value: 50 + name: very-high + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/very-high +value: 2000 +--- +# Source: pfchart/charts/volcano-scheduler/templates/very-low.yaml +apiVersion: scheduling.k8s.io/v1 +description: Used for pods that are easily preempted and unimportant. +kind: PriorityClass +metadata: + name: very-low + selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/very-low +value: 10 +--- \ No newline at end of file diff --git a/installer/paddleflow-deployment.yaml b/installer/paddleflow-deployment.yaml index b949fcc4d..e4adf4cfc 100644 --- a/installer/paddleflow-deployment.yaml +++ b/installer/paddleflow-deployment.yaml @@ -2,13 +2,7 @@ apiVersion: v1 kind: Namespace metadata: - name: volcano-system ---- -apiVersion: v1 -kind: Namespace -metadata: - name: paddleflow ---- + name: paddleflow --- # Source: pfchart/charts/paddleflow-server/templates/ServiceAccount-paddleflow-server.yaml apiVersion: v1 @@ -67,8 +61,8 @@ metadata: app.kubernetes.io/instance: 'paddleflow' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'paddleflow-server' - chart: 'paddleflow-server-0.10.57-rq5yqh' - helm.sh/chart: 'paddleflow-server-0.10.57-rq5yqh' + chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' heritage: 'Helm' release: 'paddleflow' name: 'paddleflow-server' @@ -83,8 +77,8 @@ metadata: app.kubernetes.io/instance: 'paddleflow' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'pfs-csi-plugin' - chart: 'pfs-csi-plugin-0.0.79-rq5znw' - helm.sh/chart: 'pfs-csi-plugin-0.0.79-rq5znw' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' heritage: 'Helm' release: 'paddleflow' name: 'pfs-csi-plugin' @@ -96,13 +90,13 @@ apiVersion: v1 metadata: labels: app: 'pfs-csi-provisioner' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'pfs-csi-provisioner' - chart: 'pfs-csi-provisioner-0.0.15-rq5zmw' - helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rq5zmw' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' heritage: 'Helm' - release: 'paddleflow' + release: 'volcano' name: 'pfs-csi-provisioner' data: {} --- @@ -112,13 +106,13 @@ apiVersion: v1 metadata: labels: app: 'volcano-admission-init' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-admission-init' - chart: 'volcano-admission-init-0.0.8-rq5yzc' - helm.sh/chart: 'volcano-admission-init-0.0.8-rq5yzc' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' heritage: 'Helm' - release: 'paddleflow' + release: 'volcano' name: 'volcano-admission-init' data: {} --- @@ -128,13 +122,13 @@ apiVersion: v1 metadata: labels: app: 'volcano-admission' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-admission' - chart: 'volcano-admission-0.0.21-rq5ysr' - helm.sh/chart: 'volcano-admission-0.0.21-rq5ysr' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' heritage: 'Helm' - release: 'paddleflow' + release: 'volcano' name: 'volcano-admission' data: {} --- @@ -144,13 +138,13 @@ apiVersion: v1 metadata: labels: app: 'volcano-controller' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-controller' - chart: 'volcano-controller-0.0.11-rq5yy7' - helm.sh/chart: 'volcano-controller-0.0.11-rq5yy7' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' heritage: 'Helm' - release: 'paddleflow' + release: 'volcano' name: 'volcano-controller' data: {} --- @@ -160,13 +154,13 @@ apiVersion: v1 metadata: labels: app: 'volcano-scheduler' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-scheduler' - chart: 'volcano-scheduler-0.0.23-rq5ywm' - helm.sh/chart: 'volcano-scheduler-0.0.23-rq5ywm' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' heritage: 'Helm' - release: 'paddleflow' + release: 'volcano' name: 'volcano-scheduler' data: {} --- @@ -179,8 +173,8 @@ metadata: app.kubernetes.io/instance: 'paddleflow' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'paddleflow-server' - chart: 'paddleflow-server-0.10.57-rq5yqh' - helm.sh/chart: 'paddleflow-server-0.10.57-rq5yqh' + chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' heritage: 'Helm' release: 'paddleflow' name: 'paddleflow-server' @@ -546,6 +540,9 @@ data: database: paddleflow monitor: server: "http://127.0.0.1:8395" + metrics: + port: 8231 + enable: true log: dir: ./ filePrefix: log @@ -606,8 +603,8 @@ metadata: app.kubernetes.io/instance: 'paddleflow' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'pfs-csi-plugin' - chart: 'pfs-csi-plugin-0.0.79-rq5znw' - helm.sh/chart: 'pfs-csi-plugin-0.0.79-rq5znw' + chart: 'pfs-csi-plugin-0.0.80-rrnwa0' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' heritage: 'Helm' release: 'paddleflow' name: 'pfs-csi-plugin' @@ -625,8 +622,8 @@ metadata: app.kubernetes.io/instance: 'paddleflow' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'pfs-csi-provisioner' - chart: 'pfs-csi-provisioner-0.0.15-rq5zmw' - helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rq5zmw' + chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' heritage: 'Helm' release: 'paddleflow' name: 'pfs-csi-provisioner' @@ -641,11 +638,11 @@ apiVersion: v1 metadata: labels: app: 'volcano-admission-init' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-admission-init' - chart: 'volcano-admission-init-0.0.8-rq5yzc' - helm.sh/chart: 'volcano-admission-init-0.0.8-rq5yzc' + chart: 'volcano-admission-init-0.0.8-rrm1o4' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' heritage: 'Helm' release: 'paddleflow' name: 'volcano-admission-init' @@ -660,11 +657,11 @@ apiVersion: v1 metadata: labels: app: 'volcano-admission' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-admission' - chart: 'volcano-admission-0.0.21-rq5ysr' - helm.sh/chart: 'volcano-admission-0.0.21-rq5ysr' + chart: 'volcano-admission-0.0.21-rrm1l0' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' heritage: 'Helm' release: 'paddleflow' name: 'volcano-admission' @@ -679,11 +676,11 @@ apiVersion: v1 metadata: labels: app: 'volcano-controller' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-controller' - chart: 'volcano-controller-0.0.11-rq5yy7' - helm.sh/chart: 'volcano-controller-0.0.11-rq5yy7' + chart: 'volcano-controller-0.0.11-rrm1js' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' heritage: 'Helm' release: 'paddleflow' name: 'volcano-controller' @@ -698,11 +695,11 @@ apiVersion: v1 metadata: labels: app: 'volcano-scheduler' - app.kubernetes.io/instance: 'paddleflow' + app.kubernetes.io/instance: 'volcano' app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/name: 'volcano-scheduler' - chart: 'volcano-scheduler-0.0.23-rq5ywm' - helm.sh/chart: 'volcano-scheduler-0.0.23-rq5ywm' + chart: 'volcano-scheduler-0.0.23-rrm1mf' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' heritage: 'Helm' release: 'paddleflow' name: 'volcano-scheduler' @@ -1459,12 +1456,12 @@ metadata: name: paddleflow-server labels: app: paddleflow-server - chart: "paddleflow-server-0.10.57-rq5yqh" + chart: "paddleflow-server-0.10.61-rrx7rl-tmp" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'paddleflow-server-0.10.57-rq5yqh' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' app.kubernetes.io/name: 'paddleflow-server' annotations: @@ -1480,6 +1477,11 @@ spec: nodePort: 8999 protocol: TCP targetPort: 8999 + - name: port-2 + port: 8231 + nodePort: 8231 + protocol: TCP + targetPort: 8231 selector: app: paddleflow-server --- @@ -1490,12 +1492,12 @@ metadata: name: pfs-csi-provisioner-service labels: app: pfs-csi-provisioner - chart: "pfs-csi-provisioner-0.0.15-rq5zmw" + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rq5zmw' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' app.kubernetes.io/name: 'pfs-csi-provisioner' annotations: @@ -1520,12 +1522,12 @@ metadata: name: volcano-admission-service labels: app: volcano-admission - chart: "volcano-admission-0.0.21-rq5ysr" + chart: "volcano-admission-0.0.21-rrm1l0" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-admission-0.0.21-rq5ysr' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' app.kubernetes.io/name: 'volcano-admission' annotations: @@ -1551,12 +1553,12 @@ metadata: name: volcano-scheduler-service labels: app: volcano-scheduler - chart: "volcano-scheduler-0.0.23-rq5ywm" + chart: "volcano-scheduler-0.0.23-rrm1mf" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-scheduler-0.0.23-rq5ywm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' app.kubernetes.io/name: 'volcano-scheduler' annotations: @@ -1574,6 +1576,21 @@ spec: selector: app: volcano-scheduler --- +kind: ElasticResourceQuota +spec: + max: + cpu: '0' + memory: '0' + min: + cpu: '0' + memory: '0' + namespace: default +metadata: + name: root + labels: + paddleflow.baidu.com/resource-isolation-type: logical +apiVersion: scheduling.volcano.sh/v1beta1 +--- # Source: pfchart/charts/pfs-csi-plugin/templates/pfs-csi-plugin-daemonset.yaml apiVersion: apps/v1 kind: DaemonSet @@ -1582,12 +1599,12 @@ metadata: name: pfs-csi-plugin labels: app: pfs-csi-plugin - chart: "pfs-csi-plugin-0.0.79-rq5znw" + chart: "pfs-csi-plugin-0.0.80-rrnwa0" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'pfs-csi-plugin-0.0.79-rq5znw' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' app.kubernetes.io/name: 'pfs-csi-plugin' annotations: reloader.stakater.com/auto: "false" @@ -1601,11 +1618,9 @@ spec: app: pfs-csi-plugin app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'pfs-csi-plugin-0.0.79-rq5znw' + helm.sh/chart: 'pfs-csi-plugin-0.0.80-rrnwa0' app.kubernetes.io/name: 'pfs-csi-plugin' spec: - imagePullSecrets: - - name: registry-paddleflow dnsPolicy: ClusterFirstWithHostNet restartPolicy: Always hostNetwork: true @@ -1654,7 +1669,7 @@ spec: subPath: - name: csi-storage-driver - image: paddleflow/pfs-csi-plugin:1.4.5.2 + image: "paddleflow/pfs-csi-plugin:1.4.6" imagePullPolicy: command: - /sbin/tini @@ -1672,9 +1687,6 @@ spec: runAsGroup: 0 runAsUser: 0 resources: - limits: - cpu: "1.5" - memory: 3000Mi requests: cpu: "0.5" memory: 1000Mi @@ -1768,12 +1780,12 @@ metadata: name: paddleflow-server labels: app: paddleflow-server - chart: "paddleflow-server-0.10.57-rq5yqh" + chart: "paddleflow-server-0.10.61-rrx7rl-tmp" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'paddleflow-server-0.10.57-rq5yqh' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' app.kubernetes.io/name: 'paddleflow-server' annotations: reloader.stakater.com/auto: "false" @@ -1788,11 +1800,9 @@ spec: app: paddleflow-server app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'paddleflow-server-0.10.57-rq5yqh' + helm.sh/chart: 'paddleflow-server-0.10.61-rrx7rl-tmp' app.kubernetes.io/name: 'paddleflow-server' spec: - imagePullSecrets: - - name: registry-paddleflow dnsPolicy: ClusterFirst restartPolicy: Always securityContext: @@ -1801,14 +1811,14 @@ spec: serviceAccountName: paddleflow-server containers: - name: paddleflow-server - image: "paddleflow/paddleflow-server:1.4.5.2" + image: "paddleflow/paddleflow-server:1.4.6" imagePullPolicy: "IfNotPresent" command: - /bin/sh args: #container_args list - -c - - cd /home/paddleflow/server && ./paddleflow --mount-pod-expire=2m + - cd /home/paddleflow/server && ./paddleflow securityContext: privileged: false runAsGroup: 1000 @@ -1824,8 +1834,6 @@ spec: fieldRef: fieldPath: spec.nodeName - - name: "PF_RUNTIME_VERSION" - value: "v2" #注意:这里的name跟后面volumes里name是一一对应的 volumeMounts: - name: conf @@ -1867,12 +1875,12 @@ metadata: name: pfs-csi-provisioner labels: app: pfs-csi-provisioner - chart: "pfs-csi-provisioner-0.0.15-rq5zmw" + chart: "pfs-csi-provisioner-0.0.15-rr8wr7" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rq5zmw' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' app.kubernetes.io/name: 'pfs-csi-provisioner' app: pfs-csi-provisioner annotations: @@ -1889,14 +1897,12 @@ spec: app: pfs-csi-provisioner app.kubernetes.io/managed-by: 'Helm' app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rq5zmw' + helm.sh/chart: 'pfs-csi-provisioner-0.0.15-rr8wr7' app.kubernetes.io/name: 'pfs-csi-provisioner' app: pfs-csi-provisioner annotations: app: pfs-csi-provisioner spec: - imagePullSecrets: - - name: registry-paddleflow dnsPolicy: ClusterFirst restartPolicy: Always tolerations: @@ -1955,12 +1961,12 @@ metadata: name: volcano-admission labels: app: volcano-admission - chart: "volcano-admission-0.0.21-rq5ysr" + chart: "volcano-admission-0.0.21-rrm1l0" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-admission-0.0.21-rq5ysr' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' app.kubernetes.io/name: 'volcano-admission' app: volcano-admission annotations: @@ -1976,28 +1982,26 @@ spec: labels: app: volcano-admission app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-admission-0.0.21-rq5ysr' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-0.0.21-rrm1l0' app.kubernetes.io/name: 'volcano-admission' app: volcano-admission annotations: app: volcano-admission spec: - imagePullSecrets: - - name: registry-paddleflow dnsPolicy: ClusterFirst restartPolicy: Always serviceAccountName: volcano-admission containers: - name: volcano-admission - image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc1" + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc4" imagePullPolicy: "IfNotPresent" args: #container_args list - --tls-cert-file=/admission.local.config/certificates/tls.crt - --tls-private-key-file=/admission.local.config/certificates/tls.key - --ca-cert-file=/admission.local.config/certificates/ca.crt - - --webhook-namespace=volcano-system + - --webhook-namespace=paddleflow - --webhook-service-name=volcano-admission-service - --logtostderr=false - --port=8443 @@ -2007,20 +2011,6 @@ spec: - --log_dir=/tmp/log - --log_file=/tmp/log/webhook.log - --log_file_max_size=300 - - --nvidia-mps-dev-volume-host-path=/dev/shm - - --nvidia-mps-dev-volume-container-path=/dev/shm - - --nvidia-cgpu-volume-host-path=/baidu-cgpu - - --nvidia-cgpu-volume-container-path=/home/baidu-cgpu - - --nvidia-lib-cuda-volume-host-path=/opt/baidu-cgpu/lib64/libcuda.so.1 - - --nvidia-lib-cuda-volume-centos-container-path=/usr/lib64/libcuda.so.1 - - --nvidia-lib-cuda-volume-ubuntu-container-path=/usr/lib/x86_64-linux-gnu/libcuda.so.1 - - --nvidia-lib-cuda-original-volume-host-path=/usr/lib64/libcuda.so.1 - - --nvidia-lib-cuda-original-volume-container-path=/usr/lib64/libcuda_original.so - - --nvidia-libml-volume-host-path=/opt/baidu-cgpu/lib64/libnvidia-ml.so.1 - - --nvidia-libml-volume-centos-container-path=/usr/lib64/libnvidia-ml.so.1 - - --nvidia-libml-volume-ubuntu-container-path=/usr/lib/x86_64-linux-gnu/libnvidia-ml.so.1 - - --nvidia-libml-original-volume-host-path=/usr/lib64/libnvidia-ml.so - - --nvidia-libml-original-volume-container-path=/usr/lib64/libnvidia-ml_original.so securityContext: privileged: false #服务启动暴露的端口,list形式,根据服务情况增加或删减 @@ -2059,12 +2049,12 @@ metadata: name: volcano-controller labels: app: volcano-controller - chart: "volcano-controller-0.0.11-rq5yy7" + chart: "volcano-controller-0.0.11-rrm1js" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-controller-0.0.11-rq5yy7' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' app.kubernetes.io/name: 'volcano-controller' app: volcano-controller annotations: @@ -2080,21 +2070,19 @@ spec: labels: app: volcano-controller app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-controller-0.0.11-rq5yy7' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-controller-0.0.11-rrm1js' app.kubernetes.io/name: 'volcano-controller' app: volcano-controller annotations: app: volcano-controller spec: - imagePullSecrets: - - name: registry-paddleflow dnsPolicy: ClusterFirst restartPolicy: Always serviceAccountName: volcano-controllers containers: - name: volcano-controller - image: "paddleflow/vc-controller-manager:pf1.4-vc1.3-rc1" + image: "paddleflow/vc-controller-manager:pf1.4-vc1.3-rc4" imagePullPolicy: "IfNotPresent" args: #container_args list @@ -2135,12 +2123,12 @@ metadata: name: volcano-scheduler labels: app: volcano-scheduler - chart: "volcano-scheduler-0.0.23-rq5ywm" + chart: "volcano-scheduler-0.0.23-rrm1mf" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-scheduler-0.0.23-rq5ywm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' app.kubernetes.io/name: 'volcano-scheduler' app: volcano-scheduler annotations: @@ -2156,21 +2144,19 @@ spec: labels: app: volcano-scheduler app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-scheduler-0.0.23-rq5ywm' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-scheduler-0.0.23-rrm1mf' app.kubernetes.io/name: 'volcano-scheduler' app: volcano-scheduler annotations: app: volcano-scheduler spec: - imagePullSecrets: - - name: registry-paddleflow dnsPolicy: ClusterFirst restartPolicy: Always serviceAccountName: volcano-scheduler containers: - name: volcano-scheduler - image: "paddleflow/vc-scheduler:pf1.4-vc1.3-rc1" + image: "paddleflow/vc-scheduler:pf1.4-vc1.3-rc4" imagePullPolicy: "IfNotPresent" args: #container_args list @@ -2221,12 +2207,12 @@ metadata: name: volcano-admission-init labels: app: volcano-admission-init - chart: "volcano-admission-init-0.0.8-rq5yzc" + chart: "volcano-admission-init-0.0.8-rrm1o4" release: "paddleflow" heritage: "Helm" app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-admission-init-0.0.8-rq5yzc' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' app.kubernetes.io/name: 'volcano-admission-init' app: volcano-admission-init annotations: @@ -2241,29 +2227,31 @@ spec: metadata: labels: app.kubernetes.io/managed-by: 'Helm' - app.kubernetes.io/instance: 'paddleflow' - helm.sh/chart: 'volcano-admission-init-0.0.8-rq5yzc' + app.kubernetes.io/instance: 'volcano' + helm.sh/chart: 'volcano-admission-init-0.0.8-rrm1o4' app.kubernetes.io/name: 'volcano-admission-init' spec: - imagePullSecrets: - - name: registry-paddleflow serviceAccountName: volcano-admission containers: - name: volcano-admission-init - image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc1" + image: "paddleflow/vc-webhook-manager:pf1.4-vc1.3-rc4" imagePullPolicy: "IfNotPresent" command: - ./gen-admission-secret.sh - --service - volcano-admission-service - --namespace - - volcano-system + - $(K8Sns) - --secret - volcano-admission-secret + env: + - name: "K8Sns" + valueFrom: + fieldRef: + fieldPath: metadata.namespace securityContext: privileged: false #服务的环境变量,list形式,根据服务情况增加或删减 - env: #container_envs list #注意:这里的name跟后面volumes里name是一一对应的 volumeMounts: @@ -2327,4 +2315,5 @@ kind: PriorityClass metadata: name: very-low selfLink: /apis/scheduling.k8s.io/v1/priorityclasses/very-low -value: 10 \ No newline at end of file +value: 10 +--- \ No newline at end of file From 0cf608b70a5d3147e26ce017718146f3341e4a66 Mon Sep 17 00:00:00 2001 From: zhongzichao Date: Mon, 24 Apr 2023 15:47:52 +0800 Subject: [PATCH 2/2] cherry pick QA commit --- installer/dockerfile/paddleflow-server/Dockerfile-gluster | 6 ------ installer/dockerfile/paddleflow-server/Dockerfile.gluster | 1 + 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 installer/dockerfile/paddleflow-server/Dockerfile-gluster diff --git a/installer/dockerfile/paddleflow-server/Dockerfile-gluster b/installer/dockerfile/paddleflow-server/Dockerfile-gluster deleted file mode 100644 index f95b5add5..000000000 --- a/installer/dockerfile/paddleflow-server/Dockerfile-gluster +++ /dev/null @@ -1,6 +0,0 @@ -FROM paddleflow/ubuntu:18.04-glusterfs - -ENV WORKDIR /home/paddleflow -ADD output/bin/paddleflow $WORKDIR/server/ -RUN groupadd paddleflow && useradd -d /home/paddleflow -g paddleflow paddleflow && chown -R paddleflow:paddleflow $WORKDIR/server -USER paddleflow \ No newline at end of file diff --git a/installer/dockerfile/paddleflow-server/Dockerfile.gluster b/installer/dockerfile/paddleflow-server/Dockerfile.gluster index add01921b..f95b5add5 100644 --- a/installer/dockerfile/paddleflow-server/Dockerfile.gluster +++ b/installer/dockerfile/paddleflow-server/Dockerfile.gluster @@ -3,3 +3,4 @@ FROM paddleflow/ubuntu:18.04-glusterfs ENV WORKDIR /home/paddleflow ADD output/bin/paddleflow $WORKDIR/server/ RUN groupadd paddleflow && useradd -d /home/paddleflow -g paddleflow paddleflow && chown -R paddleflow:paddleflow $WORKDIR/server +USER paddleflow \ No newline at end of file