From 13b443b4b66159de56a556ddcc040de21ebd6c34 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 13:01:57 +0530 Subject: [PATCH 01/32] addition of finops module --- charts/devtron/Chart.yaml | 4 ++++ charts/devtron/devtron-bom.yaml | 7 +++++++ charts/devtron/templates/configmap-secret.yaml | 3 +++ charts/devtron/values.yaml | 7 +++++++ 4 files changed, 21 insertions(+) diff --git a/charts/devtron/Chart.yaml b/charts/devtron/Chart.yaml index c0f7d3ef19..080678a40a 100644 --- a/charts/devtron/Chart.yaml +++ b/charts/devtron/Chart.yaml @@ -15,6 +15,10 @@ version: 0.22.98 sources: - https://github.com/devtron-labs/charts dependencies: +- name: cloudnative-pg + version: 0.26.0 + repository: https://cloudnative-pg.io/charts + condition: devtronEnterprise.finops.enabled - name: argo-cd version: "7.7.15" repository: https://argoproj.github.io/argo-helm diff --git a/charts/devtron/devtron-bom.yaml b/charts/devtron/devtron-bom.yaml index 27f17384f2..91a0b69d78 100644 --- a/charts/devtron/devtron-bom.yaml +++ b/charts/devtron/devtron-bom.yaml @@ -241,6 +241,13 @@ monitoring: imagePullPolicy: IfNotPresent devtronEnterprise: enabled: false + finops: + enabled: true + costSync: + image: "quay.io/cost-syc" + timescale: + password: "nflkwednsclkwmdnsc" + user: "postgres" casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" diff --git a/charts/devtron/templates/configmap-secret.yaml b/charts/devtron/templates/configmap-secret.yaml index 9a8f55af38..c6dc684c71 100644 --- a/charts/devtron/templates/configmap-secret.yaml +++ b/charts/devtron/templates/configmap-secret.yaml @@ -261,6 +261,9 @@ data: {{- else }} PG_PASSWORD: {{ $postgresPwd }} {{- end }} +{{- if $.Values.devtronEnterprise.finops.enabled }} + TIMESCALE_PASSWORD: {{ $.Values.devtronEnterprise.finops.timescalePassword }} +{{- end }} {{- if $.Values.installer.modules }} {{- if has "cicd" $.Values.installer.modules }} EXTERNAL_CI_API_SECRET: {{ $EXTERNAL_CI_API_SECRET }} diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index 6762ba1eec..366eb6ffd6 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -482,6 +482,13 @@ monitoring: # Change these values for Devtron-Enterprise devtronEnterprise: enabled: false + finops: + enabled: false + costSync: + image: "quay.io/cost-syc" + timescale: + password: "nflkwednsclkwmdnsc" + user: "postgres" casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" From f78e5a63e6126785adba39ff2bf4aa0f0a5fb489 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 13:33:51 +0530 Subject: [PATCH 02/32] added files for finops --- charts/devtron/templates/cost-sync-job.yaml | 64 ++++++++++++++++ charts/devtron/templates/cost-sync.yaml | 64 ++++++++++++++++ charts/devtron/templates/timescale-db.yaml | 82 +++++++++++++++++++++ 3 files changed, 210 insertions(+) create mode 100644 charts/devtron/templates/cost-sync-job.yaml create mode 100644 charts/devtron/templates/cost-sync.yaml create mode 100644 charts/devtron/templates/timescale-db.yaml diff --git a/charts/devtron/templates/cost-sync-job.yaml b/charts/devtron/templates/cost-sync-job.yaml new file mode 100644 index 0000000000..5a85c16088 --- /dev/null +++ b/charts/devtron/templates/cost-sync-job.yaml @@ -0,0 +1,64 @@ +{{- if .Values.devtronEnterprise.finops.enabled }} +apiVersion: batch/v1 +kind: CronJob +metadata: + name: cost-sync-job + namespace: devtroncd +spec: + concurrencyPolicy: Allow + failedJobsHistoryLimit: 1 + jobTemplate: + spec: + activeDeadlineSeconds: 3600 + template: + metadata: + labels: + app: cost-sync-job + spec: + containers: + envFrom: + - configMapRef: + name: cost-sync-cm + - secretRef: + name: devtron-secret + image: {{ .Values.devtronEnterprise.finops.costSync.image }} + imagePullPolicy: IfNotPresent + name: cost-sync-job + ports: + - containerPort: 8080 + name: app + protocol: TCP + resources: {} + terminationGracePeriodSeconds: 30 + schedule: 10 * * * * + startingDeadlineSeconds: 100 + successfulJobsHistoryLimit: 3 + suspend: false + timeZone: UTC +--- +apiVersion: v1 +data: + JOB_INTERVAL_MINUTES: "60" + LOG_LEVEL: info + MAX_INTERVALS_PER_RUN: "6" + PG_ADDR: postgresql-postgresql.devtroncd + PG_DATABASE: orchestrator + PG_USER: postgres + POSTGRES_HOST: postgresql-postgresql.devtroncd + POSTGRES_NAME: orchestrator + POSTGRES_PORT: "5432" + POSTGRES_SSL_MODE: disable + POSTGRES_USER: postgres + PROMETHEUS_DELAY_MINUTES: "5" + TIMESCALE_ADDR: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_DATABASE: finops + TIMESCALE_HOST: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_NAME: finops + TIMESCALE_PORT: "5432" + TIMESCALE_SSL_MODE: disable + TIMESCALE_USER: postgres +kind: ConfigMap +metadata: + name: cost-sync-2802 + namespace: devtroncd +{{- end }} \ No newline at end of file diff --git a/charts/devtron/templates/cost-sync.yaml b/charts/devtron/templates/cost-sync.yaml new file mode 100644 index 0000000000..70c9a1e989 --- /dev/null +++ b/charts/devtron/templates/cost-sync.yaml @@ -0,0 +1,64 @@ +{{- if .Values.devtronEnterprise.finops.enabled }} +apiVersion: batch/v1 +kind: CronJob +metadata: + name: cost-sync-job + namespace: devtroncd +spec: + concurrencyPolicy: Allow + failedJobsHistoryLimit: 2 + jobTemplate: + spec: + activeDeadlineSeconds: 3600 + template: + metadata: + labels: + app: cost-sync-job + spec: + containers: + envFrom: + - configMapRef: + name: cost-sync-cm + - secretRef: + name: devtron-secret + image: {{ .Values.devtronEnterprise.finops.costSync.image }} + imagePullPolicy: IfNotPresent + name: cost-sync-job + ports: + - containerPort: 8080 + name: app + protocol: TCP + resources: {} + terminationGracePeriodSeconds: 30 + schedule: 10 * * * * + startingDeadlineSeconds: 100 + successfulJobsHistoryLimit: 3 + suspend: false + timeZone: UTC +--- +apiVersion: v1 +data: + JOB_INTERVAL_MINUTES: "60" + LOG_LEVEL: info + MAX_INTERVALS_PER_RUN: "6" + PG_ADDR: postgresql-postgresql.devtroncd + PG_DATABASE: orchestrator + PG_USER: postgres + POSTGRES_HOST: postgresql-postgresql.devtroncd + POSTGRES_NAME: orchestrator + POSTGRES_PORT: "5432" + POSTGRES_SSL_MODE: disable + POSTGRES_USER: postgres + PROMETHEUS_DELAY_MINUTES: "5" + TIMESCALE_ADDR: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_DATABASE: finops + TIMESCALE_HOST: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_NAME: finops + TIMESCALE_PORT: "5432" + TIMESCALE_SSL_MODE: disable + TIMESCALE_USER: postgres +kind: ConfigMap +metadata: + name: cost-sync-2802 + namespace: devtroncd +{{- end }} \ No newline at end of file diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml new file mode 100644 index 0000000000..29865ff393 --- /dev/null +++ b/charts/devtron/templates/timescale-db.yaml @@ -0,0 +1,82 @@ +{{- if .Values.devtronEnterprise.finops.enabled }} +apiVersion: v1 +kind: Namespace +metadata: + name: timescale-db +--- +apiVersion: postgresql.cnpg.io/v1 +kind: ImageCatalog +metadata: + name: cloudnative-pg-timescaledb-pg15 + namespace: timescale-db +spec: + images: + - major: 15 + image: timescale/timescaledb-ha:pg15-ts2.18-all +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: init-schema + namespace: timescale-db +data: + init-schema.sql: | + CREATE EXTENSION IF NOT EXISTS timescaledb; +--- +apiVersion: v1 +kind: Secret +metadata: + name: timescaledb-cluster-pg15-superuser + namespace: timescale-db +type: kubernetes.io/basic-auth +data: + username: {{ .Values.devtronEnterprise.finops.timescale.user | b64enc }} + password: {{ .Values.devtronEnterprise.finops.timescale.password | b64enc }} +--- +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: timescaledb-cluster-pg15 + namespace: timescale-db +spec: + affinity: + tolerations: + - effect: NoSchedule + key: dedicated + operator: Equal + value: production + nodeSelector: + purpose: prod + instances: 1 + enableSuperuserAccess: true + imageCatalogRef: + apiGroup: postgresql.cnpg.io + kind: ImageCatalog + name: cloudnative-pg-timescaledb-pg15 + major: 15 + postgresUID: 1000 + postgresGID: 1000 + resources: {} + postgresql: + shared_preload_libraries: + - 'timescaledb' + parameters: + max_wal_size: "1GB" + max_wal_senders: "3" + wal_level: "replica" + pg_hba: + - host all all all scram-sha-256 + bootstrap: + initdb: + database: finops + owner: postgres # This should match the username in timescaledb-cluster-pg15-superuser + secret: + name: timescaledb-cluster-pg15-superuser + postInitApplicationSQLRefs: + configMapRefs: + - name: init-schema + key: init-schema.sql + storage: + size: 5Gi + storageClass: default +{{- end }} \ No newline at end of file From 8fc04f6d1d4bcb2d7018dca87f06dc0ed5b029b7 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 13:36:05 +0530 Subject: [PATCH 03/32] remove few files --- charts/devtron/templates/cost-sync.yaml | 64 ------------------------- 1 file changed, 64 deletions(-) delete mode 100644 charts/devtron/templates/cost-sync.yaml diff --git a/charts/devtron/templates/cost-sync.yaml b/charts/devtron/templates/cost-sync.yaml deleted file mode 100644 index 70c9a1e989..0000000000 --- a/charts/devtron/templates/cost-sync.yaml +++ /dev/null @@ -1,64 +0,0 @@ -{{- if .Values.devtronEnterprise.finops.enabled }} -apiVersion: batch/v1 -kind: CronJob -metadata: - name: cost-sync-job - namespace: devtroncd -spec: - concurrencyPolicy: Allow - failedJobsHistoryLimit: 2 - jobTemplate: - spec: - activeDeadlineSeconds: 3600 - template: - metadata: - labels: - app: cost-sync-job - spec: - containers: - envFrom: - - configMapRef: - name: cost-sync-cm - - secretRef: - name: devtron-secret - image: {{ .Values.devtronEnterprise.finops.costSync.image }} - imagePullPolicy: IfNotPresent - name: cost-sync-job - ports: - - containerPort: 8080 - name: app - protocol: TCP - resources: {} - terminationGracePeriodSeconds: 30 - schedule: 10 * * * * - startingDeadlineSeconds: 100 - successfulJobsHistoryLimit: 3 - suspend: false - timeZone: UTC ---- -apiVersion: v1 -data: - JOB_INTERVAL_MINUTES: "60" - LOG_LEVEL: info - MAX_INTERVALS_PER_RUN: "6" - PG_ADDR: postgresql-postgresql.devtroncd - PG_DATABASE: orchestrator - PG_USER: postgres - POSTGRES_HOST: postgresql-postgresql.devtroncd - POSTGRES_NAME: orchestrator - POSTGRES_PORT: "5432" - POSTGRES_SSL_MODE: disable - POSTGRES_USER: postgres - PROMETHEUS_DELAY_MINUTES: "5" - TIMESCALE_ADDR: timescaledb-cluster-pg15-rw.timescale-db - TIMESCALE_DATABASE: finops - TIMESCALE_HOST: timescaledb-cluster-pg15-rw.timescale-db - TIMESCALE_NAME: finops - TIMESCALE_PORT: "5432" - TIMESCALE_SSL_MODE: disable - TIMESCALE_USER: postgres -kind: ConfigMap -metadata: - name: cost-sync-2802 - namespace: devtroncd -{{- end }} \ No newline at end of file From 043473b6d3b1b7531ec4f883f0be09893d1de823 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 13:38:23 +0530 Subject: [PATCH 04/32] changes in values.yaml --- charts/devtron/devtron-bom.yaml | 6 +++--- charts/devtron/values.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/devtron/devtron-bom.yaml b/charts/devtron/devtron-bom.yaml index 91a0b69d78..2ac70596e9 100644 --- a/charts/devtron/devtron-bom.yaml +++ b/charts/devtron/devtron-bom.yaml @@ -242,11 +242,11 @@ monitoring: devtronEnterprise: enabled: false finops: - enabled: true + enabled: false costSync: - image: "quay.io/cost-syc" + image: "" timescale: - password: "nflkwednsclkwmdnsc" + password: "" user: "postgres" casbin: registry: "" diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index 366eb6ffd6..2c16c0eac4 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -485,9 +485,9 @@ devtronEnterprise: finops: enabled: false costSync: - image: "quay.io/cost-syc" + image: "" timescale: - password: "nflkwednsclkwmdnsc" + password: "" user: "postgres" casbin: registry: "" From d197e5b7f42185d20ca45c66f8b10c0399291e7d Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 14:13:54 +0530 Subject: [PATCH 05/32] changes in template --- .../devtron/templates/configmap-secret.yaml | 38 ++++++++++++++++++- charts/devtron/templates/cost-sync-job.yaml | 26 ------------- charts/devtron/templates/timescale-db.yaml | 20 ++-------- charts/devtron/values.yaml | 3 -- 4 files changed, 40 insertions(+), 47 deletions(-) diff --git a/charts/devtron/templates/configmap-secret.yaml b/charts/devtron/templates/configmap-secret.yaml index c6dc684c71..bd05aee7cb 100644 --- a/charts/devtron/templates/configmap-secret.yaml +++ b/charts/devtron/templates/configmap-secret.yaml @@ -8,6 +8,8 @@ {{- $DEX_CSTOREKEY := include "getOrGeneratePass" (dict "Namespace" "devtroncd" "Kind" "Secret" "Name" "devtron-secret" "Key" "DEX_CSTOREKEY") }} {{- $postgresPwd := include "getOrGeneratePass" (dict "Namespace" "devtroncd" "Kind" "Secret" "Name" "postgresql-postgresql" "Key" "postgresql-password") }} {{- $WEBHOOK_TOKEN := include "getOrGeneratePass" (dict "Namespace" "devtroncd" "Kind" "Secret" "Name" "devtron-secret" "Key" "WEBHOOK_TOKEN") }} +{{- $TIMESCALE_PASSWORD := include "getOrGeneratePass" (dict "Namespace" "timescale-db" "Kind" "Secret" "Name" "timescaledb-cluster-pg15-superuser" "Key" "password") }} + {{- if $.Values.installer.modules }} {{- if has "cicd" $.Values.installer.modules }} apiVersion: v1 @@ -262,7 +264,7 @@ data: PG_PASSWORD: {{ $postgresPwd }} {{- end }} {{- if $.Values.devtronEnterprise.finops.enabled }} - TIMESCALE_PASSWORD: {{ $.Values.devtronEnterprise.finops.timescalePassword }} + TIMESCALE_PASSWORD: {{ $TIMESCALE_PASSWORD}} {{- end }} {{- if $.Values.installer.modules }} {{- if has "cicd" $.Values.installer.modules }} @@ -404,5 +406,39 @@ metadata: namespace: devtroncd annotations: "helm.sh/hook": pre-install + +--- +{{-if .Values.devtronEnterprise.finops.enabled}} +apiVersion: v1 +kind: Secret +metadata: + name: timescaledb-cluster-pg15-superuser + namespace: timescale-db +type: kubernetes.io/basic-auth +data: + username: {{ "postgres" | b64enc }} + password: {{ $TIMESCALE_PASSWORD }} +--- +apiVersion: v1 +data: + JOB_INTERVAL_MINUTES: "60" + LOG_LEVEL: info + MAX_INTERVALS_PER_RUN: "6" + PG_ADDR: {{$.Values.global.dbConfig.PG_ADDR}} + PG_DATABASE: {{$.Values.global.dbConfig.PG_DATABASE}} + PG_USER: {{$.Values.global.dbConfig.PG_USER}} + PROMETHEUS_DELAY_MINUTES: "5" + TIMESCALE_ADDR: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_DATABASE: finops + TIMESCALE_HOST: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_NAME: finops + TIMESCALE_PORT: "5432" + TIMESCALE_SSL_MODE: disable + TIMESCALE_USER: postgres +kind: ConfigMap +metadata: + name: cost-sync-cm + namespace: devtroncd +{{- end}} {{- end }} {{- end }} diff --git a/charts/devtron/templates/cost-sync-job.yaml b/charts/devtron/templates/cost-sync-job.yaml index 5a85c16088..cd95e26f3b 100644 --- a/charts/devtron/templates/cost-sync-job.yaml +++ b/charts/devtron/templates/cost-sync-job.yaml @@ -35,30 +35,4 @@ spec: successfulJobsHistoryLimit: 3 suspend: false timeZone: UTC ---- -apiVersion: v1 -data: - JOB_INTERVAL_MINUTES: "60" - LOG_LEVEL: info - MAX_INTERVALS_PER_RUN: "6" - PG_ADDR: postgresql-postgresql.devtroncd - PG_DATABASE: orchestrator - PG_USER: postgres - POSTGRES_HOST: postgresql-postgresql.devtroncd - POSTGRES_NAME: orchestrator - POSTGRES_PORT: "5432" - POSTGRES_SSL_MODE: disable - POSTGRES_USER: postgres - PROMETHEUS_DELAY_MINUTES: "5" - TIMESCALE_ADDR: timescaledb-cluster-pg15-rw.timescale-db - TIMESCALE_DATABASE: finops - TIMESCALE_HOST: timescaledb-cluster-pg15-rw.timescale-db - TIMESCALE_NAME: finops - TIMESCALE_PORT: "5432" - TIMESCALE_SSL_MODE: disable - TIMESCALE_USER: postgres -kind: ConfigMap -metadata: - name: cost-sync-2802 - namespace: devtroncd {{- end }} \ No newline at end of file diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 29865ff393..3bf09fd496 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -23,16 +23,7 @@ data: init-schema.sql: | CREATE EXTENSION IF NOT EXISTS timescaledb; --- -apiVersion: v1 -kind: Secret -metadata: - name: timescaledb-cluster-pg15-superuser - namespace: timescale-db -type: kubernetes.io/basic-auth -data: - username: {{ .Values.devtronEnterprise.finops.timescale.user | b64enc }} - password: {{ .Values.devtronEnterprise.finops.timescale.password | b64enc }} ---- + apiVersion: postgresql.cnpg.io/v1 kind: Cluster metadata: @@ -40,13 +31,8 @@ metadata: namespace: timescale-db spec: affinity: - tolerations: - - effect: NoSchedule - key: dedicated - operator: Equal - value: production - nodeSelector: - purpose: prod + tolerations: [] + nodeSelector: {} instances: 1 enableSuperuserAccess: true imageCatalogRef: diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index 2c16c0eac4..23a42aa957 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -486,9 +486,6 @@ devtronEnterprise: enabled: false costSync: image: "" - timescale: - password: "" - user: "postgres" casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" From ff2225e6594c648e1353aa597b5d8f24ab69f99b Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 14:16:56 +0530 Subject: [PATCH 06/32] changes in bom file --- charts/devtron/devtron-bom.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/charts/devtron/devtron-bom.yaml b/charts/devtron/devtron-bom.yaml index 2ac70596e9..2da313e90e 100644 --- a/charts/devtron/devtron-bom.yaml +++ b/charts/devtron/devtron-bom.yaml @@ -245,9 +245,6 @@ devtronEnterprise: enabled: false costSync: image: "" - timescale: - password: "" - user: "postgres" casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" From 9bf10c925aa8d1f5bf8ab198c1af4866c1c03b96 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 14:23:10 +0530 Subject: [PATCH 07/32] changes --- charts/devtron/templates/configmap-secret.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/devtron/templates/configmap-secret.yaml b/charts/devtron/templates/configmap-secret.yaml index bd05aee7cb..00b5961b55 100644 --- a/charts/devtron/templates/configmap-secret.yaml +++ b/charts/devtron/templates/configmap-secret.yaml @@ -408,7 +408,7 @@ metadata: "helm.sh/hook": pre-install --- -{{-if .Values.devtronEnterprise.finops.enabled}} +{{- if .Values.devtronEnterprise.finops.enabled}} apiVersion: v1 kind: Secret metadata: From 08ddeb0cc45d00703cb5a963e0b016fc06ace868 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 15:31:50 +0530 Subject: [PATCH 08/32] added hook --- charts/devtron/templates/timescale-db.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 3bf09fd496..dc937d518f 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -3,6 +3,9 @@ apiVersion: v1 kind: Namespace metadata: name: timescale-db + annotations: + "helm.sh/hook": pre-install,pre-upgrade + "helm.sh/hook-weight": "-2" --- apiVersion: postgresql.cnpg.io/v1 kind: ImageCatalog From a3d8436225e90276d3be2d8a3978507909a0043e Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 15:48:28 +0530 Subject: [PATCH 09/32] changes --- charts/devtron/templates/timescale-db.yaml | 125 ++++++++++----------- 1 file changed, 62 insertions(+), 63 deletions(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index dc937d518f..d6541fe8cb 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -4,68 +4,67 @@ kind: Namespace metadata: name: timescale-db annotations: - "helm.sh/hook": pre-install,pre-upgrade + "helm.sh/hook": pre-install "helm.sh/hook-weight": "-2" ---- -apiVersion: postgresql.cnpg.io/v1 -kind: ImageCatalog -metadata: - name: cloudnative-pg-timescaledb-pg15 - namespace: timescale-db -spec: - images: - - major: 15 - image: timescale/timescaledb-ha:pg15-ts2.18-all ---- -apiVersion: v1 -kind: ConfigMap -metadata: - name: init-schema - namespace: timescale-db -data: - init-schema.sql: | - CREATE EXTENSION IF NOT EXISTS timescaledb; ---- - -apiVersion: postgresql.cnpg.io/v1 -kind: Cluster -metadata: - name: timescaledb-cluster-pg15 - namespace: timescale-db -spec: - affinity: - tolerations: [] - nodeSelector: {} - instances: 1 - enableSuperuserAccess: true - imageCatalogRef: - apiGroup: postgresql.cnpg.io - kind: ImageCatalog - name: cloudnative-pg-timescaledb-pg15 - major: 15 - postgresUID: 1000 - postgresGID: 1000 - resources: {} - postgresql: - shared_preload_libraries: - - 'timescaledb' - parameters: - max_wal_size: "1GB" - max_wal_senders: "3" - wal_level: "replica" - pg_hba: - - host all all all scram-sha-256 - bootstrap: - initdb: - database: finops - owner: postgres # This should match the username in timescaledb-cluster-pg15-superuser - secret: - name: timescaledb-cluster-pg15-superuser - postInitApplicationSQLRefs: - configMapRefs: - - name: init-schema - key: init-schema.sql - storage: - size: 5Gi - storageClass: default +# --- +# apiVersion: postgresql.cnpg.io/v1 +# kind: ImageCatalog +# metadata: +# name: cloudnative-pg-timescaledb-pg15 +# namespace: timescale-db +# spec: +# images: +# - major: 15 +# image: timescale/timescaledb-ha:pg15-ts2.18-all +# --- +# apiVersion: v1 +# kind: ConfigMap +# metadata: +# name: init-schema +# namespace: timescale-db +# data: +# init-schema.sql: | +# CREATE EXTENSION IF NOT EXISTS timescaledb; +# --- +# apiVersion: postgresql.cnpg.io/v1 +# kind: Cluster +# metadata: +# name: timescaledb-cluster-pg15 +# namespace: timescale-db +# spec: +# affinity: +# tolerations: [] +# nodeSelector: {} +# instances: 1 +# enableSuperuserAccess: true +# imageCatalogRef: +# apiGroup: postgresql.cnpg.io +# kind: ImageCatalog +# name: cloudnative-pg-timescaledb-pg15 +# major: 15 +# postgresUID: 1000 +# postgresGID: 1000 +# resources: {} +# postgresql: +# shared_preload_libraries: +# - 'timescaledb' +# parameters: +# max_wal_size: "1GB" +# max_wal_senders: "3" +# wal_level: "replica" +# pg_hba: +# - host all all all scram-sha-256 +# bootstrap: +# initdb: +# database: finops +# owner: postgres # This should match the username in timescaledb-cluster-pg15-superuser +# secret: +# name: timescaledb-cluster-pg15-superuser +# postInitApplicationSQLRefs: +# configMapRefs: +# - name: init-schema +# key: init-schema.sql +# storage: +# size: 5Gi +# storageClass: default {{- end }} \ No newline at end of file From 78f46b36b2d7c8e4b52c746055c2f330dd30cbb4 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 15:55:27 +0530 Subject: [PATCH 10/32] changes --- charts/devtron/templates/cost-sync-job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/devtron/templates/cost-sync-job.yaml b/charts/devtron/templates/cost-sync-job.yaml index cd95e26f3b..0acbf0e52e 100644 --- a/charts/devtron/templates/cost-sync-job.yaml +++ b/charts/devtron/templates/cost-sync-job.yaml @@ -16,7 +16,7 @@ spec: app: cost-sync-job spec: containers: - envFrom: + - envFrom: - configMapRef: name: cost-sync-cm - secretRef: From b6bbacbecd5736b9e84cf6e4cdf2ac0415764a0c Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 15:56:59 +0530 Subject: [PATCH 11/32] changes --- charts/devtron/templates/cost-sync-job.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/devtron/templates/cost-sync-job.yaml b/charts/devtron/templates/cost-sync-job.yaml index 0acbf0e52e..1042989199 100644 --- a/charts/devtron/templates/cost-sync-job.yaml +++ b/charts/devtron/templates/cost-sync-job.yaml @@ -15,6 +15,7 @@ spec: labels: app: cost-sync-job spec: + restartPolicy: OnFailure containers: - envFrom: - configMapRef: From b3a89a5bed25a227c8b825792283fbfd6427fb9f Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 16:05:44 +0530 Subject: [PATCH 12/32] post hook --- charts/devtron/templates/timescale-db.yaml | 23 ++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index d6541fe8cb..f94b8211e0 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -6,16 +6,19 @@ metadata: annotations: "helm.sh/hook": pre-install "helm.sh/hook-weight": "-2" -# --- -# apiVersion: postgresql.cnpg.io/v1 -# kind: ImageCatalog -# metadata: -# name: cloudnative-pg-timescaledb-pg15 -# namespace: timescale-db -# spec: -# images: -# - major: 15 -# image: timescale/timescaledb-ha:pg15-ts2.18-all +--- +apiVersion: postgresql.cnpg.io/v1 +kind: ImageCatalog +metadata: + name: cloudnative-pg-timescaledb-pg15 + namespace: timescale-db + annotations: + "helm.sh/hook": post-install,post-upgrade + "helm.sh/hook-weight": "-2" +spec: + images: + - major: 15 + image: timescale/timescaledb-ha:pg15-ts2.18-all # --- # apiVersion: v1 # kind: ConfigMap From b83721cabcaa9ead6ca87dfb1680bba5a83e1f9b Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 16:10:48 +0530 Subject: [PATCH 13/32] post hook --- charts/devtron/templates/timescale-db.yaml | 103 +++++++++++---------- 1 file changed, 53 insertions(+), 50 deletions(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index f94b8211e0..47e0be1031 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -20,54 +20,57 @@ spec: - major: 15 image: timescale/timescaledb-ha:pg15-ts2.18-all # --- -# apiVersion: v1 -# kind: ConfigMap -# metadata: -# name: init-schema -# namespace: timescale-db -# data: -# init-schema.sql: | -# CREATE EXTENSION IF NOT EXISTS timescaledb; -# --- -# apiVersion: postgresql.cnpg.io/v1 -# kind: Cluster -# metadata: -# name: timescaledb-cluster-pg15 -# namespace: timescale-db -# spec: -# affinity: -# tolerations: [] -# nodeSelector: {} -# instances: 1 -# enableSuperuserAccess: true -# imageCatalogRef: -# apiGroup: postgresql.cnpg.io -# kind: ImageCatalog -# name: cloudnative-pg-timescaledb-pg15 -# major: 15 -# postgresUID: 1000 -# postgresGID: 1000 -# resources: {} -# postgresql: -# shared_preload_libraries: -# - 'timescaledb' -# parameters: -# max_wal_size: "1GB" -# max_wal_senders: "3" -# wal_level: "replica" -# pg_hba: -# - host all all all scram-sha-256 -# bootstrap: -# initdb: -# database: finops -# owner: postgres # This should match the username in timescaledb-cluster-pg15-superuser -# secret: -# name: timescaledb-cluster-pg15-superuser -# postInitApplicationSQLRefs: -# configMapRefs: -# - name: init-schema -# key: init-schema.sql -# storage: -# size: 5Gi -# storageClass: default +apiVersion: v1 +kind: ConfigMap +metadata: + name: init-schema + namespace: timescale-db +data: + init-schema.sql: | + CREATE EXTENSION IF NOT EXISTS timescaledb; +--- +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: timescaledb-cluster-pg15 + namespace: timescale-db + annotations: + "helm.sh/hook": post-install,post-upgrade + "helm.sh/hook-weight": "-2" +spec: + affinity: + tolerations: [] + nodeSelector: {} + instances: 1 + enableSuperuserAccess: true + imageCatalogRef: + apiGroup: postgresql.cnpg.io + kind: ImageCatalog + name: cloudnative-pg-timescaledb-pg15 + major: 15 + postgresUID: 1000 + postgresGID: 1000 + resources: {} + postgresql: + shared_preload_libraries: + - 'timescaledb' + parameters: + max_wal_size: "1GB" + max_wal_senders: "3" + wal_level: "replica" + pg_hba: + - host all all all scram-sha-256 + bootstrap: + initdb: + database: finops + owner: postgres # This should match the username in timescaledb-cluster-pg15-superuser + secret: + name: timescaledb-cluster-pg15-superuser + postInitApplicationSQLRefs: + configMapRefs: + - name: init-schema + key: init-schema.sql + storage: + size: 5Gi + storageClass: default {{- end }} \ No newline at end of file From f6de14bc88cf6d254faa8f43daab4279b087f923 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Tue, 23 Dec 2025 16:14:25 +0530 Subject: [PATCH 14/32] post hook --- charts/devtron/templates/timescale-db.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 47e0be1031..8fc0123827 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -72,5 +72,5 @@ spec: key: init-schema.sql storage: size: 5Gi - storageClass: default + storageClass: {{ .Values.devtronEnterprise.finops.timescale.storageClass | default "default" }} {{- end }} \ No newline at end of file From 5318f1d37270824e9b7255cc4fafb99d705585bc Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 13:02:55 +0530 Subject: [PATCH 15/32] changes in files --- charts/devtron/devtron-bom.yaml | 2 + .../devtron/templates/configmap-secret.yaml | 8 +-- charts/devtron/templates/cost-sync-job.yaml | 2 +- charts/devtron/templates/timescale-db.yaml | 69 +++++++++---------- charts/devtron/values.yaml | 2 + 5 files changed, 42 insertions(+), 41 deletions(-) diff --git a/charts/devtron/devtron-bom.yaml b/charts/devtron/devtron-bom.yaml index 2da313e90e..526486df92 100644 --- a/charts/devtron/devtron-bom.yaml +++ b/charts/devtron/devtron-bom.yaml @@ -245,6 +245,8 @@ devtronEnterprise: enabled: false costSync: image: "" + timescale: + storageClass: "" casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" diff --git a/charts/devtron/templates/configmap-secret.yaml b/charts/devtron/templates/configmap-secret.yaml index 00b5961b55..bd1f94cfbb 100644 --- a/charts/devtron/templates/configmap-secret.yaml +++ b/charts/devtron/templates/configmap-secret.yaml @@ -411,13 +411,13 @@ metadata: {{- if .Values.devtronEnterprise.finops.enabled}} apiVersion: v1 kind: Secret +data: + username: {{ "postgres" | b64enc }} + password: {{ $TIMESCALE_PASSWORD }} metadata: name: timescaledb-cluster-pg15-superuser namespace: timescale-db -type: kubernetes.io/basic-auth -data: - username: {{ "postgres" | b64enc }} - password: {{ $TIMESCALE_PASSWORD }} +type: kubernetes.io/basic-auth --- apiVersion: v1 data: diff --git a/charts/devtron/templates/cost-sync-job.yaml b/charts/devtron/templates/cost-sync-job.yaml index 1042989199..db6bc4e351 100644 --- a/charts/devtron/templates/cost-sync-job.yaml +++ b/charts/devtron/templates/cost-sync-job.yaml @@ -36,4 +36,4 @@ spec: successfulJobsHistoryLimit: 3 suspend: false timeZone: UTC -{{- end }} \ No newline at end of file +{{- end }} \ No newline at end of file diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 8fc0123827..a2262cbfa5 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -12,65 +12,62 @@ kind: ImageCatalog metadata: name: cloudnative-pg-timescaledb-pg15 namespace: timescale-db - annotations: - "helm.sh/hook": post-install,post-upgrade - "helm.sh/hook-weight": "-2" spec: images: - - major: 15 - image: timescale/timescaledb-ha:pg15-ts2.18-all -# --- + - image: timescale/timescaledb-ha:pg15-ts2.18-all + major: 15 +--- apiVersion: v1 +data: + init-schema.sql: | + CREATE EXTENSION IF NOT EXISTS timescaledb; kind: ConfigMap metadata: name: init-schema namespace: timescale-db -data: - init-schema.sql: | - CREATE EXTENSION IF NOT EXISTS timescaledb; ---- +--- apiVersion: postgresql.cnpg.io/v1 kind: Cluster metadata: name: timescaledb-cluster-pg15 namespace: timescale-db - annotations: - "helm.sh/hook": post-install,post-upgrade - "helm.sh/hook-weight": "-2" spec: - affinity: - tolerations: [] - nodeSelector: {} - instances: 1 + bootstrap: + initdb: + database: finops + owner: postgres + postInitApplicationSQLRefs: + configMapRefs: + - key: init-schema.sql + name: init-schema + secret: + name: timescaledb-cluster-pg15-superuser enableSuperuserAccess: true imageCatalogRef: apiGroup: postgresql.cnpg.io kind: ImageCatalog - name: cloudnative-pg-timescaledb-pg15 major: 15 - postgresUID: 1000 + name: cloudnative-pg-timescaledb-pg15 + instances: 1 postgresGID: 1000 - resources: {} + postgresUID: 1000 postgresql: - shared_preload_libraries: - - 'timescaledb' parameters: - max_wal_size: "1GB" - max_wal_senders: "3" - wal_level: "replica" + max_wal_senders: "3" + max_wal_size: 1GB + wal_level: replica pg_hba: - host all all all scram-sha-256 - bootstrap: - initdb: - database: finops - owner: postgres # This should match the username in timescaledb-cluster-pg15-superuser - secret: - name: timescaledb-cluster-pg15-superuser - postInitApplicationSQLRefs: - configMapRefs: - - name: init-schema - key: init-schema.sql + shared_preload_libraries: + - timescaledb + resources: + limits: + cpu: "1" + memory: 2Gi + requests: + cpu: "0.5" + memory: 1Gi storage: size: 5Gi - storageClass: {{ .Values.devtronEnterprise.finops.timescale.storageClass | default "default" }} + storageClass: {{ .Values.devtronEnterprise.finops.timescale.storageClass | default "default"}} {{- end }} \ No newline at end of file diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index 23a42aa957..d24bac34c1 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -486,6 +486,8 @@ devtronEnterprise: enabled: false costSync: image: "" + timescale: + storageClass: "" casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" From 0132adf6373187b346ce6aac69f634b273e79881 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 13:28:49 +0530 Subject: [PATCH 16/32] pre-upgrade added --- charts/devtron/templates/timescale-db.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index a2262cbfa5..238768d6f9 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -4,8 +4,8 @@ kind: Namespace metadata: name: timescale-db annotations: - "helm.sh/hook": pre-install - "helm.sh/hook-weight": "-2" + "helm.sh/hook": pre-install,pre-upgrade + "helm.sh/resource-policy": keep --- apiVersion: postgresql.cnpg.io/v1 kind: ImageCatalog From 8a32b72ecca08b65922e50d99c7f972c2c45819a Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 13:41:37 +0530 Subject: [PATCH 17/32] pre-upgrade added --- charts/devtron/templates/timescale-db.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 238768d6f9..2a93f5475f 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -1,12 +1,4 @@ {{- if .Values.devtronEnterprise.finops.enabled }} -apiVersion: v1 -kind: Namespace -metadata: - name: timescale-db - annotations: - "helm.sh/hook": pre-install,pre-upgrade - "helm.sh/resource-policy": keep ---- apiVersion: postgresql.cnpg.io/v1 kind: ImageCatalog metadata: From d70254dff53336ba22beb19e1a255ffa4b8def1f Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 14:07:12 +0530 Subject: [PATCH 18/32] handle create ns --- charts/devtron/templates/_helpers.tpl | 10 +++++++++- charts/devtron/templates/timescale-db.yaml | 7 +++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/charts/devtron/templates/_helpers.tpl b/charts/devtron/templates/_helpers.tpl index 1d4879a9ea..aa1b9d5513 100644 --- a/charts/devtron/templates/_helpers.tpl +++ b/charts/devtron/templates/_helpers.tpl @@ -115,4 +115,12 @@ securityContext: securityContext: {{ toYaml .global.containerSecurityContext | indent 2 }} {{- end }} -{{- end }} \ No newline at end of file +{{- end }} + +{{- define "createNamespace" -}} +{{- $liveNs := lookup "v1" "Namespace" "" "timescale-db" }} +{{- if not $liveNs }} +true +{{- else }} +false +{{- end }} diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 2a93f5475f..1f993d1dff 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -1,4 +1,11 @@ {{- if .Values.devtronEnterprise.finops.enabled }} +{{ - if include "createNamespace" . | toBool }} +apiVersion: v1 +kind: Namespace +metadata: + name: timescale-db +{{- end }} +--- apiVersion: postgresql.cnpg.io/v1 kind: ImageCatalog metadata: From 244a1d7396ada585aa676f8f4f849078e61731a2 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 14:17:03 +0530 Subject: [PATCH 19/32] handle create ns --- charts/devtron/templates/timescale-db.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 1f993d1dff..0863debdac 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -1,5 +1,5 @@ {{- if .Values.devtronEnterprise.finops.enabled }} -{{ - if include "createNamespace" . | toBool }} +{{- if include "createNamespace" . | toBool }} apiVersion: v1 kind: Namespace metadata: From a9449c73f171cd87effeaae36da7a8914a318501 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 14:17:37 +0530 Subject: [PATCH 20/32] handle create ns --- charts/devtron/templates/timescale-db.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 0863debdac..c942c8ad4c 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -1,5 +1,5 @@ {{- if .Values.devtronEnterprise.finops.enabled }} -{{- if include "createNamespace" . | toBool }} +{{- if include "createNamespace" . }} apiVersion: v1 kind: Namespace metadata: From 3b3c2676e8772e33bf436882a1f9408bac22cba8 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 14:18:53 +0530 Subject: [PATCH 21/32] handle create ns --- charts/devtron/templates/_helpers.tpl | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/devtron/templates/_helpers.tpl b/charts/devtron/templates/_helpers.tpl index aa1b9d5513..0ec11d572a 100644 --- a/charts/devtron/templates/_helpers.tpl +++ b/charts/devtron/templates/_helpers.tpl @@ -124,3 +124,4 @@ true {{- else }} false {{- end }} +{{- end }} From c3e0ab51005fce97ac49c585cb1bb34ad4c7ae9e Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 15:06:00 +0530 Subject: [PATCH 22/32] handle create ns --- charts/devtron/templates/timescale-db.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index c942c8ad4c..f183a07709 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -1,5 +1,5 @@ {{- if .Values.devtronEnterprise.finops.enabled }} -{{- if include "createNamespace" . }} +{{- if eq (include "createNamespace" . | trim) "true"}} apiVersion: v1 kind: Namespace metadata: From ffbde0ea315480ce089d278bfee4d4296ec6fd2a Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 15:34:36 +0530 Subject: [PATCH 23/32] changes in namespace --- charts/devtron/templates/configmap-secret.yaml | 8 ++++---- charts/devtron/templates/timescale-db.yaml | 15 +++++++++------ 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/charts/devtron/templates/configmap-secret.yaml b/charts/devtron/templates/configmap-secret.yaml index bd1f94cfbb..6c92445f94 100644 --- a/charts/devtron/templates/configmap-secret.yaml +++ b/charts/devtron/templates/configmap-secret.yaml @@ -8,7 +8,7 @@ {{- $DEX_CSTOREKEY := include "getOrGeneratePass" (dict "Namespace" "devtroncd" "Kind" "Secret" "Name" "devtron-secret" "Key" "DEX_CSTOREKEY") }} {{- $postgresPwd := include "getOrGeneratePass" (dict "Namespace" "devtroncd" "Kind" "Secret" "Name" "postgresql-postgresql" "Key" "postgresql-password") }} {{- $WEBHOOK_TOKEN := include "getOrGeneratePass" (dict "Namespace" "devtroncd" "Kind" "Secret" "Name" "devtron-secret" "Key" "WEBHOOK_TOKEN") }} -{{- $TIMESCALE_PASSWORD := include "getOrGeneratePass" (dict "Namespace" "timescale-db" "Kind" "Secret" "Name" "timescaledb-cluster-pg15-superuser" "Key" "password") }} +{{- $TIMESCALE_PASSWORD := include "getOrGeneratePass" (dict "Namespace" "devtroncd" "Kind" "Secret" "Name" "timescaledb-cluster-pg15-superuser" "Key" "password") }} {{- if $.Values.installer.modules }} {{- if has "cicd" $.Values.installer.modules }} @@ -416,7 +416,7 @@ data: password: {{ $TIMESCALE_PASSWORD }} metadata: name: timescaledb-cluster-pg15-superuser - namespace: timescale-db + namespace: devtroncd type: kubernetes.io/basic-auth --- apiVersion: v1 @@ -428,9 +428,9 @@ data: PG_DATABASE: {{$.Values.global.dbConfig.PG_DATABASE}} PG_USER: {{$.Values.global.dbConfig.PG_USER}} PROMETHEUS_DELAY_MINUTES: "5" - TIMESCALE_ADDR: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_ADDR: timescaledb-cluster-pg15-rw.devtroncd TIMESCALE_DATABASE: finops - TIMESCALE_HOST: timescaledb-cluster-pg15-rw.timescale-db + TIMESCALE_HOST: timescaledb-cluster-pg15-rw.devtroncd TIMESCALE_NAME: finops TIMESCALE_PORT: "5432" TIMESCALE_SSL_MODE: disable diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index f183a07709..e23acc7dd9 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -1,16 +1,19 @@ {{- if .Values.devtronEnterprise.finops.enabled }} -{{- if eq (include "createNamespace" . | trim) "true"}} apiVersion: v1 kind: Namespace metadata: name: timescale-db -{{- end }} ---- + labels: + name: devtron + annotations: + "helm.sh/hook": pre-install + "helm.sh/resource-policy": keep +--- apiVersion: postgresql.cnpg.io/v1 kind: ImageCatalog metadata: name: cloudnative-pg-timescaledb-pg15 - namespace: timescale-db + namespace: devtroncd spec: images: - image: timescale/timescaledb-ha:pg15-ts2.18-all @@ -23,13 +26,13 @@ data: kind: ConfigMap metadata: name: init-schema - namespace: timescale-db + namespace: devtroncd --- apiVersion: postgresql.cnpg.io/v1 kind: Cluster metadata: name: timescaledb-cluster-pg15 - namespace: timescale-db + namespace: devtroncd spec: bootstrap: initdb: From 43e926a88f51c1c0a5dc3c2d2a676478f77bdd25 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 15:35:36 +0530 Subject: [PATCH 24/32] changes in namespace --- charts/devtron/templates/crds/crd.yaml | 18345 +++++++++++++++++++++++ 1 file changed, 18345 insertions(+) create mode 100644 charts/devtron/templates/crds/crd.yaml diff --git a/charts/devtron/templates/crds/crd.yaml b/charts/devtron/templates/crds/crd.yaml new file mode 100644 index 0000000000..6aece1c346 --- /dev/null +++ b/charts/devtron/templates/crds/crd.yaml @@ -0,0 +1,18345 @@ +{{- if .Values.devtronEnterprise.finops.enabled }} +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: backups.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Backup + listKind: BackupList + plural: backups + singular: backup + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .spec.method + name: Method + type: string + - jsonPath: .status.phase + name: Phase + type: string + - jsonPath: .status.error + name: Error + type: string + name: v1 + schema: + openAPIV3Schema: + description: A Backup resource is a request for a PostgreSQL backup by the + user. + 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 backup. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + cluster: + description: The cluster to backup + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + method: + default: barmanObjectStore + description: |- + The backup method to be used, possible options are `barmanObjectStore`, + `volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`. + enum: + - barmanObjectStore + - volumeSnapshot + - plugin + type: string + online: + description: |- + Whether the default type of backup with volume snapshots is + online/hot (`true`, default) or offline/cold (`false`) + Overrides the default setting specified in the cluster field '.spec.backup.volumeSnapshot.online' + type: boolean + onlineConfiguration: + description: |- + Configuration parameters to control the online/hot backup with volume snapshots + Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza + properties: + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + waitForArchive: + default: true + description: |- + If false, the function will return immediately after the backup is completed, + without waiting for WAL to be archived. + This behavior is only useful with backup software that independently monitors WAL archiving. + Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + enabled. + On a standby, this means that it will wait only when archive_mode = always. + If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + an immediate segment switch. + type: boolean + type: object + pluginConfiguration: + description: Configuration parameters passed to the plugin managing + this backup + properties: + name: + description: Name is the name of the plugin managing this backup + type: string + parameters: + additionalProperties: + type: string + description: |- + Parameters are the configuration parameters passed to the backup + plugin for this backup + type: object + required: + - name + type: object + target: + description: |- + The policy to decide which instance should perform this backup. If empty, + it defaults to `cluster.spec.backup.target`. + Available options are empty string, `primary` and `prefer-standby`. + `primary` to have backups run always on primary instances, + `prefer-standby` to have backups run preferably on the most updated + standby, if available. + enum: + - primary + - prefer-standby + type: string + required: + - cluster + type: object + x-kubernetes-validations: + - message: BackupSpec is immutable once set + rule: oldSelf == self + status: + description: |- + Most recently observed status of the backup. This data may not be up to + date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + azureCredentials: + description: The credentials to use to upload data to Azure Blob Storage + properties: + connectionString: + description: The connection string to be used + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromAzureAD: + description: Use the Azure AD based authentication without providing + explicitly the keys. + type: boolean + storageAccount: + description: The storage account where to upload data + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageKey: + description: |- + The storage account key to be used in conjunction + with the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageSasToken: + description: |- + A shared-access-signature to be used in conjunction with + the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + backupId: + description: The ID of the Barman backup + type: string + backupLabelFile: + description: Backup label file content as returned by Postgres in + case of online (hot) backups + format: byte + type: string + backupName: + description: The Name of the Barman backup + type: string + beginLSN: + description: The starting xlog + type: string + beginWal: + description: The starting WAL + type: string + commandError: + description: The backup command output in case of error + type: string + commandOutput: + description: Unused. Retained for compatibility with old versions. + type: string + destinationPath: + description: |- + The path where to store the backup (i.e. s3://bucket/path/to/folder) + this path, with different destination folders, will be used for WALs + and for data. This may not be populated in case of errors. + type: string + encryption: + description: Encryption method required to S3 API + type: string + endLSN: + description: The ending xlog + type: string + endWal: + description: The ending WAL + type: string + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive. + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + endpointURL: + description: |- + Endpoint to be used to upload data to the cloud, + overriding the automatic endpoint discovery + type: string + error: + description: The detected error + type: string + googleCredentials: + description: The credentials to use to upload data to Google Cloud + Storage + properties: + applicationCredentials: + description: The secret containing the Google Cloud Storage JSON + file with the credentials + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + gkeEnvironment: + description: |- + If set to true, will presume that it's running inside a GKE environment, + default to false. + type: boolean + type: object + instanceID: + description: Information to identify the instance where the backup + has been taken from + properties: + ContainerID: + description: The container ID + type: string + podName: + description: The pod name + type: string + type: object + majorVersion: + description: |- + The PostgreSQL major version that was running when the + backup was taken. + type: integer + method: + description: The backup method being used + type: string + online: + description: Whether the backup was online/hot (`true`) or offline/cold + (`false`) + type: boolean + phase: + description: The last backup status + type: string + pluginMetadata: + additionalProperties: + type: string + description: A map containing the plugin metadata + type: object + s3Credentials: + description: The credentials to use to upload data to S3 + properties: + accessKeyId: + description: The reference to the access key id + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromIAMRole: + description: Use the role based authentication without providing + explicitly the keys. + type: boolean + region: + description: The reference to the secret containing the region + name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + secretAccessKey: + description: The reference to the secret access key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + sessionToken: + description: The references to the session key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + serverName: + description: |- + The server name on S3, the cluster name is used if this + parameter is omitted + type: string + snapshotBackupStatus: + description: Status of the volumeSnapshot backup + properties: + elements: + description: The elements list, populated with the gathered volume + snapshots + items: + description: BackupSnapshotElementStatus is a volume snapshot + that is part of a volume snapshot method backup + properties: + name: + description: Name is the snapshot resource name + type: string + tablespaceName: + description: |- + TablespaceName is the name of the snapshotted tablespace. Only set + when type is PG_TABLESPACE + type: string + type: + description: Type is tho role of the snapshot in the cluster, + such as PG_DATA, PG_WAL and PG_TABLESPACE + type: string + required: + - name + - type + type: object + type: array + type: object + startedAt: + description: When the backup was started + format: date-time + type: string + stoppedAt: + description: When the backup was terminated + format: date-time + type: string + tablespaceMapFile: + description: Tablespace map file content as returned by Postgres in + case of online (hot) backups + format: byte + type: string + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: clusterimagecatalogs.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: ClusterImageCatalog + listKind: ClusterImageCatalogList + plural: clusterimagecatalogs + singular: clusterimagecatalog + scope: Cluster + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: ClusterImageCatalog is the Schema for the clusterimagecatalogs + API + 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 ClusterImageCatalog. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + images: + description: List of CatalogImages available in the catalog + items: + description: CatalogImage defines the image and major version + properties: + image: + description: The image reference + type: string + major: + description: The PostgreSQL major version of the image. Must + be unique within the catalog. + minimum: 10 + type: integer + required: + - image + - major + type: object + maxItems: 8 + minItems: 1 + type: array + x-kubernetes-validations: + - message: Images must have unique major versions + rule: self.all(e, self.filter(f, f.major==e.major).size() == 1) + required: + - images + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: clusters.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Cluster + listKind: ClusterList + plural: clusters + singular: cluster + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - description: Number of instances + jsonPath: .status.instances + name: Instances + type: integer + - description: Number of ready instances + jsonPath: .status.readyInstances + name: Ready + type: integer + - description: Cluster current status + jsonPath: .status.phase + name: Status + type: string + - description: Primary pod + jsonPath: .status.currentPrimary + name: Primary + type: string + name: v1 + schema: + openAPIV3Schema: + description: |- + Cluster defines the API schema for a highly available PostgreSQL database cluster + managed by CloudNativePG. + 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 cluster. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + affinity: + description: Affinity/Anti-affinity rules for Pods + properties: + additionalPodAffinity: + description: AdditionalPodAffinity allows to specify pod affinity + terms to be passed to all the cluster's pods. + 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + type: object + additionalPodAntiAffinity: + description: |- + AdditionalPodAntiAffinity allows to specify pod anti-affinity terms to be added to the ones generated + by the operator if EnablePodAntiAffinity is set to true (default) or to be used exclusively if set to false. + 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 subtracting + "weight" from 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + type: object + enablePodAntiAffinity: + description: |- + Activates anti-affinity for the pods. The operator will define pods + anti-affinity unless this field is explicitly set to false + type: boolean + nodeAffinity: + description: |- + NodeAffinity describes node affinity scheduling rules for the pod. + More info: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + nodeSelector: + additionalProperties: + type: string + description: |- + NodeSelector is map of key-value pairs used to define the nodes on which + the pods can run. + More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + type: object + podAntiAffinityType: + description: |- + PodAntiAffinityType allows the user to decide whether pod anti-affinity between cluster instance has to be + considered a strong requirement during scheduling or not. Allowed values are: "preferred" (default if empty) or + "required". Setting it to "required", could lead to instances remaining pending until new kubernetes nodes are + added if all the existing nodes don't match the required pod anti-affinity rule. + More info: + https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + type: string + tolerations: + description: |- + Tolerations is a list of Tolerations that should be set for all the pods, in order to allow them to run + on tainted nodes. + More info: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ + 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 + topologyKey: + description: |- + TopologyKey to use for anti-affinity configuration. See k8s documentation + for more info on that + type: string + type: object + backup: + description: The configuration to be used for backups + properties: + barmanObjectStore: + description: The configuration for the barman-cloud tool suite + properties: + azureCredentials: + description: The credentials to use to upload data to Azure + Blob Storage + properties: + connectionString: + description: The connection string to be used + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromAzureAD: + description: Use the Azure AD based authentication without + providing explicitly the keys. + type: boolean + storageAccount: + description: The storage account where to upload data + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageKey: + description: |- + The storage account key to be used in conjunction + with the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageSasToken: + description: |- + A shared-access-signature to be used in conjunction with + the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + data: + description: |- + The configuration to be used to backup the data files + When not defined, base backups files will be stored uncompressed and may + be unencrypted in the object store, according to the bucket default + policy. + properties: + additionalCommandArgs: + description: |- + AdditionalCommandArgs represents additional arguments that can be appended + to the 'barman-cloud-backup' command-line invocation. These arguments + provide flexibility to customize the backup process further according to + specific requirements or configurations. + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-backup' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + compression: + description: |- + Compress a backup file (a tar file per tablespace) while streaming it + to the object store. Available options are empty string (no + compression, default), `gzip`, `bzip2`, and `snappy`. + enum: + - bzip2 + - gzip + - snappy + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + jobs: + description: |- + The number of parallel jobs to be used to upload the backup, defaults + to 2 + format: int32 + minimum: 1 + type: integer + type: object + destinationPath: + description: |- + The path where to store the backup (i.e. s3://bucket/path/to/folder) + this path, with different destination folders, will be used for WALs + and for data + minLength: 1 + type: string + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + endpointURL: + description: |- + Endpoint to be used to upload data to the cloud, + overriding the automatic endpoint discovery + type: string + googleCredentials: + description: The credentials to use to upload data to Google + Cloud Storage + properties: + applicationCredentials: + description: The secret containing the Google Cloud Storage + JSON file with the credentials + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + gkeEnvironment: + description: |- + If set to true, will presume that it's running inside a GKE environment, + default to false. + type: boolean + type: object + historyTags: + additionalProperties: + type: string + description: |- + HistoryTags is a list of key value pairs that will be passed to the + Barman --history-tags option. + type: object + s3Credentials: + description: The credentials to use to upload data to S3 + properties: + accessKeyId: + description: The reference to the access key id + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromIAMRole: + description: Use the role based authentication without + providing explicitly the keys. + type: boolean + region: + description: The reference to the secret containing the + region name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + secretAccessKey: + description: The reference to the secret access key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + sessionToken: + description: The references to the session key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + serverName: + description: |- + The server name on S3, the cluster name is used if this + parameter is omitted + type: string + tags: + additionalProperties: + type: string + description: |- + Tags is a list of key value pairs that will be passed to the + Barman --tags option. + type: object + wal: + description: |- + The configuration for the backup of the WAL stream. + When not defined, WAL files will be stored uncompressed and may be + unencrypted in the object store, according to the bucket default policy. + properties: + archiveAdditionalCommandArgs: + description: |- + Additional arguments that can be appended to the 'barman-cloud-wal-archive' + command-line invocation. These arguments provide flexibility to customize + the WAL archive process further, according to specific requirements or configurations. + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-wal-archive' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + compression: + description: |- + Compress a WAL file before sending it to the object store. Available + options are empty string (no compression, default), `gzip`, `bzip2`, + `lz4`, `snappy`, `xz`, and `zstd`. + enum: + - bzip2 + - gzip + - lz4 + - snappy + - xz + - zstd + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + maxParallel: + description: |- + Number of WAL files to be either archived in parallel (when the + PostgreSQL instance is archiving to a backup object store) or + restored in parallel (when a PostgreSQL standby is fetching WAL + files from a recovery object store). If not specified, WAL files + will be processed one at a time. It accepts a positive integer as a + value - with 1 being the minimum accepted value. + minimum: 1 + type: integer + restoreAdditionalCommandArgs: + description: |- + Additional arguments that can be appended to the 'barman-cloud-wal-restore' + command-line invocation. These arguments provide flexibility to customize + the WAL restore process further, according to specific requirements or configurations. + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-wal-restore' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + type: object + required: + - destinationPath + type: object + retentionPolicy: + description: |- + RetentionPolicy is the retention policy to be used for backups + and WALs (i.e. '60d'). The retention policy is expressed in the form + of `XXu` where `XX` is a positive integer and `u` is in `[dwm]` - + days, weeks, months. + It's currently only applicable when using the BarmanObjectStore method. + pattern: ^[1-9][0-9]*[dwm]$ + type: string + target: + default: prefer-standby + description: |- + The policy to decide which instance should perform backups. Available + options are empty string, which will default to `prefer-standby` policy, + `primary` to have backups run always on primary instances, `prefer-standby` + to have backups run preferably on the most updated standby, if available. + enum: + - primary + - prefer-standby + type: string + volumeSnapshot: + description: VolumeSnapshot provides the configuration for the + execution of volume snapshot backups. + properties: + annotations: + additionalProperties: + type: string + description: Annotations key-value pairs that will be added + to .metadata.annotations snapshot resources. + type: object + className: + description: |- + ClassName specifies the Snapshot Class to be used for PG_DATA PersistentVolumeClaim. + It is the default class for the other types if no specific class is present + type: string + labels: + additionalProperties: + type: string + description: Labels are key-value pairs that will be added + to .metadata.labels snapshot resources. + type: object + online: + default: true + description: |- + Whether the default type of backup with volume snapshots is + online/hot (`true`, default) or offline/cold (`false`) + type: boolean + onlineConfiguration: + default: + immediateCheckpoint: false + waitForArchive: true + description: Configuration parameters to control the online/hot + backup with volume snapshots + properties: + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + waitForArchive: + default: true + description: |- + If false, the function will return immediately after the backup is completed, + without waiting for WAL to be archived. + This behavior is only useful with backup software that independently monitors WAL archiving. + Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + enabled. + On a standby, this means that it will wait only when archive_mode = always. + If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + an immediate segment switch. + type: boolean + type: object + snapshotOwnerReference: + default: none + description: SnapshotOwnerReference indicates the type of + owner reference the snapshot should have + enum: + - none + - cluster + - backup + type: string + tablespaceClassName: + additionalProperties: + type: string + description: |- + TablespaceClassName specifies the Snapshot Class to be used for the tablespaces. + defaults to the PGDATA Snapshot Class, if set + type: object + walClassName: + description: WalClassName specifies the Snapshot Class to + be used for the PG_WAL PersistentVolumeClaim. + type: string + type: object + type: object + bootstrap: + description: Instructions to bootstrap this cluster + properties: + initdb: + description: Bootstrap the cluster via initdb + properties: + builtinLocale: + description: |- + Specifies the locale name when the builtin provider is used. + This option requires `localeProvider` to be set to `builtin`. + Available from PostgreSQL 17. + type: string + dataChecksums: + description: |- + Whether the `-k` option should be passed to initdb, + enabling checksums on data pages (default: `false`) + type: boolean + database: + description: 'Name of the database used by the application. + Default: `app`.' + type: string + encoding: + description: The value to be passed as option `--encoding` + for initdb (default:`UTF8`) + type: string + icuLocale: + description: |- + Specifies the ICU locale when the ICU provider is used. + This option requires `localeProvider` to be set to `icu`. + Available from PostgreSQL 15. + type: string + icuRules: + description: |- + Specifies additional collation rules to customize the behavior of the default collation. + This option requires `localeProvider` to be set to `icu`. + Available from PostgreSQL 16. + type: string + import: + description: |- + Bootstraps the new cluster by importing data from an existing PostgreSQL + instance using logical backup (`pg_dump` and `pg_restore`) + properties: + databases: + description: The databases to import + items: + type: string + type: array + pgDumpExtraOptions: + description: |- + List of custom options to pass to the `pg_dump` command. + + IMPORTANT: Use with caution. The operator does not validate these options, + and certain flags may interfere with its intended functionality or design. + You are responsible for ensuring that the provided options are compatible + with your environment and desired behavior. + items: + type: string + type: array + pgRestoreDataOptions: + description: |- + Custom options to pass to the `pg_restore` command during the `data` + section. This setting overrides the generic `pgRestoreExtraOptions` value. + + IMPORTANT: Use with caution. The operator does not validate these options, + and certain flags may interfere with its intended functionality or design. + You are responsible for ensuring that the provided options are compatible + with your environment and desired behavior. + items: + type: string + type: array + pgRestoreExtraOptions: + description: |- + List of custom options to pass to the `pg_restore` command. + + IMPORTANT: Use with caution. The operator does not validate these options, + and certain flags may interfere with its intended functionality or design. + You are responsible for ensuring that the provided options are compatible + with your environment and desired behavior. + items: + type: string + type: array + pgRestorePostdataOptions: + description: |- + Custom options to pass to the `pg_restore` command during the `post-data` + section. This setting overrides the generic `pgRestoreExtraOptions` value. + + IMPORTANT: Use with caution. The operator does not validate these options, + and certain flags may interfere with its intended functionality or design. + You are responsible for ensuring that the provided options are compatible + with your environment and desired behavior. + items: + type: string + type: array + pgRestorePredataOptions: + description: |- + Custom options to pass to the `pg_restore` command during the `pre-data` + section. This setting overrides the generic `pgRestoreExtraOptions` value. + + IMPORTANT: Use with caution. The operator does not validate these options, + and certain flags may interfere with its intended functionality or design. + You are responsible for ensuring that the provided options are compatible + with your environment and desired behavior. + items: + type: string + type: array + postImportApplicationSQL: + description: |- + List of SQL queries to be executed as a superuser in the application + database right after is imported - to be used with extreme care + (by default empty). Only available in microservice type. + items: + type: string + type: array + roles: + description: The roles to import + items: + type: string + type: array + schemaOnly: + description: |- + When set to true, only the `pre-data` and `post-data` sections of + `pg_restore` are invoked, avoiding data import. Default: `false`. + type: boolean + source: + description: The source of the import + properties: + externalCluster: + description: The name of the externalCluster used + for import + type: string + required: + - externalCluster + type: object + type: + description: The import type. Can be `microservice` or + `monolith`. + enum: + - microservice + - monolith + type: string + required: + - databases + - source + - type + type: object + locale: + description: Sets the default collation order and character + classification in the new database. + type: string + localeCType: + description: The value to be passed as option `--lc-ctype` + for initdb (default:`C`) + type: string + localeCollate: + description: The value to be passed as option `--lc-collate` + for initdb (default:`C`) + type: string + localeProvider: + description: |- + This option sets the locale provider for databases created in the new cluster. + Available from PostgreSQL 16. + type: string + options: + description: |- + The list of options that must be passed to initdb when creating the cluster. + + Deprecated: This could lead to inconsistent configurations, + please use the explicit provided parameters instead. + If defined, explicit values will be ignored. + items: + type: string + type: array + owner: + description: |- + Name of the owner of the database in the instance to be used + by applications. Defaults to the value of the `database` key. + type: string + postInitApplicationSQL: + description: |- + List of SQL queries to be executed as a superuser in the application + database right after the cluster has been created - to be used with extreme care + (by default empty) + items: + type: string + type: array + postInitApplicationSQLRefs: + description: |- + List of references to ConfigMaps or Secrets containing SQL files + to be executed as a superuser in the application database right after + the cluster has been created. The references are processed in a specific order: + first, all Secrets are processed, followed by all ConfigMaps. + Within each group, the processing order follows the sequence specified + in their respective arrays. + (by default empty) + properties: + configMapRefs: + description: ConfigMapRefs holds a list of references + to ConfigMaps + items: + description: |- + ConfigMapKeySelector contains enough information to let you locate + the key of a ConfigMap + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + secretRefs: + description: SecretRefs holds a list of references to + Secrets + items: + description: |- + SecretKeySelector contains enough information to let you locate + the key of a Secret + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + type: object + postInitSQL: + description: |- + List of SQL queries to be executed as a superuser in the `postgres` + database right after the cluster has been created - to be used with extreme care + (by default empty) + items: + type: string + type: array + postInitSQLRefs: + description: |- + List of references to ConfigMaps or Secrets containing SQL files + to be executed as a superuser in the `postgres` database right after + the cluster has been created. The references are processed in a specific order: + first, all Secrets are processed, followed by all ConfigMaps. + Within each group, the processing order follows the sequence specified + in their respective arrays. + (by default empty) + properties: + configMapRefs: + description: ConfigMapRefs holds a list of references + to ConfigMaps + items: + description: |- + ConfigMapKeySelector contains enough information to let you locate + the key of a ConfigMap + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + secretRefs: + description: SecretRefs holds a list of references to + Secrets + items: + description: |- + SecretKeySelector contains enough information to let you locate + the key of a Secret + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + type: object + postInitTemplateSQL: + description: |- + List of SQL queries to be executed as a superuser in the `template1` + database right after the cluster has been created - to be used with extreme care + (by default empty) + items: + type: string + type: array + postInitTemplateSQLRefs: + description: |- + List of references to ConfigMaps or Secrets containing SQL files + to be executed as a superuser in the `template1` database right after + the cluster has been created. The references are processed in a specific order: + first, all Secrets are processed, followed by all ConfigMaps. + Within each group, the processing order follows the sequence specified + in their respective arrays. + (by default empty) + properties: + configMapRefs: + description: ConfigMapRefs holds a list of references + to ConfigMaps + items: + description: |- + ConfigMapKeySelector contains enough information to let you locate + the key of a ConfigMap + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + secretRefs: + description: SecretRefs holds a list of references to + Secrets + items: + description: |- + SecretKeySelector contains enough information to let you locate + the key of a Secret + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + type: object + secret: + description: |- + Name of the secret containing the initial credentials for the + owner of the user database. If empty a new secret will be + created from scratch + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + walSegmentSize: + description: |- + The value in megabytes (1 to 1024) to be passed to the `--wal-segsize` + option for initdb (default: empty, resulting in PostgreSQL default: 16MB) + maximum: 1024 + minimum: 1 + type: integer + type: object + x-kubernetes-validations: + - message: builtinLocale is only available when localeProvider + is set to `builtin` + rule: '!has(self.builtinLocale) || self.localeProvider == ''builtin''' + - message: icuLocale is only available when localeProvider is + set to `icu` + rule: '!has(self.icuLocale) || self.localeProvider == ''icu''' + - message: icuRules is only available when localeProvider is set + to `icu` + rule: '!has(self.icuRules) || self.localeProvider == ''icu''' + pg_basebackup: + description: |- + Bootstrap the cluster taking a physical backup of another compatible + PostgreSQL instance + properties: + database: + description: 'Name of the database used by the application. + Default: `app`.' + type: string + owner: + description: |- + Name of the owner of the database in the instance to be used + by applications. Defaults to the value of the `database` key. + type: string + secret: + description: |- + Name of the secret containing the initial credentials for the + owner of the user database. If empty a new secret will be + created from scratch + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + source: + description: The name of the server of which we need to take + a physical backup + minLength: 1 + type: string + required: + - source + type: object + recovery: + description: Bootstrap the cluster from a backup + properties: + backup: + description: |- + The backup object containing the physical base backup from which to + initiate the recovery procedure. + Mutually exclusive with `source` and `volumeSnapshots`. + properties: + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive. + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + name: + description: Name of the referent. + type: string + required: + - name + type: object + database: + description: 'Name of the database used by the application. + Default: `app`.' + type: string + owner: + description: |- + Name of the owner of the database in the instance to be used + by applications. Defaults to the value of the `database` key. + type: string + recoveryTarget: + description: |- + By default, the recovery process applies all the available + WAL files in the archive (full recovery). However, you can also + end the recovery as soon as a consistent state is reached or + recover to a point-in-time (PITR) by specifying a `RecoveryTarget` object, + as expected by PostgreSQL (i.e., timestamp, transaction Id, LSN, ...). + More info: https://www.postgresql.org/docs/current/runtime-config-wal.html#RUNTIME-CONFIG-WAL-RECOVERY-TARGET + properties: + backupID: + description: |- + The ID of the backup from which to start the recovery process. + If empty (default) the operator will automatically detect the backup + based on targetTime or targetLSN if specified. Otherwise use the + latest available backup in chronological order. + type: string + exclusive: + description: |- + Set the target to be exclusive. If omitted, defaults to false, so that + in Postgres, `recovery_target_inclusive` will be true + type: boolean + targetImmediate: + description: End recovery as soon as a consistent state + is reached + type: boolean + targetLSN: + description: The target LSN (Log Sequence Number) + type: string + targetName: + description: |- + The target name (to be previously created + with `pg_create_restore_point`) + type: string + targetTLI: + description: The target timeline ("latest" or a positive + integer) + type: string + targetTime: + description: The target time as a timestamp in the RFC3339 + standard + type: string + targetXID: + description: The target transaction ID + type: string + type: object + secret: + description: |- + Name of the secret containing the initial credentials for the + owner of the user database. If empty a new secret will be + created from scratch + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + source: + description: |- + The external cluster whose backup we will restore. This is also + used as the name of the folder under which the backup is stored, + so it must be set to the name of the source cluster + Mutually exclusive with `backup`. + type: string + volumeSnapshots: + description: |- + The static PVC data source(s) from which to initiate the + recovery procedure. Currently supporting `VolumeSnapshot` + and `PersistentVolumeClaim` resources that map an existing + PVC group, compatible with CloudNativePG, and taken with + a cold backup copy on a fenced Postgres instance (limitation + which will be removed in the future when online backup + will be implemented). + Mutually exclusive with `backup`. + properties: + storage: + description: Configuration of the storage of the instances + 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 + x-kubernetes-map-type: atomic + tablespaceStorage: + additionalProperties: + description: |- + TypedLocalObjectReference contains enough information to let you locate the + typed referenced object inside the same namespace. + 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 + x-kubernetes-map-type: atomic + description: Configuration of the storage for PostgreSQL + tablespaces + type: object + walStorage: + description: Configuration of the storage for PostgreSQL + WAL (Write-Ahead Log) + 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 + x-kubernetes-map-type: atomic + required: + - storage + type: object + type: object + type: object + certificates: + description: The configuration for the CA and related certificates + properties: + clientCASecret: + description: |- + The secret containing the Client CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate all the client certificates.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the client certificates, + used as `ssl_ca_file` of all the instances.
+ - `ca.key`: key used to generate client certificates, if ReplicationTLSSecret is provided, + this can be omitted.
+ type: string + replicationTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the client certificate to authenticate as + the `streaming_replica` user. + If not defined, ClientCASecret must provide also `ca.key`, and a new secret will be + created using the provided CA. + type: string + serverAltDNSNames: + description: The list of the server alternative DNS names to be + added to the generated server TLS certificates, when required. + items: + type: string + type: array + serverCASecret: + description: |- + The secret containing the Server CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate the TLS certificate ServerTLSSecret.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the server certificate, + used as `sslrootcert` in client connection strings.
+ - `ca.key`: key used to generate Server SSL certs, if ServerTLSSecret is provided, + this can be omitted.
+ type: string + serverTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the server TLS certificate and key that will be set as + `ssl_cert_file` and `ssl_key_file` so that clients can connect to postgres securely. + If not defined, ServerCASecret must provide also `ca.key` and a new secret will be + created using the provided CA. + type: string + type: object + description: + description: Description of this PostgreSQL cluster + type: string + enablePDB: + default: true + description: |- + Manage the `PodDisruptionBudget` resources within the cluster. When + configured as `true` (default setting), the pod disruption budgets + will safeguard the primary node from being terminated. Conversely, + setting it to `false` will result in the absence of any + `PodDisruptionBudget` resource, permitting the shutdown of all nodes + hosting the PostgreSQL cluster. This latter configuration is + advisable for any PostgreSQL cluster employed for + development/staging purposes. + type: boolean + enableSuperuserAccess: + default: false + description: |- + When this option is enabled, the operator will use the `SuperuserSecret` + to update the `postgres` user password (if the secret is + not present, the operator will automatically create one). When this + option is disabled, the operator will ignore the `SuperuserSecret` content, delete + it when automatically created, and then blank the password of the `postgres` + user by setting it to `NULL`. Disabled by default. + type: boolean + env: + description: |- + Env follows the Env format to pass environment variables + to the pods created in the cluster + items: + description: EnvVar represents an environment variable present in + a Container. + properties: + name: + description: |- + Name of the environment variable. + May consist of any printable ASCII characters except '='. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap or its key + must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + fileKeyRef: + description: |- + FileKeyRef selects a key of the env file. + Requires the EnvFiles feature gate to be enabled. + properties: + key: + description: |- + The key within the env file. An invalid key will prevent the pod from starting. + The keys defined within a source may consist of any printable ASCII characters except '='. + During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + type: string + optional: + default: false + description: |- + Specify whether the file or its key must be defined. If the file or key + does not exist, then the env var is not published. + If optional is set to true and the specified key does not exist, + the environment variable will not be set in the Pod's containers. + + If optional is set to false and the specified key does not exist, + an error will be returned during Pod creation. + type: boolean + path: + description: |- + The path within the volume from which to select the file. + Must be relative and may not contain the '..' path or start with '..'. + type: string + volumeName: + description: The name of the volume mount containing + the env file. + type: string + required: + - key + - path + - volumeName + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + envFrom: + description: |- + EnvFrom follows the EnvFrom format to pass environment variables + sources to the pods to be used by Env + items: + description: EnvFromSource represents the source of a set of ConfigMaps + or Secrets + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: |- + Optional text to prepend to the name of each environment variable. + May consist of any printable ASCII characters except '='. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + ephemeralVolumeSource: + description: EphemeralVolumeSource allows the user to configure the + source of ephemeral volumes. + properties: + 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). + + 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. + 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 + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + 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. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + 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 + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + 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 + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string or nil value indicates that no + VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + this field can be reset to its previous value (including nil) to cancel the modification. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + 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 + ephemeralVolumesSizeLimit: + description: |- + EphemeralVolumesSizeLimit allows the user to set the limits for the ephemeral + volumes + properties: + shm: + anyOf: + - type: integer + - type: string + description: Shm is the size limit of the shared memory volume + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + temporaryData: + anyOf: + - type: integer + - type: string + description: TemporaryData is the size limit of the temporary + data volume + 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 + externalClusters: + description: The list of external clusters which are used in the configuration + items: + description: |- + ExternalCluster represents the connection parameters to an + external cluster which is used in the other sections of the configuration + properties: + barmanObjectStore: + description: The configuration for the barman-cloud tool suite + properties: + azureCredentials: + description: The credentials to use to upload data to Azure + Blob Storage + properties: + connectionString: + description: The connection string to be used + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromAzureAD: + description: Use the Azure AD based authentication without + providing explicitly the keys. + type: boolean + storageAccount: + description: The storage account where to upload data + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageKey: + description: |- + The storage account key to be used in conjunction + with the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageSasToken: + description: |- + A shared-access-signature to be used in conjunction with + the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + data: + description: |- + The configuration to be used to backup the data files + When not defined, base backups files will be stored uncompressed and may + be unencrypted in the object store, according to the bucket default + policy. + properties: + additionalCommandArgs: + description: |- + AdditionalCommandArgs represents additional arguments that can be appended + to the 'barman-cloud-backup' command-line invocation. These arguments + provide flexibility to customize the backup process further according to + specific requirements or configurations. + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-backup' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + compression: + description: |- + Compress a backup file (a tar file per tablespace) while streaming it + to the object store. Available options are empty string (no + compression, default), `gzip`, `bzip2`, and `snappy`. + enum: + - bzip2 + - gzip + - snappy + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + jobs: + description: |- + The number of parallel jobs to be used to upload the backup, defaults + to 2 + format: int32 + minimum: 1 + type: integer + type: object + destinationPath: + description: |- + The path where to store the backup (i.e. s3://bucket/path/to/folder) + this path, with different destination folders, will be used for WALs + and for data + minLength: 1 + type: string + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + endpointURL: + description: |- + Endpoint to be used to upload data to the cloud, + overriding the automatic endpoint discovery + type: string + googleCredentials: + description: The credentials to use to upload data to Google + Cloud Storage + properties: + applicationCredentials: + description: The secret containing the Google Cloud + Storage JSON file with the credentials + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + gkeEnvironment: + description: |- + If set to true, will presume that it's running inside a GKE environment, + default to false. + type: boolean + type: object + historyTags: + additionalProperties: + type: string + description: |- + HistoryTags is a list of key value pairs that will be passed to the + Barman --history-tags option. + type: object + s3Credentials: + description: The credentials to use to upload data to S3 + properties: + accessKeyId: + description: The reference to the access key id + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromIAMRole: + description: Use the role based authentication without + providing explicitly the keys. + type: boolean + region: + description: The reference to the secret containing + the region name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + secretAccessKey: + description: The reference to the secret access key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + sessionToken: + description: The references to the session key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + serverName: + description: |- + The server name on S3, the cluster name is used if this + parameter is omitted + type: string + tags: + additionalProperties: + type: string + description: |- + Tags is a list of key value pairs that will be passed to the + Barman --tags option. + type: object + wal: + description: |- + The configuration for the backup of the WAL stream. + When not defined, WAL files will be stored uncompressed and may be + unencrypted in the object store, according to the bucket default policy. + properties: + archiveAdditionalCommandArgs: + description: |- + Additional arguments that can be appended to the 'barman-cloud-wal-archive' + command-line invocation. These arguments provide flexibility to customize + the WAL archive process further, according to specific requirements or configurations. + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-wal-archive' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + compression: + description: |- + Compress a WAL file before sending it to the object store. Available + options are empty string (no compression, default), `gzip`, `bzip2`, + `lz4`, `snappy`, `xz`, and `zstd`. + enum: + - bzip2 + - gzip + - lz4 + - snappy + - xz + - zstd + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + maxParallel: + description: |- + Number of WAL files to be either archived in parallel (when the + PostgreSQL instance is archiving to a backup object store) or + restored in parallel (when a PostgreSQL standby is fetching WAL + files from a recovery object store). If not specified, WAL files + will be processed one at a time. It accepts a positive integer as a + value - with 1 being the minimum accepted value. + minimum: 1 + type: integer + restoreAdditionalCommandArgs: + description: |- + Additional arguments that can be appended to the 'barman-cloud-wal-restore' + command-line invocation. These arguments provide flexibility to customize + the WAL restore process further, according to specific requirements or configurations. + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-wal-restore' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + type: object + required: + - destinationPath + type: object + connectionParameters: + additionalProperties: + type: string + description: The list of connection parameters, such as dbname, + host, username, etc + type: object + name: + description: The server name, required + type: string + password: + description: |- + The reference to the password to be used to connect to the server. + If a password is provided, CloudNativePG creates a PostgreSQL + passfile at `/controller/external/NAME/pass` (where "NAME" is the + cluster's name). This passfile is automatically referenced in the + connection string when establishing a connection to the remote + PostgreSQL server from the current PostgreSQL `Cluster`. This ensures + secure and efficient password management for external clusters. + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + plugin: + description: |- + The configuration of the plugin that is taking care + of WAL archiving and backups for this external cluster + properties: + enabled: + default: true + description: Enabled is true if this plugin will be used + type: boolean + isWALArchiver: + default: false + description: |- + Marks the plugin as the WAL archiver. At most one plugin can be + designated as a WAL archiver. This cannot be enabled if the + `.spec.backup.barmanObjectStore` configuration is present. + type: boolean + name: + description: Name is the plugin name + type: string + parameters: + additionalProperties: + type: string + description: Parameters is the configuration of the plugin + type: object + required: + - name + type: object + sslCert: + description: |- + The reference to an SSL certificate to be used to connect to this + instance + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + sslKey: + description: |- + The reference to an SSL private key to be used to connect to this + instance + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + sslRootCert: + description: |- + The reference to an SSL CA public key to be used to connect to this + instance + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + required: + - name + type: object + type: array + failoverDelay: + default: 0 + description: |- + The amount of time (in seconds) to wait before triggering a failover + after the primary PostgreSQL instance in the cluster was detected + to be unhealthy + format: int32 + type: integer + imageCatalogRef: + description: Defines the major PostgreSQL version we want to use within + an ImageCatalog + 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 + major: + description: The major version of PostgreSQL we want to use from + the ImageCatalog + type: integer + name: + description: Name is the name of resource being referenced + type: string + required: + - kind + - major + - name + type: object + x-kubernetes-map-type: atomic + x-kubernetes-validations: + - message: Only image catalogs are supported + rule: self.kind == 'ImageCatalog' || self.kind == 'ClusterImageCatalog' + - message: Only image catalogs are supported + rule: self.apiGroup == 'postgresql.cnpg.io' + imageName: + description: |- + Name of the container image, supporting both tags (`:`) + and digests for deterministic and repeatable deployments + (`:@sha256:`) + type: string + imagePullPolicy: + description: |- + Image pull policy. + One of `Always`, `Never` or `IfNotPresent`. + If not defined, it defaults to `IfNotPresent`. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + type: string + imagePullSecrets: + description: The list of pull secrets to be used to pull the images + items: + description: |- + LocalObjectReference contains enough information to let you locate a + local object with a known type inside the same namespace + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + type: array + inheritedMetadata: + description: Metadata that will be inherited by all objects related + to the Cluster + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object + instances: + default: 1 + description: Number of instances required in the cluster + minimum: 1 + type: integer + livenessProbeTimeout: + description: |- + LivenessProbeTimeout is the time (in seconds) that is allowed for a PostgreSQL instance + to successfully respond to the liveness probe (default 30). + The Liveness probe failure threshold is derived from this value using the formula: + ceiling(livenessProbe / 10). + format: int32 + type: integer + logLevel: + default: info + description: 'The instances'' log level, one of the following values: + error, warning, info (default), debug, trace' + enum: + - error + - warning + - info + - debug + - trace + type: string + managed: + description: The configuration that is used by the portions of PostgreSQL + that are managed by the instance manager + properties: + roles: + description: Database roles managed by the `Cluster` + items: + description: |- + RoleConfiguration is the representation, in Kubernetes, of a PostgreSQL role + with the additional field Ensure specifying whether to ensure the presence or + absence of the role in the database + + The defaults of the CREATE ROLE command are applied + Reference: https://www.postgresql.org/docs/current/sql-createrole.html + properties: + bypassrls: + description: |- + Whether a role bypasses every row-level security (RLS) policy. + Default is `false`. + type: boolean + comment: + description: Description of the role + type: string + connectionLimit: + default: -1 + description: |- + If the role can log in, this specifies how many concurrent + connections the role can make. `-1` (the default) means no limit. + format: int64 + type: integer + createdb: + description: |- + When set to `true`, the role being defined will be allowed to create + new databases. Specifying `false` (default) will deny a role the + ability to create databases. + type: boolean + createrole: + description: |- + Whether the role will be permitted to create, alter, drop, comment + on, change the security label for, and grant or revoke membership in + other roles. Default is `false`. + type: boolean + disablePassword: + description: DisablePassword indicates that a role's password + should be set to NULL in Postgres + type: boolean + ensure: + default: present + description: Ensure the role is `present` or `absent` - + defaults to "present" + enum: + - present + - absent + type: string + inRoles: + description: |- + List of one or more existing roles to which this role will be + immediately added as a new member. Default empty. + items: + type: string + type: array + inherit: + default: true + description: |- + Whether a role "inherits" the privileges of roles it is a member of. + Defaults is `true`. + type: boolean + login: + description: |- + Whether the role is allowed to log in. A role having the `login` + attribute can be thought of as a user. Roles without this attribute + are useful for managing database privileges, but are not users in + the usual sense of the word. Default is `false`. + type: boolean + name: + description: Name of the role + type: string + passwordSecret: + description: |- + Secret containing the password of the role (if present) + If null, the password will be ignored unless DisablePassword is set + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + replication: + description: |- + Whether a role is a replication role. A role must have this + attribute (or be a superuser) in order to be able to connect to the + server in replication mode (physical or logical replication) and in + order to be able to create or drop replication slots. A role having + the `replication` attribute is a very highly privileged role, and + should only be used on roles actually used for replication. Default + is `false`. + type: boolean + superuser: + description: |- + Whether the role is a `superuser` who can override all access + restrictions within the database - superuser status is dangerous and + should be used only when really needed. You must yourself be a + superuser to create a new superuser. Defaults is `false`. + type: boolean + validUntil: + description: |- + Date and time after which the role's password is no longer valid. + When omitted, the password will never expire (default). + format: date-time + type: string + required: + - name + type: object + type: array + services: + description: Services roles managed by the `Cluster` + properties: + additional: + description: Additional is a list of additional managed services + specified by the user. + items: + description: |- + ManagedService represents a specific service managed by the cluster. + It includes the type of service and its associated template specification. + properties: + selectorType: + description: |- + SelectorType specifies the type of selectors that the service will have. + Valid values are "rw", "r", and "ro", representing read-write, read, and read-only services. + enum: + - rw + - r + - ro + type: string + serviceTemplate: + description: ServiceTemplate is the template specification + for the service. + properties: + metadata: + description: |- + Standard object's metadata. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + properties: + annotations: + additionalProperties: + type: string + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. They are not + queryable and should be preserved when modifying objects. + More info: http://kubernetes.io/docs/user-guide/annotations + type: object + labels: + additionalProperties: + type: string + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. May match selectors of replication controllers + and services. + More info: http://kubernetes.io/docs/user-guide/labels + type: object + name: + description: The name of the resource. Only + supported for certain types + type: string + type: object + spec: + description: |- + Specification of the desired behavior of the service. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + allocateLoadBalancerNodePorts: + description: |- + allocateLoadBalancerNodePorts defines if NodePorts will be automatically + allocated for services with type LoadBalancer. Default is "true". It + may be set to "false" if the cluster load-balancer does not rely on + NodePorts. If the caller requests specific NodePorts (by specifying a + value), those requests will be respected, regardless of this field. + This field may only be set for services with type LoadBalancer and will + be cleared if the type is changed to any other type. + type: boolean + clusterIP: + description: |- + clusterIP is the IP address of the service and is usually assigned + randomly. If an address is specified manually, is in-range (as per + system configuration), and is not in use, it will be allocated to the + service; otherwise creation of the service will fail. This field may not + be changed through updates unless the type field is also being changed + to ExternalName (which requires this field to be blank) or the type + field is being changed from ExternalName (in which case this field may + optionally be specified, as describe above). Valid values are "None", + empty string (""), or a valid IP address. Setting this to "None" makes a + "headless service" (no virtual IP), which is useful when direct endpoint + connections are preferred and proxying is not required. Only applies to + types ClusterIP, NodePort, and LoadBalancer. If this field is specified + when creating a Service of type ExternalName, creation will fail. This + field will be wiped when updating a Service to type ExternalName. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + type: string + clusterIPs: + description: |- + ClusterIPs is a list of IP addresses assigned to this service, and are + usually assigned randomly. If an address is specified manually, is + in-range (as per system configuration), and is not in use, it will be + allocated to the service; otherwise creation of the service will fail. + This field may not be changed through updates unless the type field is + also being changed to ExternalName (which requires this field to be + empty) or the type field is being changed from ExternalName (in which + case this field may optionally be specified, as describe above). Valid + values are "None", empty string (""), or a valid IP address. Setting + this to "None" makes a "headless service" (no virtual IP), which is + useful when direct endpoint connections are preferred and proxying is + not required. Only applies to types ClusterIP, NodePort, and + LoadBalancer. If this field is specified when creating a Service of type + ExternalName, creation will fail. This field will be wiped when updating + a Service to type ExternalName. If this field is not specified, it will + be initialized from the clusterIP field. If this field is specified, + clients must ensure that clusterIPs[0] and clusterIP have the same + value. + + This field may hold a maximum of two entries (dual-stack IPs, in either order). + These IPs must correspond to the values of the ipFamilies field. Both + clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + items: + type: string + type: array + x-kubernetes-list-type: atomic + externalIPs: + description: |- + externalIPs is a list of IP addresses for which nodes in the cluster + will also accept traffic for this service. These IPs are not managed by + Kubernetes. The user is responsible for ensuring that traffic arrives + at a node with this IP. A common example is external load-balancers + that are not part of the Kubernetes system. + items: + type: string + type: array + x-kubernetes-list-type: atomic + externalName: + description: |- + externalName is the external reference that discovery mechanisms will + return as an alias for this service (e.g. a DNS CNAME record). No + proxying will be involved. Must be a lowercase RFC-1123 hostname + (https://tools.ietf.org/html/rfc1123) and requires `type` to be "ExternalName". + type: string + externalTrafficPolicy: + description: |- + externalTrafficPolicy describes how nodes distribute service traffic they + receive on one of the Service's "externally-facing" addresses (NodePorts, + ExternalIPs, and LoadBalancer IPs). If set to "Local", the proxy will configure + the service in a way that assumes that external load balancers will take care + of balancing the service traffic between nodes, and so each node will deliver + traffic only to the node-local endpoints of the service, without masquerading + the client source IP. (Traffic mistakenly sent to a node with no endpoints will + be dropped.) The default value, "Cluster", uses the standard behavior of + routing to all endpoints evenly (possibly modified by topology and other + features). Note that traffic sent to an External IP or LoadBalancer IP from + within the cluster will always get "Cluster" semantics, but clients sending to + a NodePort from within the cluster may need to take traffic policy into account + when picking a node. + type: string + healthCheckNodePort: + description: |- + healthCheckNodePort specifies the healthcheck nodePort for the service. + This only applies when type is set to LoadBalancer and + externalTrafficPolicy is set to Local. If a value is specified, is + in-range, and is not in use, it will be used. If not specified, a value + will be automatically allocated. External systems (e.g. load-balancers) + can use this port to determine if a given node holds endpoints for this + service or not. If this field is specified when creating a Service + which does not need it, creation will fail. This field will be wiped + when updating a Service to no longer need it (e.g. changing type). + This field cannot be updated once set. + format: int32 + type: integer + internalTrafficPolicy: + description: |- + InternalTrafficPolicy describes how nodes distribute service traffic they + receive on the ClusterIP. If set to "Local", the proxy will assume that pods + only want to talk to endpoints of the service on the same node as the pod, + dropping the traffic if there are no local endpoints. The default value, + "Cluster", uses the standard behavior of routing to all endpoints evenly + (possibly modified by topology and other features). + type: string + ipFamilies: + description: |- + IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this + service. This field is usually assigned automatically based on cluster + configuration and the ipFamilyPolicy field. If this field is specified + manually, the requested family is available in the cluster, + and ipFamilyPolicy allows it, it will be used; otherwise creation of + the service will fail. This field is conditionally mutable: it allows + for adding or removing a secondary IP family, but it does not allow + changing the primary IP family of the Service. Valid values are "IPv4" + and "IPv6". This field only applies to Services of types ClusterIP, + NodePort, and LoadBalancer, and does apply to "headless" services. + This field will be wiped when updating a Service to type ExternalName. + + This field may hold a maximum of two entries (dual-stack families, in + either order). These families must correspond to the values of the + clusterIPs field, if specified. Both clusterIPs and ipFamilies are + governed by the ipFamilyPolicy field. + items: + description: |- + IPFamily represents the IP Family (IPv4 or IPv6). This type is used + to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies). + type: string + type: array + x-kubernetes-list-type: atomic + ipFamilyPolicy: + description: |- + IPFamilyPolicy represents the dual-stack-ness requested or required by + this Service. If there is no value provided, then this field will be set + to SingleStack. Services can be "SingleStack" (a single IP family), + "PreferDualStack" (two IP families on dual-stack configured clusters or + a single IP family on single-stack clusters), or "RequireDualStack" + (two IP families on dual-stack configured clusters, otherwise fail). The + ipFamilies and clusterIPs fields depend on the value of this field. This + field will be wiped when updating a service to type ExternalName. + type: string + loadBalancerClass: + description: |- + loadBalancerClass is the class of the load balancer implementation this Service belongs to. + If specified, the value of this field must be a label-style identifier, with an optional prefix, + e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users. + This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load + balancer implementation is used, today this is typically done through the cloud provider integration, + but should apply for any default implementation. If set, it is assumed that a load balancer + implementation is watching for Services with a matching class. Any default load balancer + implementation (e.g. cloud providers) should ignore Services that set this field. + This field can only be set when creating or updating a Service to type 'LoadBalancer'. + Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type. + type: string + loadBalancerIP: + description: |- + Only applies to Service Type: LoadBalancer. + This feature depends on whether the underlying cloud-provider supports specifying + the loadBalancerIP when a load balancer is created. + This field will be ignored if the cloud-provider does not support the feature. + Deprecated: This field was under-specified and its meaning varies across implementations. + Using it is non-portable and it may not support dual-stack. + Users are encouraged to use implementation-specific annotations when available. + type: string + loadBalancerSourceRanges: + description: |- + If specified and supported by the platform, this will restrict traffic through the cloud-provider + load-balancer will be restricted to the specified client IPs. This field will be ignored if the + cloud-provider does not support the feature." + More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/ + items: + type: string + type: array + x-kubernetes-list-type: atomic + ports: + description: |- + The list of ports that are exposed by this service. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + items: + description: ServicePort contains information + on service's port. + properties: + appProtocol: + description: |- + The application protocol for this port. + This is used as a hint for implementations to offer richer behavior for protocols that they understand. + This field follows standard Kubernetes label syntax. + Valid values are either: + + * Un-prefixed protocol names - reserved for IANA standard service names (as per + RFC-6335 and https://www.iana.org/assignments/service-names). + + * Kubernetes-defined prefixed names: + * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior- + * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + + * Other protocols should use implementation-defined prefixed names such as + mycompany.com/my-custom-protocol. + type: string + name: + description: |- + The name of this port within the service. This must be a DNS_LABEL. + All ports within a ServiceSpec must have unique names. When considering + the endpoints for a Service, this must match the 'name' field in the + EndpointPort. + Optional if only one ServicePort is defined on this service. + type: string + nodePort: + description: |- + The port on each node on which this service is exposed when type is + NodePort or LoadBalancer. Usually assigned by the system. If a value is + specified, in-range, and not in use it will be used, otherwise the + operation will fail. If not specified, a port will be allocated if this + Service requires one. If this field is specified when creating a + Service which does not need it, creation will fail. This field will be + wiped when updating a Service to no longer need it (e.g. changing type + from NodePort to ClusterIP). + More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + format: int32 + type: integer + port: + description: The port that will be exposed + by this service. + format: int32 + type: integer + protocol: + default: TCP + description: |- + The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". + Default is TCP. + type: string + targetPort: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the pods targeted by the service. + Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + If this is a string, it will be looked up as a named port in the + target Pod's container ports. If this is not specified, the value + of the 'port' field is used (an identity map). + This field is ignored for services with clusterIP=None, and should be + omitted or set equal to the 'port' field. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service + x-kubernetes-int-or-string: true + required: + - port + type: object + type: array + x-kubernetes-list-map-keys: + - port + - protocol + x-kubernetes-list-type: map + publishNotReadyAddresses: + description: |- + publishNotReadyAddresses indicates that any agent which deals with endpoints for this + Service should disregard any indications of ready/not-ready. + The primary use case for setting this field is for a StatefulSet's Headless Service to + propagate SRV DNS records for its Pods for the purpose of peer discovery. + The Kubernetes controllers that generate Endpoints and EndpointSlice resources for + Services interpret this to mean that all endpoints are considered "ready" even if the + Pods themselves are not. Agents which consume only Kubernetes generated endpoints + through the Endpoints or EndpointSlice resources can safely assume this behavior. + type: boolean + selector: + additionalProperties: + type: string + description: |- + Route service traffic to pods with label keys and values matching this + selector. If empty or not present, the service is assumed to have an + external process managing its endpoints, which Kubernetes will not + modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + Ignored if type is ExternalName. + More info: https://kubernetes.io/docs/concepts/services-networking/service/ + type: object + x-kubernetes-map-type: atomic + sessionAffinity: + description: |- + Supports "ClientIP" and "None". Used to maintain session affinity. + Enable client IP based session affinity. + Must be ClientIP or None. + Defaults to None. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + type: string + sessionAffinityConfig: + description: sessionAffinityConfig contains + the configurations of session affinity. + properties: + clientIP: + description: clientIP contains the configurations + of Client IP based session affinity. + properties: + timeoutSeconds: + description: |- + timeoutSeconds specifies the seconds of ClientIP type session sticky time. + The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". + Default value is 10800(for 3 hours). + format: int32 + type: integer + type: object + type: object + trafficDistribution: + description: |- + TrafficDistribution offers a way to express preferences for how traffic + is distributed to Service endpoints. Implementations can use this field + as a hint, but are not required to guarantee strict adherence. If the + field is not set, the implementation will apply its default routing + strategy. If set to "PreferClose", implementations should prioritize + endpoints that are in the same zone. + type: string + type: + description: |- + type determines how the Service is exposed. Defaults to ClusterIP. Valid + options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + "ClusterIP" allocates a cluster-internal IP address for load-balancing + to endpoints. Endpoints are determined by the selector or if that is not + specified, by manual construction of an Endpoints object or + EndpointSlice objects. If clusterIP is "None", no virtual IP is + allocated and the endpoints are published as a set of endpoints rather + than a virtual IP. + "NodePort" builds on ClusterIP and allocates a port on every node which + routes to the same endpoints as the clusterIP. + "LoadBalancer" builds on NodePort and creates an external load-balancer + (if supported in the current cloud) which routes to the same endpoints + as the clusterIP. + "ExternalName" aliases this service to the specified externalName. + Several other fields do not apply to ExternalName services. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + type: string + type: object + type: object + updateStrategy: + default: patch + description: UpdateStrategy describes how the service + differences should be reconciled + enum: + - patch + - replace + type: string + required: + - selectorType + - serviceTemplate + type: object + type: array + disabledDefaultServices: + description: |- + DisabledDefaultServices is a list of service types that are disabled by default. + Valid values are "r", and "ro", representing read, and read-only services. + items: + description: |- + ServiceSelectorType describes a valid value for generating the service selectors. + It indicates which type of service the selector applies to, such as read-write, read, or read-only + enum: + - rw + - r + - ro + type: string + type: array + type: object + type: object + maxSyncReplicas: + default: 0 + description: |- + The target value for the synchronous replication quorum, that can be + decreased if the number of ready standbys is lower than this. + Undefined or 0 disable synchronous replication. + minimum: 0 + type: integer + minSyncReplicas: + default: 0 + description: |- + Minimum number of instances required in synchronous replication with the + primary. Undefined or 0 allow writes to complete when no standby is + available. + minimum: 0 + type: integer + monitoring: + description: The configuration of the monitoring infrastructure of + this cluster + properties: + customQueriesConfigMap: + description: The list of config maps containing the custom queries + items: + description: |- + ConfigMapKeySelector contains enough information to let you locate + the key of a ConfigMap + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + customQueriesSecret: + description: The list of secrets containing the custom queries + items: + description: |- + SecretKeySelector contains enough information to let you locate + the key of a Secret + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + disableDefaultQueries: + default: false + description: |- + Whether the default queries should be injected. + Set it to `true` if you don't want to inject default queries into the cluster. + Default: false. + type: boolean + enablePodMonitor: + default: false + description: |- + Enable or disable the `PodMonitor` + + Deprecated: This feature will be removed in an upcoming release. If + you need this functionality, you can create a PodMonitor manually. + type: boolean + metricsQueriesTTL: + description: |- + The interval during which metrics computed from queries are considered current. + Once it is exceeded, a new scrape will trigger a rerun + of the queries. + If not set, defaults to 30 seconds, in line with Prometheus scraping defaults. + Setting this to zero disables the caching mechanism and can cause heavy load on the PostgreSQL server. + type: string + podMonitorMetricRelabelings: + description: |- + The list of metric relabelings for the `PodMonitor`. Applied to samples before ingestion. + + Deprecated: This feature will be removed in an upcoming release. If + you need this functionality, you can create a PodMonitor manually. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + action to perform based on the regex matching. + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + modulus to take of the hash of the source label values. + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: regex defines the regular expression against + which the extracted value is matched. + type: string + replacement: + description: |- + replacement value against which a Replace action is performed if the + regular expression matches. + + Regex capture groups are available. + type: string + separator: + description: separator defines the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + sourceLabels defines the source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name. + For Prometheus 3.x, a label name is valid if it contains UTF-8 characters. + For Prometheus 2.x, a label name is only valid if it contains ASCII characters, letters, numbers, as well as underscores. + type: string + type: array + targetLabel: + description: |- + targetLabel defines the label to which the resulting string is written in a replacement. + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + Regex capture groups are available. + type: string + type: object + type: array + podMonitorRelabelings: + description: |- + The list of relabelings for the `PodMonitor`. Applied to samples before scraping. + + Deprecated: This feature will be removed in an upcoming release. If + you need this functionality, you can create a PodMonitor manually. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + action to perform based on the regex matching. + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + modulus to take of the hash of the source label values. + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: regex defines the regular expression against + which the extracted value is matched. + type: string + replacement: + description: |- + replacement value against which a Replace action is performed if the + regular expression matches. + + Regex capture groups are available. + type: string + separator: + description: separator defines the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + sourceLabels defines the source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name. + For Prometheus 3.x, a label name is valid if it contains UTF-8 characters. + For Prometheus 2.x, a label name is only valid if it contains ASCII characters, letters, numbers, as well as underscores. + type: string + type: array + targetLabel: + description: |- + targetLabel defines the label to which the resulting string is written in a replacement. + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + Regex capture groups are available. + type: string + type: object + type: array + tls: + description: |- + Configure TLS communication for the metrics endpoint. + Changing tls.enabled option will force a rollout of all instances. + properties: + enabled: + default: false + description: |- + Enable TLS for the monitoring endpoint. + Changing this option will force a rollout of all instances. + type: boolean + type: object + type: object + nodeMaintenanceWindow: + description: Define a maintenance window for the Kubernetes nodes + properties: + inProgress: + default: false + description: Is there a node maintenance activity in progress? + type: boolean + reusePVC: + default: true + description: |- + Reuse the existing PVC (wait for the node to come + up again) or not (recreate it elsewhere - when `instances` >1) + type: boolean + type: object + plugins: + description: |- + The plugins configuration, containing + any plugin to be loaded with the corresponding configuration + items: + description: |- + PluginConfiguration specifies a plugin that need to be loaded for this + cluster to be reconciled + properties: + enabled: + default: true + description: Enabled is true if this plugin will be used + type: boolean + isWALArchiver: + default: false + description: |- + Marks the plugin as the WAL archiver. At most one plugin can be + designated as a WAL archiver. This cannot be enabled if the + `.spec.backup.barmanObjectStore` configuration is present. + type: boolean + name: + description: Name is the plugin name + type: string + parameters: + additionalProperties: + type: string + description: Parameters is the configuration of the plugin + type: object + required: + - name + type: object + type: array + podSecurityContext: + description: |- + Override the PodSecurityContext applied to every Pod of the cluster. + When set, this overrides the operator's default PodSecurityContext for the cluster. + If omitted, the operator defaults are used. + This field doesn't have any effect if SecurityContextConstraints are present. + properties: + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by the containers in this pod. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + 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: + + 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. + Note that this field cannot be set when spec.os.name is windows. + 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, "Always" is used. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + seLinuxChangePolicy: + description: |- + seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod. + It has no effect on nodes that do not support SELinux or to volumes does not support SELinux. + Valid values are "MountOption" and "Recursive". + + "Recursive" means relabeling of all files on all Pod volumes by the container runtime. + This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node. + + "MountOption" mounts all eligible Pod volumes with `-o context` mount option. + This requires all Pods that share the same volume to use the same SELinux label. + It is not possible to share the same volume among privileged and unprivileged Pods. + Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes + whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their + CSIDriver instance. Other volumes are always re-labelled recursively. + "MountOption" value is allowed only when SELinuxMount feature gate is enabled. + + If not specified and SELinuxMount feature gate is enabled, "MountOption" is used. + If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes + and "Recursive" for all other volumes. + + This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers. + + All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state. + Note that this field cannot be set when spec.os.name is windows. + type: string + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + 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. + 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 and fsGroup (if specified). If + the SupplementalGroupsPolicy feature is enabled, the + supplementalGroupsPolicy field determines whether these are in addition + to or instead of any group memberships defined in the container image. + If unspecified, no additional groups are added, though group memberships + defined in the container image may still be used, depending on the + supplementalGroupsPolicy field. + Note that this field cannot be set when spec.os.name is windows. + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + supplementalGroupsPolicy: + description: |- + Defines how supplemental groups of the first container processes are calculated. + Valid values are "Merge" and "Strict". If not specified, "Merge" is used. + (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled + and the container runtime must implement support for this feature. + Note that this field cannot be set when spec.os.name is windows. + type: string + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 + x-kubernetes-list-type: atomic + 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. + Note that this field cannot be set when spec.os.name is linux. + 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 + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + 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 + postgresGID: + default: 26 + description: The GID of the `postgres` user inside the image, defaults + to `26` + format: int64 + type: integer + postgresUID: + default: 26 + description: The UID of the `postgres` user inside the image, defaults + to `26` + format: int64 + type: integer + postgresql: + description: Configuration of the PostgreSQL server + properties: + enableAlterSystem: + description: |- + If this parameter is true, the user will be able to invoke `ALTER SYSTEM` + on this CloudNativePG Cluster. + This should only be used for debugging and troubleshooting. + Defaults to false. + type: boolean + extensions: + description: The configuration of the extensions to be added + items: + description: |- + ExtensionConfiguration is the configuration used to add + PostgreSQL extensions to the Cluster. + properties: + dynamic_library_path: + description: |- + The list of directories inside the image which should be added to dynamic_library_path. + If not defined, defaults to "/lib". + items: + type: string + type: array + extension_control_path: + description: |- + The list of directories inside the image which should be added to extension_control_path. + If not defined, defaults to "/share". + items: + type: string + type: array + image: + description: The image containing the extension, required + properties: + pullPolicy: + description: |- + Policy for pulling OCI objects. Possible values are: + Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + type: string + reference: + description: |- + Required: Image or artifact reference to be used. + Behaves in the same way as pod.spec.containers[*].image. + Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. + 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 + type: object + x-kubernetes-validations: + - message: An image reference is required + rule: has(self.reference) + ld_library_path: + description: The list of directories inside the image which + should be added to ld_library_path. + items: + type: string + type: array + name: + description: The name of the extension, required + minLength: 1 + pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ + type: string + required: + - image + - name + type: object + type: array + ldap: + description: Options to specify LDAP configuration + properties: + bindAsAuth: + description: Bind as authentication configuration + properties: + prefix: + description: Prefix for the bind authentication option + type: string + suffix: + description: Suffix for the bind authentication option + type: string + type: object + bindSearchAuth: + description: Bind+Search authentication configuration + properties: + baseDN: + description: Root DN to begin the user search + type: string + bindDN: + description: DN of the user to bind to the directory + type: string + bindPassword: + description: Secret with the password for the user to + bind to the directory + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret or its key + must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + searchAttribute: + description: Attribute to match against the username + type: string + searchFilter: + description: Search filter to use when doing the search+bind + authentication + type: string + type: object + port: + description: LDAP server port + type: integer + scheme: + description: LDAP schema to be used, possible options are + `ldap` and `ldaps` + enum: + - ldap + - ldaps + type: string + server: + description: LDAP hostname or IP address + type: string + tls: + description: Set to 'true' to enable LDAP over TLS. 'false' + is default + type: boolean + type: object + parameters: + additionalProperties: + type: string + description: PostgreSQL configuration options (postgresql.conf) + type: object + pg_hba: + description: |- + PostgreSQL Host Based Authentication rules (lines to be appended + to the pg_hba.conf file) + items: + type: string + type: array + pg_ident: + description: |- + PostgreSQL User Name Maps rules (lines to be appended + to the pg_ident.conf file) + items: + type: string + type: array + promotionTimeout: + description: |- + Specifies the maximum number of seconds to wait when promoting an instance to primary. + Default value is 40000000, greater than one year in seconds, + big enough to simulate an infinite timeout + format: int32 + type: integer + shared_preload_libraries: + description: Lists of shared preload libraries to add to the default + ones + items: + type: string + type: array + syncReplicaElectionConstraint: + description: |- + Requirements to be met by sync replicas. This will affect how the "synchronous_standby_names" parameter will be + set up. + properties: + enabled: + description: This flag enables the constraints for sync replicas + type: boolean + nodeLabelsAntiAffinity: + description: A list of node labels values to extract and compare + to evaluate if the pods reside in the same topology or not + items: + type: string + type: array + required: + - enabled + type: object + synchronous: + description: Configuration of the PostgreSQL synchronous replication + feature + properties: + dataDurability: + description: |- + If set to "required", data durability is strictly enforced. Write operations + with synchronous commit settings (`on`, `remote_write`, or `remote_apply`) will + block if there are insufficient healthy replicas, ensuring data persistence. + If set to "preferred", data durability is maintained when healthy replicas + are available, but the required number of instances will adjust dynamically + if replicas become unavailable. This setting relaxes strict durability enforcement + to allow for operational continuity. This setting is only applicable if both + `standbyNamesPre` and `standbyNamesPost` are unset (empty). + enum: + - required + - preferred + type: string + failoverQuorum: + description: |- + FailoverQuorum enables a quorum-based check before failover, improving + data durability and safety during failover events in CloudNativePG-managed + PostgreSQL clusters. + type: boolean + maxStandbyNamesFromCluster: + description: |- + Specifies the maximum number of local cluster pods that can be + automatically included in the `synchronous_standby_names` option in + PostgreSQL. + type: integer + method: + description: |- + Method to select synchronous replication standbys from the listed + servers, accepting 'any' (quorum-based synchronous replication) or + 'first' (priority-based synchronous replication) as values. + enum: + - any + - first + type: string + number: + description: |- + Specifies the number of synchronous standby servers that + transactions must wait for responses from. + type: integer + x-kubernetes-validations: + - message: The number of synchronous replicas should be greater + than zero + rule: self > 0 + standbyNamesPost: + description: |- + A user-defined list of application names to be added to + `synchronous_standby_names` after local cluster pods (the order is + only useful for priority-based synchronous replication). + items: + type: string + type: array + standbyNamesPre: + description: |- + A user-defined list of application names to be added to + `synchronous_standby_names` before local cluster pods (the order is + only useful for priority-based synchronous replication). + items: + type: string + type: array + required: + - method + - number + type: object + x-kubernetes-validations: + - message: dataDurability set to 'preferred' requires empty 'standbyNamesPre' + and empty 'standbyNamesPost' + rule: self.dataDurability!='preferred' || ((!has(self.standbyNamesPre) + || self.standbyNamesPre.size()==0) && (!has(self.standbyNamesPost) + || self.standbyNamesPost.size()==0)) + type: object + primaryUpdateMethod: + default: restart + description: |- + Method to follow to upgrade the primary server during a rolling + update procedure, after all replicas have been successfully updated: + it can be with a switchover (`switchover`) or in-place (`restart` - default). + Note: when using `switchover`, the operator will reject updates that change both + the image name and PostgreSQL configuration parameters simultaneously to avoid + configuration mismatches during the switchover process. + enum: + - switchover + - restart + type: string + primaryUpdateStrategy: + default: unsupervised + description: |- + Deployment strategy to follow to upgrade the primary server during a rolling + update procedure, after all replicas have been successfully updated: + it can be automated (`unsupervised` - default) or manual (`supervised`) + enum: + - unsupervised + - supervised + type: string + priorityClassName: + description: |- + Name of the priority class which will be used in every generated Pod, if the PriorityClass + specified does not exist, the pod will not be able to schedule. Please refer to + https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass + for more information + type: string + probes: + description: |- + The configuration of the probes to be injected + in the PostgreSQL Pods. + properties: + liveness: + description: The liveness probe configuration + properties: + 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 + 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 + isolationCheck: + description: |- + Configure the feature that extends the liveness probe for a primary + instance. In addition to the basic checks, this verifies whether the + primary is isolated from the Kubernetes API server and from its + replicas, ensuring that it can be safely shut down if network + partition or API unavailability is detected. Enabled by default. + properties: + connectionTimeout: + default: 1000 + description: Timeout in milliseconds for connections during + the primary isolation check + type: integer + enabled: + default: true + description: Whether primary isolation checking is enabled + for the liveness probe + type: boolean + requestTimeout: + default: 1000 + description: Timeout in milliseconds for requests during + the primary isolation check + type: integer + type: object + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 + readiness: + description: The readiness probe configuration + properties: + 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 + 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 + maximumLag: + anyOf: + - type: integer + - type: string + description: Lag limit. Used only for `streaming` strategy + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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: + description: The probe strategy + enum: + - pg_isready + - streaming + - query + type: string + type: object + startup: + description: The startup probe configuration + properties: + 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 + 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 + maximumLag: + anyOf: + - type: integer + - type: string + description: Lag limit. Used only for `streaming` strategy + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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: + description: The probe strategy + enum: + - pg_isready + - streaming + - query + type: string + type: object + type: object + projectedVolumeTemplate: + description: |- + Template to be used to define projected volumes, projected volumes will be mounted + under `/projected` base folder + properties: + defaultMode: + description: |- + defaultMode are the 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: |- + sources is the list of volume projections. Each entry in this list + handles one source. + items: + description: |- + Projection that may be projected along with other supported volume types. + Exactly one of these fields must be set. + properties: + clusterTrustBundle: + description: |- + ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + of ClusterTrustBundle objects in an auto-updating file. + + Alpha, gated by the ClusterTrustBundleProjection feature gate. + + ClusterTrustBundle objects can either be selected by name, or by the + combination of signer name and a label selector. + + Kubelet performs aggressive normalization of the PEM contents written + into the pod filesystem. Esoteric PEM features such as inter-block + comments and block headers are stripped. Certificates are deduplicated. + The ordering of certificates within the file is arbitrary, and Kubelet + may change the order over time. + properties: + labelSelector: + description: |- + Select all ClusterTrustBundles that match this label selector. Only has + effect if signerName is set. Mutually-exclusive with name. If unset, + interpreted as "match nothing". If set but empty, interpreted as "match + everything". + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + name: + description: |- + Select a single ClusterTrustBundle by object name. Mutually-exclusive + with signerName and labelSelector. + type: string + optional: + description: |- + If true, don't block pod startup if the referenced ClusterTrustBundle(s) + aren't available. If using name, then the named ClusterTrustBundle is + allowed not to exist. If using signerName, then the combination of + signerName and labelSelector is allowed to match zero + ClusterTrustBundles. + type: boolean + path: + description: Relative path from the volume root to write + the bundle. + type: string + signerName: + description: |- + Select all ClusterTrustBundles that match this signer name. + Mutually-exclusive with name. The contents of all selected + ClusterTrustBundles will be unified and deduplicated. + type: string + required: + - path + type: object + configMap: + description: configMap information about the configMap data + to project + properties: + items: + description: |- + items 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: key is the key to project. + type: string + mode: + description: |- + mode is 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: |- + path is 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 + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: optional specify whether the ConfigMap + or its keys must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI 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, namespace + and uid 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 + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podCertificate: + description: |- + Projects an auto-rotating credential bundle (private key and certificate + chain) that the pod can use either as a TLS client or server. + + Kubelet generates a private key and uses it to send a + PodCertificateRequest to the named signer. Once the signer approves the + request and issues a certificate chain, Kubelet writes the key and + certificate chain to the pod filesystem. The pod does not start until + certificates have been issued for each podCertificate projected volume + source in its spec. + + Kubelet will begin trying to rotate the certificate at the time indicated + by the signer using the PodCertificateRequest.Status.BeginRefreshAt + timestamp. + + Kubelet can write a single file, indicated by the credentialBundlePath + field, or separate files, indicated by the keyPath and + certificateChainPath fields. + + The credential bundle is a single file in PEM format. The first PEM + entry is the private key (in PKCS#8 format), and the remaining PEM + entries are the certificate chain issued by the signer (typically, + signers will return their certificate chain in leaf-to-root order). + + Prefer using the credential bundle format, since your application code + can read it atomically. If you use keyPath and certificateChainPath, + your application must make two separate file reads. If these coincide + with a certificate rotation, it is possible that the private key and leaf + certificate you read may not correspond to each other. Your application + will need to check for this condition, and re-read until they are + consistent. + + The named signer controls chooses the format of the certificate it + issues; consult the signer implementation's documentation to learn how to + use the certificates it issues. + properties: + certificateChainPath: + description: |- + Write the certificate chain at this path in the projected volume. + + Most applications should use credentialBundlePath. When using keyPath + and certificateChainPath, your application needs to check that the key + and leaf certificate are consistent, because it is possible to read the + files mid-rotation. + type: string + credentialBundlePath: + description: |- + Write the credential bundle at this path in the projected volume. + + The credential bundle is a single file that contains multiple PEM blocks. + The first PEM block is a PRIVATE KEY block, containing a PKCS#8 private + key. + + The remaining blocks are CERTIFICATE blocks, containing the issued + certificate chain from the signer (leaf and any intermediates). + + Using credentialBundlePath lets your Pod's application code make a single + atomic read that retrieves a consistent key and certificate chain. If you + project them to separate files, your application code will need to + additionally check that the leaf certificate was issued to the key. + type: string + keyPath: + description: |- + Write the key at this path in the projected volume. + + Most applications should use credentialBundlePath. When using keyPath + and certificateChainPath, your application needs to check that the key + and leaf certificate are consistent, because it is possible to read the + files mid-rotation. + type: string + keyType: + description: |- + The type of keypair Kubelet will generate for the pod. + + Valid values are "RSA3072", "RSA4096", "ECDSAP256", "ECDSAP384", + "ECDSAP521", and "ED25519". + type: string + maxExpirationSeconds: + description: |- + maxExpirationSeconds is the maximum lifetime permitted for the + certificate. + + Kubelet copies this value verbatim into the PodCertificateRequests it + generates for this projection. + + If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver + will reject values shorter than 3600 (1 hour). The maximum allowable + value is 7862400 (91 days). + + The signer implementation is then free to issue a certificate with any + lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 + seconds (1 hour). This constraint is enforced by kube-apiserver. + `kubernetes.io` signers will never issue certificates with a lifetime + longer than 24 hours. + format: int32 + type: integer + signerName: + description: Kubelet's generated CSRs will be addressed + to this signer. + type: string + required: + - keyType + - signerName + type: object + secret: + description: secret information about the secret data to + project + properties: + items: + description: |- + items 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: key is the key to project. + type: string + mode: + description: |- + mode is 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: |- + path is 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 + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: optional field specify whether the Secret + or its key must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is 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 + x-kubernetes-list-type: atomic + type: object + replica: + description: Replica cluster configuration + properties: + enabled: + description: |- + If replica mode is enabled, this cluster will be a replica of an + existing cluster. Replica cluster can be created from a recovery + object store or via streaming through pg_basebackup. + Refer to the Replica clusters page of the documentation for more information. + type: boolean + minApplyDelay: + description: |- + When replica mode is enabled, this parameter allows you to replay + transactions only when the system time is at least the configured + time past the commit time. This provides an opportunity to correct + data loss errors. Note that when this parameter is set, a promotion + token cannot be used. + type: string + primary: + description: |- + Primary defines which Cluster is defined to be the primary in the distributed PostgreSQL cluster, based on the + topology specified in externalClusters + type: string + promotionToken: + description: |- + A demotion token generated by an external cluster used to + check if the promotion requirements are met. + type: string + self: + description: |- + Self defines the name of this cluster. It is used to determine if this is a primary + or a replica cluster, comparing it with `primary` + type: string + source: + description: The name of the external cluster which is the replication + origin + minLength: 1 + type: string + required: + - source + type: object + replicationSlots: + default: + highAvailability: + enabled: true + description: Replication slots management configuration + properties: + highAvailability: + default: + enabled: true + description: Replication slots for high availability configuration + properties: + enabled: + default: true + description: |- + If enabled (default), the operator will automatically manage replication slots + on the primary instance and use them in streaming replication + connections with all the standby instances that are part of the HA + cluster. If disabled, the operator will not take advantage + of replication slots in streaming connections with the replicas. + This feature also controls replication slots in replica cluster, + from the designated primary to its cascading replicas. + type: boolean + slotPrefix: + default: _cnpg_ + description: |- + Prefix for replication slots managed by the operator for HA. + It may only contain lower case letters, numbers, and the underscore character. + This can only be set at creation time. By default set to `_cnpg_`. + pattern: ^[0-9a-z_]*$ + type: string + synchronizeLogicalDecoding: + description: |- + When enabled, the operator automatically manages synchronization of logical + decoding (replication) slots across high-availability clusters. + + Requires one of the following conditions: + - PostgreSQL version 17 or later + - PostgreSQL version < 17 with pg_failover_slots extension enabled + type: boolean + type: object + synchronizeReplicas: + description: Configures the synchronization of the user defined + physical replication slots + properties: + enabled: + default: true + description: When set to true, every replication slot that + is on the primary is synchronized on each standby + type: boolean + excludePatterns: + description: List of regular expression patterns to match + the names of replication slots to be excluded (by default + empty) + items: + type: string + type: array + required: + - enabled + type: object + updateInterval: + default: 30 + description: |- + Standby will update the status of the local replication slots + every `updateInterval` seconds (default 30). + minimum: 1 + type: integer + type: object + resources: + description: |- + Resources requirements of every generated Pod. Please refer to + https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + for more information. + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + This field depends on the + DynamicResourceAllocation feature gate. + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + request: + description: |- + Request is the name chosen for a request in the referenced claim. + If empty, everything from the claim is made available, otherwise + only the result of this request. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + schedulerName: + description: |- + If specified, the pod will be dispatched by specified Kubernetes + scheduler. If not specified, the pod will be dispatched by the default + scheduler. More info: + https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/ + type: string + seccompProfile: + description: |- + The SeccompProfile applied to every Pod and Container. + Defaults to: `RuntimeDefault` + 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 be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + 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. + type: string + required: + - type + type: object + securityContext: + description: |- + Override the SecurityContext applied to every Container in the Pod of the cluster. + When set, this overrides the operator's default Container SecurityContext. + If omitted, the operator defaults are used. + 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 + Note that this field cannot be set when spec.os.name is windows. + type: boolean + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by this container. If set, this profile + overrides the pod's appArmorProfile. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + capabilities: + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities type + type: string + type: array + x-kubernetes-list-type: atomic + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities type + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + procMount: + description: |- + procMount denotes the type of proc mount to use for the containers. + The default value is Default which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. + type: string + readOnlyRootFilesystem: + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + 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. + 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. + Note that this field cannot be set when spec.os.name is linux. + 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 + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + 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 + serviceAccountTemplate: + description: Configure the generation of the service account + properties: + metadata: + description: |- + Metadata are the metadata to be used for the generated + service account + properties: + annotations: + additionalProperties: + type: string + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. They are not + queryable and should be preserved when modifying objects. + More info: http://kubernetes.io/docs/user-guide/annotations + type: object + labels: + additionalProperties: + type: string + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. May match selectors of replication controllers + and services. + More info: http://kubernetes.io/docs/user-guide/labels + type: object + name: + description: The name of the resource. Only supported for + certain types + type: string + type: object + required: + - metadata + type: object + smartShutdownTimeout: + default: 180 + description: |- + The time in seconds that controls the window of time reserved for the smart shutdown of Postgres to complete. + Make sure you reserve enough time for the operator to request a fast shutdown of Postgres + (that is: `stopDelay` - `smartShutdownTimeout`). Default is 180 seconds. + format: int32 + type: integer + startDelay: + default: 3600 + description: |- + The time in seconds that is allowed for a PostgreSQL instance to + successfully start up (default 3600). + The startup probe failure threshold is derived from this value using the formula: + ceiling(startDelay / 10). + format: int32 + type: integer + stopDelay: + default: 1800 + description: |- + The time in seconds that is allowed for a PostgreSQL instance to + gracefully shutdown (default 1800) + format: int32 + type: integer + storage: + description: Configuration of the storage of the instances + properties: + pvcTemplate: + description: Template to be used to generate the Persistent Volume + Claim + 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 + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + 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. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + 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 + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + 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 + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string or nil value indicates that no + VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + this field can be reset to its previous value (including nil) to cancel the modification. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + 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 + resizeInUseVolumes: + default: true + description: Resize existent PVCs, defaults to true + type: boolean + size: + description: |- + Size of the storage. Required if not already specified in the PVC template. + Changes to this field are automatically reapplied to the created PVCs. + Size cannot be decreased. + type: string + storageClass: + description: |- + StorageClass to use for PVCs. Applied after + evaluating the PVC template, if available. + If not specified, the generated PVCs will use the + default storage class + type: string + type: object + superuserSecret: + description: |- + The secret containing the superuser password. If not defined a new + secret will be created with a randomly generated password + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + switchoverDelay: + default: 3600 + description: |- + The time in seconds that is allowed for a primary PostgreSQL instance + to gracefully shutdown during a switchover. + Default value is 3600 seconds (1 hour). + format: int32 + type: integer + tablespaces: + description: The tablespaces configuration + items: + description: |- + TablespaceConfiguration is the configuration of a tablespace, and includes + the storage specification for the tablespace + properties: + name: + description: The name of the tablespace + type: string + owner: + description: Owner is the PostgreSQL user owning the tablespace + properties: + name: + type: string + type: object + storage: + description: The storage configuration for the tablespace + properties: + pvcTemplate: + description: Template to be used to generate the Persistent + Volume Claim + 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 + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + 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. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + 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 + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + 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 + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string or nil value indicates that no + VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + this field can be reset to its previous value (including nil) to cancel the modification. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + 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 + resizeInUseVolumes: + default: true + description: Resize existent PVCs, defaults to true + type: boolean + size: + description: |- + Size of the storage. Required if not already specified in the PVC template. + Changes to this field are automatically reapplied to the created PVCs. + Size cannot be decreased. + type: string + storageClass: + description: |- + StorageClass to use for PVCs. Applied after + evaluating the PVC template, if available. + If not specified, the generated PVCs will use the + default storage class + type: string + type: object + temporary: + default: false + description: |- + When set to true, the tablespace will be added as a `temp_tablespaces` + entry in PostgreSQL, and will be available to automatically house temp + database objects, or other temporary files. Please refer to PostgreSQL + documentation for more information on the `temp_tablespaces` GUC. + type: boolean + required: + - name + - storage + type: object + type: array + topologySpreadConstraints: + description: |- + TopologySpreadConstraints specifies how to spread matching pods among the given topology. + More info: + https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select the pods over which + spreading will be calculated. The keys are used to lookup values from the + incoming pod labels, those key-value labels are ANDed with labelSelector + to select the group of existing pods over which spreading will be calculated + for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + MatchLabelKeys cannot be set when LabelSelector isn't set. + Keys that don't exist in the incoming pod labels will + be ignored. A null or empty list means only match against labelSelector. + + This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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. + The global minimum is the minimum number of matching pods in an eligible domain + or zero if the number of eligible domains is less than MinDomains. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 2/2/1: + In this case, the global minimum is 1. + | zone1 | zone2 | zone3 | + | P P | P P | P | + - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; + scheduling it onto zone1(zone2) would make the ActualSkew(3-1) 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 + minDomains: + description: |- + MinDomains indicates a minimum number of eligible domains. + When the number of eligible domains with matching topology keys is less than minDomains, + Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. + And when the number of eligible domains with matching topology keys equals or greater than minDomains, + this value has no effect on scheduling. + As a result, when the number of eligible domains is less than minDomains, + scheduler won't schedule more than maxSkew Pods to those domains. + If value is nil, the constraint behaves as if MinDomains is equal to 1. + Valid values are integers greater than 0. + When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + + For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same + labelSelector spread as 2/2/2: + | zone1 | zone2 | zone3 | + | P P | P P | P P | + The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. + In this situation, new pod with the same labelSelector cannot be scheduled, + because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, + it will violate MaxSkew. + format: int32 + type: integer + nodeAffinityPolicy: + description: |- + NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector + when calculating pod topology spread skew. Options are: + - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. + - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + + If this value is nil, the behavior is equivalent to the Honor policy. + type: string + nodeTaintsPolicy: + description: |- + NodeTaintsPolicy indicates how we will treat node taints when calculating + pod topology spread skew. Options are: + - Honor: nodes without taints, along with tainted nodes for which the incoming pod + has a toleration, are included. + - Ignore: node taints are ignored. All nodes are included. + + If this value is nil, the behavior is equivalent to the Ignore policy. + type: string + 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. + We define a domain as a particular instance of a topology. + Also, we define an eligible domain as a domain whose nodes meet the requirements of + nodeAffinityPolicy and nodeTaintsPolicy. + e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. + And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. + 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 assignment 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 + walStorage: + description: Configuration of the storage for PostgreSQL WAL (Write-Ahead + Log) + properties: + pvcTemplate: + description: Template to be used to generate the Persistent Volume + Claim + 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 + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + 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. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + 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 + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + 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 + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string or nil value indicates that no + VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + this field can be reset to its previous value (including nil) to cancel the modification. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + 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 + resizeInUseVolumes: + default: true + description: Resize existent PVCs, defaults to true + type: boolean + size: + description: |- + Size of the storage. Required if not already specified in the PVC template. + Changes to this field are automatically reapplied to the created PVCs. + Size cannot be decreased. + type: string + storageClass: + description: |- + StorageClass to use for PVCs. Applied after + evaluating the PVC template, if available. + If not specified, the generated PVCs will use the + default storage class + type: string + type: object + required: + - instances + type: object + x-kubernetes-validations: + - message: imageName and imageCatalogRef are mutually exclusive + rule: '!(has(self.imageCatalogRef) && has(self.imageName))' + status: + description: |- + Most recently observed status of the cluster. This data may not be up + to date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + availableArchitectures: + description: AvailableArchitectures reports the available architectures + of a cluster + items: + description: AvailableArchitecture represents the state of a cluster's + architecture + properties: + goArch: + description: GoArch is the name of the executable architecture + type: string + hash: + description: Hash is the hash of the executable + type: string + required: + - goArch + - hash + type: object + type: array + certificates: + description: The configuration for the CA and related certificates, + initialized with defaults. + properties: + clientCASecret: + description: |- + The secret containing the Client CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate all the client certificates.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the client certificates, + used as `ssl_ca_file` of all the instances.
+ - `ca.key`: key used to generate client certificates, if ReplicationTLSSecret is provided, + this can be omitted.
+ type: string + expirations: + additionalProperties: + type: string + description: Expiration dates for all certificates. + type: object + replicationTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the client certificate to authenticate as + the `streaming_replica` user. + If not defined, ClientCASecret must provide also `ca.key`, and a new secret will be + created using the provided CA. + type: string + serverAltDNSNames: + description: The list of the server alternative DNS names to be + added to the generated server TLS certificates, when required. + items: + type: string + type: array + serverCASecret: + description: |- + The secret containing the Server CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate the TLS certificate ServerTLSSecret.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the server certificate, + used as `sslrootcert` in client connection strings.
+ - `ca.key`: key used to generate Server SSL certs, if ServerTLSSecret is provided, + this can be omitted.
+ type: string + serverTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the server TLS certificate and key that will be set as + `ssl_cert_file` and `ssl_key_file` so that clients can connect to postgres securely. + If not defined, ServerCASecret must provide also `ca.key` and a new secret will be + created using the provided CA. + type: string + type: object + cloudNativePGCommitHash: + description: The commit hash number of which this operator running + type: string + cloudNativePGOperatorHash: + description: The hash of the binary of the operator + type: string + conditions: + description: Conditions for cluster object + items: + description: Condition contains details for one aspect of the current + state of this API Resource. + properties: + lastTransitionTime: + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + format: date-time + type: string + message: + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. + maxLength: 32768 + type: string + observedGeneration: + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date + with respect to the current state of the instance. + format: int64 + minimum: 0 + type: integer + reason: + description: |- + reason contains a programmatic identifier indicating the reason for the condition's last transition. + Producers of specific condition types may define expected values and meanings for this field, + and whether the values are considered a guaranteed API. + The value should be a CamelCase string. + This field may not be empty. + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: status of the condition, one of True, False, Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: type of condition in CamelCase or in foo.example.com/CamelCase. + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - lastTransitionTime + - message + - reason + - status + - type + type: object + type: array + configMapResourceVersion: + description: |- + The list of resource versions of the configmaps, + managed by the operator. Every change here is done in the + interest of the instance manager, which will refresh the + configmap data + properties: + metrics: + additionalProperties: + type: string + description: |- + A map with the versions of all the config maps used to pass metrics. + Map keys are the config map names, map values are the versions + type: object + type: object + currentPrimary: + description: Current primary instance + type: string + currentPrimaryFailingSinceTimestamp: + description: |- + The timestamp when the primary was detected to be unhealthy + This field is reported when `.spec.failoverDelay` is populated or during online upgrades + type: string + currentPrimaryTimestamp: + description: The timestamp when the last actual promotion to primary + has occurred + type: string + danglingPVC: + description: |- + List of all the PVCs created by this cluster and still available + which are not attached to a Pod + items: + type: string + type: array + demotionToken: + description: |- + DemotionToken is a JSON token containing the information + from pg_controldata such as Database system identifier, Latest checkpoint's + TimeLineID, Latest checkpoint's REDO location, Latest checkpoint's REDO + WAL file, and Time of latest checkpoint + type: string + firstRecoverabilityPoint: + description: |- + The first recoverability point, stored as a date in RFC3339 format. + This field is calculated from the content of FirstRecoverabilityPointByMethod. + + Deprecated: the field is not set for backup plugins. + type: string + firstRecoverabilityPointByMethod: + additionalProperties: + format: date-time + type: string + description: |- + The first recoverability point, stored as a date in RFC3339 format, per backup method type. + + Deprecated: the field is not set for backup plugins. + type: object + healthyPVC: + description: List of all the PVCs not dangling nor initializing + items: + type: string + type: array + image: + description: Image contains the image name used by the pods + type: string + initializingPVC: + description: List of all the PVCs that are being initialized by this + cluster + items: + type: string + type: array + instanceNames: + description: List of instance names in the cluster + items: + type: string + type: array + instances: + description: The total number of PVC Groups detected in the cluster. + It may differ from the number of existing instance pods. + type: integer + instancesReportedState: + additionalProperties: + description: InstanceReportedState describes the last reported state + of an instance during a reconciliation loop + properties: + ip: + description: IP address of the instance + type: string + isPrimary: + description: indicates if an instance is the primary one + type: boolean + timeLineID: + description: indicates on which TimelineId the instance is + type: integer + required: + - isPrimary + type: object + description: The reported state of the instances during the last reconciliation + loop + type: object + instancesStatus: + additionalProperties: + items: + type: string + type: array + description: InstancesStatus indicates in which status the instances + are + type: object + jobCount: + description: How many Jobs have been created by this cluster + format: int32 + type: integer + lastFailedBackup: + description: |- + Last failed backup, stored as a date in RFC3339 format. + + Deprecated: the field is not set for backup plugins. + type: string + lastPromotionToken: + description: |- + LastPromotionToken is the last verified promotion token that + was used to promote a replica cluster + type: string + lastSuccessfulBackup: + description: |- + Last successful backup, stored as a date in RFC3339 format. + This field is calculated from the content of LastSuccessfulBackupByMethod. + + Deprecated: the field is not set for backup plugins. + type: string + lastSuccessfulBackupByMethod: + additionalProperties: + format: date-time + type: string + description: |- + Last successful backup, stored as a date in RFC3339 format, per backup method type. + + Deprecated: the field is not set for backup plugins. + type: object + latestGeneratedNode: + description: ID of the latest generated node (used to avoid node name + clashing) + type: integer + managedRolesStatus: + description: ManagedRolesStatus reports the state of the managed roles + in the cluster + properties: + byStatus: + additionalProperties: + items: + type: string + type: array + description: ByStatus gives the list of roles in each state + type: object + cannotReconcile: + additionalProperties: + items: + type: string + type: array + description: |- + CannotReconcile lists roles that cannot be reconciled in PostgreSQL, + with an explanation of the cause + type: object + passwordStatus: + additionalProperties: + description: PasswordState represents the state of the password + of a managed RoleConfiguration + properties: + resourceVersion: + description: the resource version of the password secret + type: string + transactionID: + description: the last transaction ID to affect the role + definition in PostgreSQL + format: int64 + type: integer + type: object + description: PasswordStatus gives the last transaction id and + password secret version for each managed role + type: object + type: object + onlineUpdateEnabled: + description: OnlineUpdateEnabled shows if the online upgrade is enabled + inside the cluster + type: boolean + pgDataImageInfo: + description: PGDataImageInfo contains the details of the latest image + that has run on the current data directory. + properties: + image: + description: Image is the image name + type: string + majorVersion: + description: MajorVersion is the major version of the image + type: integer + required: + - image + - majorVersion + type: object + phase: + description: Current phase of the cluster + type: string + phaseReason: + description: Reason for the current phase + type: string + pluginStatus: + description: PluginStatus is the status of the loaded plugins + items: + description: PluginStatus is the status of a loaded plugin + properties: + backupCapabilities: + description: |- + BackupCapabilities are the list of capabilities of the + plugin regarding the Backup management + items: + type: string + type: array + capabilities: + description: |- + Capabilities are the list of capabilities of the + plugin + items: + type: string + type: array + name: + description: Name is the name of the plugin + type: string + operatorCapabilities: + description: |- + OperatorCapabilities are the list of capabilities of the + plugin regarding the reconciler + items: + type: string + type: array + restoreJobHookCapabilities: + description: |- + RestoreJobHookCapabilities are the list of capabilities of the + plugin regarding the RestoreJobHook management + items: + type: string + type: array + status: + description: Status contain the status reported by the plugin + through the SetStatusInCluster interface + type: string + version: + description: |- + Version is the version of the plugin loaded by the + latest reconciliation loop + type: string + walCapabilities: + description: |- + WALCapabilities are the list of capabilities of the + plugin regarding the WAL management + items: + type: string + type: array + required: + - name + - version + type: object + type: array + poolerIntegrations: + description: The integration needed by poolers referencing the cluster + properties: + pgBouncerIntegration: + description: PgBouncerIntegrationStatus encapsulates the needed + integration for the pgbouncer poolers referencing the cluster + properties: + secrets: + items: + type: string + type: array + type: object + type: object + pvcCount: + description: How many PVCs have been created by this cluster + format: int32 + type: integer + readService: + description: Current list of read pods + type: string + readyInstances: + description: The total number of ready instances in the cluster. It + is equal to the number of ready instance pods. + type: integer + resizingPVC: + description: List of all the PVCs that have ResizingPVC condition. + items: + type: string + type: array + secretsResourceVersion: + description: |- + The list of resource versions of the secrets + managed by the operator. Every change here is done in the + interest of the instance manager, which will refresh the + secret data + properties: + applicationSecretVersion: + description: The resource version of the "app" user secret + type: string + barmanEndpointCA: + description: The resource version of the Barman Endpoint CA if + provided + type: string + caSecretVersion: + description: Unused. Retained for compatibility with old versions. + type: string + clientCaSecretVersion: + description: The resource version of the PostgreSQL client-side + CA secret version + type: string + externalClusterSecretVersion: + additionalProperties: + type: string + description: The resource versions of the external cluster secrets + type: object + managedRoleSecretVersion: + additionalProperties: + type: string + description: The resource versions of the managed roles secrets + type: object + metrics: + additionalProperties: + type: string + description: |- + A map with the versions of all the secrets used to pass metrics. + Map keys are the secret names, map values are the versions + type: object + replicationSecretVersion: + description: The resource version of the "streaming_replica" user + secret + type: string + serverCaSecretVersion: + description: The resource version of the PostgreSQL server-side + CA secret version + type: string + serverSecretVersion: + description: The resource version of the PostgreSQL server-side + secret version + type: string + superuserSecretVersion: + description: The resource version of the "postgres" user secret + type: string + type: object + switchReplicaClusterStatus: + description: SwitchReplicaClusterStatus is the status of the switch + to replica cluster + properties: + inProgress: + description: InProgress indicates if there is an ongoing procedure + of switching a cluster to a replica cluster. + type: boolean + type: object + systemID: + description: SystemID is the latest detected PostgreSQL SystemID + type: string + tablespacesStatus: + description: TablespacesStatus reports the state of the declarative + tablespaces in the cluster + items: + description: TablespaceState represents the state of a tablespace + in a cluster + properties: + error: + description: Error is the reconciliation error, if any + type: string + name: + description: Name is the name of the tablespace + type: string + owner: + description: Owner is the PostgreSQL user owning the tablespace + type: string + state: + description: State is the latest reconciliation state + type: string + required: + - name + - state + type: object + type: array + targetPrimary: + description: |- + Target primary instance, this is different from the previous one + during a switchover or a failover + type: string + targetPrimaryTimestamp: + description: The timestamp when the last request for a new primary + has occurred + type: string + timelineID: + description: The timeline of the Postgres cluster + type: integer + topology: + description: Instances topology. + properties: + instances: + additionalProperties: + additionalProperties: + type: string + description: PodTopologyLabels represent the topology of a Pod. + map[labelName]labelValue + type: object + description: Instances contains the pod topology of the instances + type: object + nodesUsed: + description: |- + NodesUsed represents the count of distinct nodes accommodating the instances. + A value of '1' suggests that all instances are hosted on a single node, + implying the absence of High Availability (HA). Ideally, this value should + be the same as the number of instances in the Postgres HA cluster, implying + shared nothing architecture on the compute side. + format: int32 + type: integer + successfullyExtracted: + description: |- + SuccessfullyExtracted indicates if the topology data was extract. It is useful to enact fallback behaviors + in synchronous replica election in case of failures + type: boolean + type: object + unusablePVC: + description: List of all the PVCs that are unusable because another + PVC is missing + items: + type: string + type: array + writeService: + description: Current write pod + type: string + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + scale: + specReplicasPath: .spec.instances + statusReplicasPath: .status.instances + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: databases.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Database + listKind: DatabaseList + plural: databases + singular: database + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .spec.name + name: PG Name + type: string + - jsonPath: .status.applied + name: Applied + type: boolean + - description: Latest reconciliation message + jsonPath: .status.message + name: Message + type: string + name: v1 + schema: + openAPIV3Schema: + description: Database is the Schema for the databases API + 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 Database. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + allowConnections: + description: |- + Maps to the `ALLOW_CONNECTIONS` parameter of `CREATE DATABASE` and + `ALTER DATABASE`. If false then no one can connect to this database. + type: boolean + builtinLocale: + description: |- + Maps to the `BUILTIN_LOCALE` parameter of `CREATE DATABASE`. This + setting cannot be changed. Specifies the locale name when the + builtin provider is used. This option requires `localeProvider` to + be set to `builtin`. Available from PostgreSQL 17. + type: string + x-kubernetes-validations: + - message: builtinLocale is immutable + rule: self == oldSelf + cluster: + description: The name of the PostgreSQL cluster hosting the database. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + collationVersion: + description: |- + Maps to the `COLLATION_VERSION` parameter of `CREATE DATABASE`. This + setting cannot be changed. + type: string + x-kubernetes-validations: + - message: collationVersion is immutable + rule: self == oldSelf + connectionLimit: + description: |- + Maps to the `CONNECTION LIMIT` clause of `CREATE DATABASE` and + `ALTER DATABASE`. How many concurrent connections can be made to + this database. -1 (the default) means no limit. + type: integer + databaseReclaimPolicy: + default: retain + description: The policy for end-of-life maintenance of this database. + enum: + - delete + - retain + type: string + encoding: + description: |- + Maps to the `ENCODING` parameter of `CREATE DATABASE`. This setting + cannot be changed. Character set encoding to use in the database. + type: string + x-kubernetes-validations: + - message: encoding is immutable + rule: self == oldSelf + ensure: + default: present + description: Ensure the PostgreSQL database is `present` or `absent` + - defaults to "present". + enum: + - present + - absent + type: string + extensions: + description: The list of extensions to be managed in the database + items: + description: ExtensionSpec configures an extension in a database + properties: + ensure: + default: present + description: |- + Specifies whether an object (e.g schema) should be present or absent + in the database. If set to `present`, the object will be created if + it does not exist. If set to `absent`, the extension/schema will be + removed if it exists. + enum: + - present + - absent + type: string + name: + description: Name of the object (extension, schema, FDW, server) + type: string + schema: + description: |- + The name of the schema in which to install the extension's objects, + in case the extension allows its contents to be relocated. If not + specified (default), and the extension's control file does not + specify a schema either, the current default object creation schema + is used. + type: string + version: + description: |- + The version of the extension to install. If empty, the operator will + install the default version (whatever is specified in the + extension's control file) + type: string + required: + - name + type: object + type: array + fdws: + description: The list of foreign data wrappers to be managed in the + database + items: + description: FDWSpec configures an Foreign Data Wrapper in a database + properties: + ensure: + default: present + description: |- + Specifies whether an object (e.g schema) should be present or absent + in the database. If set to `present`, the object will be created if + it does not exist. If set to `absent`, the extension/schema will be + removed if it exists. + enum: + - present + - absent + type: string + handler: + description: |- + Name of the handler function (e.g., "postgres_fdw_handler"). + This will be empty if no handler is specified. In that case, + the default handler is registered when the FDW extension is created. + type: string + name: + description: Name of the object (extension, schema, FDW, server) + type: string + options: + description: Options specifies the configuration options for + the FDW. + items: + description: OptionSpec holds the name, value and the ensure + field for an option + properties: + ensure: + default: present + description: |- + Specifies whether an option should be present or absent in + the database. If set to `present`, the option will be + created if it does not exist. If set to `absent`, the + option will be removed if it exists. + enum: + - present + - absent + type: string + name: + description: Name of the option + type: string + value: + description: Value of the option + type: string + required: + - name + - value + type: object + type: array + owner: + description: |- + Owner specifies the database role that will own the Foreign Data Wrapper. + The role must have superuser privileges in the target database. + type: string + usage: + description: List of roles for which `USAGE` privileges on the + FDW are granted or revoked. + items: + description: UsageSpec configures a usage for a foreign data + wrapper + properties: + name: + description: Name of the usage + type: string + x-kubernetes-validations: + - message: name is required + rule: self != '' + type: + default: grant + description: The type of usage + enum: + - grant + - revoke + type: string + required: + - name + type: object + type: array + validator: + description: |- + Name of the validator function (e.g., "postgres_fdw_validator"). + This will be empty if no validator is specified. In that case, + the default validator is registered when the FDW extension is created. + type: string + required: + - name + type: object + type: array + icuLocale: + description: |- + Maps to the `ICU_LOCALE` parameter of `CREATE DATABASE`. This + setting cannot be changed. Specifies the ICU locale when the ICU + provider is used. This option requires `localeProvider` to be set to + `icu`. Available from PostgreSQL 15. + type: string + x-kubernetes-validations: + - message: icuLocale is immutable + rule: self == oldSelf + icuRules: + description: |- + Maps to the `ICU_RULES` parameter of `CREATE DATABASE`. This setting + cannot be changed. Specifies additional collation rules to customize + the behavior of the default collation. This option requires + `localeProvider` to be set to `icu`. Available from PostgreSQL 16. + type: string + x-kubernetes-validations: + - message: icuRules is immutable + rule: self == oldSelf + isTemplate: + description: |- + Maps to the `IS_TEMPLATE` parameter of `CREATE DATABASE` and `ALTER + DATABASE`. If true, this database is considered a template and can + be cloned by any user with `CREATEDB` privileges. + type: boolean + locale: + description: |- + Maps to the `LOCALE` parameter of `CREATE DATABASE`. This setting + cannot be changed. Sets the default collation order and character + classification in the new database. + type: string + x-kubernetes-validations: + - message: locale is immutable + rule: self == oldSelf + localeCType: + description: |- + Maps to the `LC_CTYPE` parameter of `CREATE DATABASE`. This setting + cannot be changed. + type: string + x-kubernetes-validations: + - message: localeCType is immutable + rule: self == oldSelf + localeCollate: + description: |- + Maps to the `LC_COLLATE` parameter of `CREATE DATABASE`. This + setting cannot be changed. + type: string + x-kubernetes-validations: + - message: localeCollate is immutable + rule: self == oldSelf + localeProvider: + description: |- + Maps to the `LOCALE_PROVIDER` parameter of `CREATE DATABASE`. This + setting cannot be changed. This option sets the locale provider for + databases created in the new cluster. Available from PostgreSQL 16. + type: string + x-kubernetes-validations: + - message: localeProvider is immutable + rule: self == oldSelf + name: + description: The name of the database to create inside PostgreSQL. + This setting cannot be changed. + type: string + x-kubernetes-validations: + - message: name is immutable + rule: self == oldSelf + - message: the name postgres is reserved + rule: self != 'postgres' + - message: the name template0 is reserved + rule: self != 'template0' + - message: the name template1 is reserved + rule: self != 'template1' + owner: + description: |- + Maps to the `OWNER` parameter of `CREATE DATABASE`. + Maps to the `OWNER TO` command of `ALTER DATABASE`. + The role name of the user who owns the database inside PostgreSQL. + type: string + schemas: + description: The list of schemas to be managed in the database + items: + description: SchemaSpec configures a schema in a database + properties: + ensure: + default: present + description: |- + Specifies whether an object (e.g schema) should be present or absent + in the database. If set to `present`, the object will be created if + it does not exist. If set to `absent`, the extension/schema will be + removed if it exists. + enum: + - present + - absent + type: string + name: + description: Name of the object (extension, schema, FDW, server) + type: string + owner: + description: |- + The role name of the user who owns the schema inside PostgreSQL. + It maps to the `AUTHORIZATION` parameter of `CREATE SCHEMA` and the + `OWNER TO` command of `ALTER SCHEMA`. + type: string + required: + - name + type: object + type: array + servers: + description: The list of foreign servers to be managed in the database + items: + description: ServerSpec configures a server of a foreign data wrapper + properties: + ensure: + default: present + description: |- + Specifies whether an object (e.g schema) should be present or absent + in the database. If set to `present`, the object will be created if + it does not exist. If set to `absent`, the extension/schema will be + removed if it exists. + enum: + - present + - absent + type: string + fdw: + description: The name of the Foreign Data Wrapper (FDW) + type: string + x-kubernetes-validations: + - message: fdw is required + rule: self != '' + name: + description: Name of the object (extension, schema, FDW, server) + type: string + options: + description: |- + Options specifies the configuration options for the server + (key is the option name, value is the option value). + items: + description: OptionSpec holds the name, value and the ensure + field for an option + properties: + ensure: + default: present + description: |- + Specifies whether an option should be present or absent in + the database. If set to `present`, the option will be + created if it does not exist. If set to `absent`, the + option will be removed if it exists. + enum: + - present + - absent + type: string + name: + description: Name of the option + type: string + value: + description: Value of the option + type: string + required: + - name + - value + type: object + type: array + usage: + description: List of roles for which `USAGE` privileges on the + server are granted or revoked. + items: + description: UsageSpec configures a usage for a foreign data + wrapper + properties: + name: + description: Name of the usage + type: string + x-kubernetes-validations: + - message: name is required + rule: self != '' + type: + default: grant + description: The type of usage + enum: + - grant + - revoke + type: string + required: + - name + type: object + type: array + required: + - fdw + - name + type: object + type: array + tablespace: + description: |- + Maps to the `TABLESPACE` parameter of `CREATE DATABASE`. + Maps to the `SET TABLESPACE` command of `ALTER DATABASE`. + The name of the tablespace (in PostgreSQL) that will be associated + with the new database. This tablespace will be the default + tablespace used for objects created in this database. + type: string + template: + description: |- + Maps to the `TEMPLATE` parameter of `CREATE DATABASE`. This setting + cannot be changed. The name of the template from which to create + this database. + type: string + x-kubernetes-validations: + - message: template is immutable + rule: self == oldSelf + required: + - cluster + - name + - owner + type: object + x-kubernetes-validations: + - message: builtinLocale is only available when localeProvider is set + to `builtin` + rule: '!has(self.builtinLocale) || self.localeProvider == ''builtin''' + - message: icuLocale is only available when localeProvider is set to `icu` + rule: '!has(self.icuLocale) || self.localeProvider == ''icu''' + - message: icuRules is only available when localeProvider is set to `icu` + rule: '!has(self.icuRules) || self.localeProvider == ''icu''' + status: + description: |- + Most recently observed status of the Database. This data may not be up to + date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + applied: + description: Applied is true if the database was reconciled correctly + type: boolean + extensions: + description: Extensions is the status of the managed extensions + items: + description: DatabaseObjectStatus is the status of the managed database + objects + properties: + applied: + description: |- + True of the object has been installed successfully in + the database + type: boolean + message: + description: Message is the object reconciliation message + type: string + name: + description: The name of the object + type: string + required: + - applied + - name + type: object + type: array + fdws: + description: FDWs is the status of the managed FDWs + items: + description: DatabaseObjectStatus is the status of the managed database + objects + properties: + applied: + description: |- + True of the object has been installed successfully in + the database + type: boolean + message: + description: Message is the object reconciliation message + type: string + name: + description: The name of the object + type: string + required: + - applied + - name + type: object + type: array + message: + description: Message is the reconciliation output message + type: string + observedGeneration: + description: |- + A sequence number representing the latest + desired state that was synchronized + format: int64 + type: integer + schemas: + description: Schemas is the status of the managed schemas + items: + description: DatabaseObjectStatus is the status of the managed database + objects + properties: + applied: + description: |- + True of the object has been installed successfully in + the database + type: boolean + message: + description: Message is the object reconciliation message + type: string + name: + description: The name of the object + type: string + required: + - applied + - name + type: object + type: array + servers: + description: Servers is the status of the managed servers + items: + description: DatabaseObjectStatus is the status of the managed database + objects + properties: + applied: + description: |- + True of the object has been installed successfully in + the database + type: boolean + message: + description: Message is the object reconciliation message + type: string + name: + description: The name of the object + type: string + required: + - applied + - name + type: object + type: array + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: failoverquorums.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: FailoverQuorum + listKind: FailoverQuorumList + plural: failoverquorums + singular: failoverquorum + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: |- + FailoverQuorum contains the information about the current failover + quorum status of a PG cluster. It is updated by the instance manager + of the primary node and reset to zero by the operator to trigger + an update. + 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 + status: + description: Most recently observed status of the failover quorum. + properties: + method: + description: Contains the latest reported Method value. + type: string + primary: + description: |- + Primary is the name of the primary instance that updated + this object the latest time. + type: string + standbyNames: + description: |- + StandbyNames is the list of potentially synchronous + instance names. + items: + type: string + type: array + standbyNumber: + description: |- + StandbyNumber is the number of synchronous standbys that transactions + need to wait for replies from. + type: integer + type: object + required: + - metadata + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: imagecatalogs.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: ImageCatalog + listKind: ImageCatalogList + plural: imagecatalogs + singular: imagecatalog + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: ImageCatalog is the Schema for the imagecatalogs API + 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 ImageCatalog. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + images: + description: List of CatalogImages available in the catalog + items: + description: CatalogImage defines the image and major version + properties: + image: + description: The image reference + type: string + major: + description: The PostgreSQL major version of the image. Must + be unique within the catalog. + minimum: 10 + type: integer + required: + - image + - major + type: object + maxItems: 8 + minItems: 1 + type: array + x-kubernetes-validations: + - message: Images must have unique major versions + rule: self.all(e, self.filter(f, f.major==e.major).size() == 1) + required: + - images + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: poolers.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Pooler + listKind: PoolerList + plural: poolers + singular: pooler + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .spec.type + name: Type + type: string + name: v1 + schema: + openAPIV3Schema: + description: Pooler is the Schema for the poolers API + 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 Pooler. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + cluster: + description: |- + This is the cluster reference on which the Pooler will work. + Pooler name should never match with any cluster name within the same namespace. + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + deploymentStrategy: + description: The deployment strategy to use for pgbouncer to replace + existing pods with new ones + properties: + rollingUpdate: + description: |- + Rolling update config params. Present only if DeploymentStrategyType = + RollingUpdate. + properties: + maxSurge: + anyOf: + - type: integer + - type: string + description: |- + The maximum number of pods that can be scheduled above the desired number of + pods. + Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + This can not be 0 if MaxUnavailable is 0. + Absolute number is calculated from percentage by rounding up. + Defaults to 25%. + Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when + the rolling update starts, such that the total number of old and new pods do not exceed + 130% of desired pods. Once old pods have been killed, + new ReplicaSet can be scaled up further, ensuring that total number of pods running + at any time during the update is at most 130% of desired pods. + x-kubernetes-int-or-string: true + maxUnavailable: + anyOf: + - type: integer + - type: string + description: |- + The maximum number of pods that can be unavailable during the update. + Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + Absolute number is calculated from percentage by rounding down. + This can not be 0 if MaxSurge is 0. + Defaults to 25%. + Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods + immediately when the rolling update starts. Once new pods are ready, old ReplicaSet + can be scaled down further, followed by scaling up the new ReplicaSet, ensuring + that the total number of pods available at all times during the update is at + least 70% of desired pods. + x-kubernetes-int-or-string: true + type: object + type: + description: Type of deployment. Can be "Recreate" or "RollingUpdate". + Default is RollingUpdate. + type: string + type: object + instances: + default: 1 + description: 'The number of replicas we want. Default: 1.' + format: int32 + type: integer + monitoring: + description: |- + The configuration of the monitoring infrastructure of this pooler. + + Deprecated: This feature will be removed in an upcoming release. If + you need this functionality, you can create a PodMonitor manually. + properties: + enablePodMonitor: + default: false + description: Enable or disable the `PodMonitor` + type: boolean + podMonitorMetricRelabelings: + description: The list of metric relabelings for the `PodMonitor`. + Applied to samples before ingestion. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + action to perform based on the regex matching. + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + modulus to take of the hash of the source label values. + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: regex defines the regular expression against + which the extracted value is matched. + type: string + replacement: + description: |- + replacement value against which a Replace action is performed if the + regular expression matches. + + Regex capture groups are available. + type: string + separator: + description: separator defines the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + sourceLabels defines the source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name. + For Prometheus 3.x, a label name is valid if it contains UTF-8 characters. + For Prometheus 2.x, a label name is only valid if it contains ASCII characters, letters, numbers, as well as underscores. + type: string + type: array + targetLabel: + description: |- + targetLabel defines the label to which the resulting string is written in a replacement. + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + Regex capture groups are available. + type: string + type: object + type: array + podMonitorRelabelings: + description: The list of relabelings for the `PodMonitor`. Applied + to samples before scraping. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + action to perform based on the regex matching. + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + modulus to take of the hash of the source label values. + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: regex defines the regular expression against + which the extracted value is matched. + type: string + replacement: + description: |- + replacement value against which a Replace action is performed if the + regular expression matches. + + Regex capture groups are available. + type: string + separator: + description: separator defines the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + sourceLabels defines the source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name. + For Prometheus 3.x, a label name is valid if it contains UTF-8 characters. + For Prometheus 2.x, a label name is only valid if it contains ASCII characters, letters, numbers, as well as underscores. + type: string + type: array + targetLabel: + description: |- + targetLabel defines the label to which the resulting string is written in a replacement. + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + Regex capture groups are available. + type: string + type: object + type: array + type: object + pgbouncer: + description: The PgBouncer configuration + properties: + authQuery: + description: |- + The query that will be used to download the hash of the password + of a certain user. Default: "SELECT usename, passwd FROM public.user_search($1)". + In case it is specified, also an AuthQuerySecret has to be specified and + no automatic CNPG Cluster integration will be triggered. + type: string + authQuerySecret: + description: |- + The credentials of the user that need to be used for the authentication + query. In case it is specified, also an AuthQuery + (e.g. "SELECT usename, passwd FROM pg_catalog.pg_shadow WHERE usename=$1") + has to be specified and no automatic CNPG Cluster integration will be triggered. + + Deprecated. + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + clientCASecret: + description: |- + ClientCASecret provides PgBouncer’s client_tls_ca_file, the root + CA for validating client certificates + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + clientTLSSecret: + description: |- + ClientTLSSecret provides PgBouncer’s client_tls_key_file (private key) + and client_tls_cert_file (certificate) used to accept client connections + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + parameters: + additionalProperties: + type: string + description: |- + Additional parameters to be passed to PgBouncer - please check + the CNPG documentation for a list of options you can configure + type: object + paused: + default: false + description: |- + When set to `true`, PgBouncer will disconnect from the PostgreSQL + server, first waiting for all queries to complete, and pause all new + client connections until this value is set to `false` (default). Internally, + the operator calls PgBouncer's `PAUSE` and `RESUME` commands. + type: boolean + pg_hba: + description: |- + PostgreSQL Host Based Authentication rules (lines to be appended + to the pg_hba.conf file) + items: + type: string + type: array + poolMode: + default: session + description: 'The pool mode. Default: `session`.' + enum: + - session + - transaction + type: string + serverCASecret: + description: |- + ServerCASecret provides PgBouncer’s server_tls_ca_file, the root + CA for validating PostgreSQL certificates + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + serverTLSSecret: + description: |- + ServerTLSSecret, when pointing to a TLS secret, provides pgbouncer's + `server_tls_key_file` and `server_tls_cert_file`, used when + authenticating against PostgreSQL. + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + type: object + serviceTemplate: + description: Template for the Service to be created + properties: + metadata: + description: |- + Standard object's metadata. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + properties: + annotations: + additionalProperties: + type: string + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. They are not + queryable and should be preserved when modifying objects. + More info: http://kubernetes.io/docs/user-guide/annotations + type: object + labels: + additionalProperties: + type: string + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. May match selectors of replication controllers + and services. + More info: http://kubernetes.io/docs/user-guide/labels + type: object + name: + description: The name of the resource. Only supported for + certain types + type: string + type: object + spec: + description: |- + Specification of the desired behavior of the service. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + allocateLoadBalancerNodePorts: + description: |- + allocateLoadBalancerNodePorts defines if NodePorts will be automatically + allocated for services with type LoadBalancer. Default is "true". It + may be set to "false" if the cluster load-balancer does not rely on + NodePorts. If the caller requests specific NodePorts (by specifying a + value), those requests will be respected, regardless of this field. + This field may only be set for services with type LoadBalancer and will + be cleared if the type is changed to any other type. + type: boolean + clusterIP: + description: |- + clusterIP is the IP address of the service and is usually assigned + randomly. If an address is specified manually, is in-range (as per + system configuration), and is not in use, it will be allocated to the + service; otherwise creation of the service will fail. This field may not + be changed through updates unless the type field is also being changed + to ExternalName (which requires this field to be blank) or the type + field is being changed from ExternalName (in which case this field may + optionally be specified, as describe above). Valid values are "None", + empty string (""), or a valid IP address. Setting this to "None" makes a + "headless service" (no virtual IP), which is useful when direct endpoint + connections are preferred and proxying is not required. Only applies to + types ClusterIP, NodePort, and LoadBalancer. If this field is specified + when creating a Service of type ExternalName, creation will fail. This + field will be wiped when updating a Service to type ExternalName. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + type: string + clusterIPs: + description: |- + ClusterIPs is a list of IP addresses assigned to this service, and are + usually assigned randomly. If an address is specified manually, is + in-range (as per system configuration), and is not in use, it will be + allocated to the service; otherwise creation of the service will fail. + This field may not be changed through updates unless the type field is + also being changed to ExternalName (which requires this field to be + empty) or the type field is being changed from ExternalName (in which + case this field may optionally be specified, as describe above). Valid + values are "None", empty string (""), or a valid IP address. Setting + this to "None" makes a "headless service" (no virtual IP), which is + useful when direct endpoint connections are preferred and proxying is + not required. Only applies to types ClusterIP, NodePort, and + LoadBalancer. If this field is specified when creating a Service of type + ExternalName, creation will fail. This field will be wiped when updating + a Service to type ExternalName. If this field is not specified, it will + be initialized from the clusterIP field. If this field is specified, + clients must ensure that clusterIPs[0] and clusterIP have the same + value. + + This field may hold a maximum of two entries (dual-stack IPs, in either order). + These IPs must correspond to the values of the ipFamilies field. Both + clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + items: + type: string + type: array + x-kubernetes-list-type: atomic + externalIPs: + description: |- + externalIPs is a list of IP addresses for which nodes in the cluster + will also accept traffic for this service. These IPs are not managed by + Kubernetes. The user is responsible for ensuring that traffic arrives + at a node with this IP. A common example is external load-balancers + that are not part of the Kubernetes system. + items: + type: string + type: array + x-kubernetes-list-type: atomic + externalName: + description: |- + externalName is the external reference that discovery mechanisms will + return as an alias for this service (e.g. a DNS CNAME record). No + proxying will be involved. Must be a lowercase RFC-1123 hostname + (https://tools.ietf.org/html/rfc1123) and requires `type` to be "ExternalName". + type: string + externalTrafficPolicy: + description: |- + externalTrafficPolicy describes how nodes distribute service traffic they + receive on one of the Service's "externally-facing" addresses (NodePorts, + ExternalIPs, and LoadBalancer IPs). If set to "Local", the proxy will configure + the service in a way that assumes that external load balancers will take care + of balancing the service traffic between nodes, and so each node will deliver + traffic only to the node-local endpoints of the service, without masquerading + the client source IP. (Traffic mistakenly sent to a node with no endpoints will + be dropped.) The default value, "Cluster", uses the standard behavior of + routing to all endpoints evenly (possibly modified by topology and other + features). Note that traffic sent to an External IP or LoadBalancer IP from + within the cluster will always get "Cluster" semantics, but clients sending to + a NodePort from within the cluster may need to take traffic policy into account + when picking a node. + type: string + healthCheckNodePort: + description: |- + healthCheckNodePort specifies the healthcheck nodePort for the service. + This only applies when type is set to LoadBalancer and + externalTrafficPolicy is set to Local. If a value is specified, is + in-range, and is not in use, it will be used. If not specified, a value + will be automatically allocated. External systems (e.g. load-balancers) + can use this port to determine if a given node holds endpoints for this + service or not. If this field is specified when creating a Service + which does not need it, creation will fail. This field will be wiped + when updating a Service to no longer need it (e.g. changing type). + This field cannot be updated once set. + format: int32 + type: integer + internalTrafficPolicy: + description: |- + InternalTrafficPolicy describes how nodes distribute service traffic they + receive on the ClusterIP. If set to "Local", the proxy will assume that pods + only want to talk to endpoints of the service on the same node as the pod, + dropping the traffic if there are no local endpoints. The default value, + "Cluster", uses the standard behavior of routing to all endpoints evenly + (possibly modified by topology and other features). + type: string + ipFamilies: + description: |- + IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this + service. This field is usually assigned automatically based on cluster + configuration and the ipFamilyPolicy field. If this field is specified + manually, the requested family is available in the cluster, + and ipFamilyPolicy allows it, it will be used; otherwise creation of + the service will fail. This field is conditionally mutable: it allows + for adding or removing a secondary IP family, but it does not allow + changing the primary IP family of the Service. Valid values are "IPv4" + and "IPv6". This field only applies to Services of types ClusterIP, + NodePort, and LoadBalancer, and does apply to "headless" services. + This field will be wiped when updating a Service to type ExternalName. + + This field may hold a maximum of two entries (dual-stack families, in + either order). These families must correspond to the values of the + clusterIPs field, if specified. Both clusterIPs and ipFamilies are + governed by the ipFamilyPolicy field. + items: + description: |- + IPFamily represents the IP Family (IPv4 or IPv6). This type is used + to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies). + type: string + type: array + x-kubernetes-list-type: atomic + ipFamilyPolicy: + description: |- + IPFamilyPolicy represents the dual-stack-ness requested or required by + this Service. If there is no value provided, then this field will be set + to SingleStack. Services can be "SingleStack" (a single IP family), + "PreferDualStack" (two IP families on dual-stack configured clusters or + a single IP family on single-stack clusters), or "RequireDualStack" + (two IP families on dual-stack configured clusters, otherwise fail). The + ipFamilies and clusterIPs fields depend on the value of this field. This + field will be wiped when updating a service to type ExternalName. + type: string + loadBalancerClass: + description: |- + loadBalancerClass is the class of the load balancer implementation this Service belongs to. + If specified, the value of this field must be a label-style identifier, with an optional prefix, + e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users. + This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load + balancer implementation is used, today this is typically done through the cloud provider integration, + but should apply for any default implementation. If set, it is assumed that a load balancer + implementation is watching for Services with a matching class. Any default load balancer + implementation (e.g. cloud providers) should ignore Services that set this field. + This field can only be set when creating or updating a Service to type 'LoadBalancer'. + Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type. + type: string + loadBalancerIP: + description: |- + Only applies to Service Type: LoadBalancer. + This feature depends on whether the underlying cloud-provider supports specifying + the loadBalancerIP when a load balancer is created. + This field will be ignored if the cloud-provider does not support the feature. + Deprecated: This field was under-specified and its meaning varies across implementations. + Using it is non-portable and it may not support dual-stack. + Users are encouraged to use implementation-specific annotations when available. + type: string + loadBalancerSourceRanges: + description: |- + If specified and supported by the platform, this will restrict traffic through the cloud-provider + load-balancer will be restricted to the specified client IPs. This field will be ignored if the + cloud-provider does not support the feature." + More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/ + items: + type: string + type: array + x-kubernetes-list-type: atomic + ports: + description: |- + The list of ports that are exposed by this service. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + items: + description: ServicePort contains information on service's + port. + properties: + appProtocol: + description: |- + The application protocol for this port. + This is used as a hint for implementations to offer richer behavior for protocols that they understand. + This field follows standard Kubernetes label syntax. + Valid values are either: + + * Un-prefixed protocol names - reserved for IANA standard service names (as per + RFC-6335 and https://www.iana.org/assignments/service-names). + + * Kubernetes-defined prefixed names: + * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior- + * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + + * Other protocols should use implementation-defined prefixed names such as + mycompany.com/my-custom-protocol. + type: string + name: + description: |- + The name of this port within the service. This must be a DNS_LABEL. + All ports within a ServiceSpec must have unique names. When considering + the endpoints for a Service, this must match the 'name' field in the + EndpointPort. + Optional if only one ServicePort is defined on this service. + type: string + nodePort: + description: |- + The port on each node on which this service is exposed when type is + NodePort or LoadBalancer. Usually assigned by the system. If a value is + specified, in-range, and not in use it will be used, otherwise the + operation will fail. If not specified, a port will be allocated if this + Service requires one. If this field is specified when creating a + Service which does not need it, creation will fail. This field will be + wiped when updating a Service to no longer need it (e.g. changing type + from NodePort to ClusterIP). + More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + format: int32 + type: integer + port: + description: The port that will be exposed by this service. + format: int32 + type: integer + protocol: + default: TCP + description: |- + The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". + Default is TCP. + type: string + targetPort: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the pods targeted by the service. + Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + If this is a string, it will be looked up as a named port in the + target Pod's container ports. If this is not specified, the value + of the 'port' field is used (an identity map). + This field is ignored for services with clusterIP=None, and should be + omitted or set equal to the 'port' field. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service + x-kubernetes-int-or-string: true + required: + - port + type: object + type: array + x-kubernetes-list-map-keys: + - port + - protocol + x-kubernetes-list-type: map + publishNotReadyAddresses: + description: |- + publishNotReadyAddresses indicates that any agent which deals with endpoints for this + Service should disregard any indications of ready/not-ready. + The primary use case for setting this field is for a StatefulSet's Headless Service to + propagate SRV DNS records for its Pods for the purpose of peer discovery. + The Kubernetes controllers that generate Endpoints and EndpointSlice resources for + Services interpret this to mean that all endpoints are considered "ready" even if the + Pods themselves are not. Agents which consume only Kubernetes generated endpoints + through the Endpoints or EndpointSlice resources can safely assume this behavior. + type: boolean + selector: + additionalProperties: + type: string + description: |- + Route service traffic to pods with label keys and values matching this + selector. If empty or not present, the service is assumed to have an + external process managing its endpoints, which Kubernetes will not + modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + Ignored if type is ExternalName. + More info: https://kubernetes.io/docs/concepts/services-networking/service/ + type: object + x-kubernetes-map-type: atomic + sessionAffinity: + description: |- + Supports "ClientIP" and "None". Used to maintain session affinity. + Enable client IP based session affinity. + Must be ClientIP or None. + Defaults to None. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + type: string + sessionAffinityConfig: + description: sessionAffinityConfig contains the configurations + of session affinity. + properties: + clientIP: + description: clientIP contains the configurations of Client + IP based session affinity. + properties: + timeoutSeconds: + description: |- + timeoutSeconds specifies the seconds of ClientIP type session sticky time. + The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". + Default value is 10800(for 3 hours). + format: int32 + type: integer + type: object + type: object + trafficDistribution: + description: |- + TrafficDistribution offers a way to express preferences for how traffic + is distributed to Service endpoints. Implementations can use this field + as a hint, but are not required to guarantee strict adherence. If the + field is not set, the implementation will apply its default routing + strategy. If set to "PreferClose", implementations should prioritize + endpoints that are in the same zone. + type: string + type: + description: |- + type determines how the Service is exposed. Defaults to ClusterIP. Valid + options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + "ClusterIP" allocates a cluster-internal IP address for load-balancing + to endpoints. Endpoints are determined by the selector or if that is not + specified, by manual construction of an Endpoints object or + EndpointSlice objects. If clusterIP is "None", no virtual IP is + allocated and the endpoints are published as a set of endpoints rather + than a virtual IP. + "NodePort" builds on ClusterIP and allocates a port on every node which + routes to the same endpoints as the clusterIP. + "LoadBalancer" builds on NodePort and creates an external load-balancer + (if supported in the current cloud) which routes to the same endpoints + as the clusterIP. + "ExternalName" aliases this service to the specified externalName. + Several other fields do not apply to ExternalName services. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + type: string + type: object + type: object + template: + description: The template of the Pod to be created + properties: + metadata: + description: |- + Standard object's metadata. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + properties: + annotations: + additionalProperties: + type: string + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. They are not + queryable and should be preserved when modifying objects. + More info: http://kubernetes.io/docs/user-guide/annotations + type: object + labels: + additionalProperties: + type: string + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. May match selectors of replication controllers + and services. + More info: http://kubernetes.io/docs/user-guide/labels + type: object + name: + description: The name of the resource. Only supported for + certain types + type: string + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + 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 subtracting + "weight" from 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + 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. + If it's null, this PodAffinityTerm matches with no 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + 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 container 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(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 + x-kubernetes-list-type: atomic + command: + description: |- + Entrypoint array. Not executed within a shell. + The container 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(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 + x-kubernetes-list-type: atomic + 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. + May consist of any printable ASCII characters except '='. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + fileKeyRef: + description: |- + FileKeyRef selects a key of the env file. + Requires the EnvFiles feature gate to be enabled. + properties: + key: + description: |- + The key within the env file. An invalid key will prevent the pod from starting. + The keys defined within a source may consist of any printable ASCII characters except '='. + During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + type: string + optional: + default: false + description: |- + Specify whether the file or its key must be defined. If the file or key + does not exist, then the env var is not published. + If optional is set to true and the specified key does not exist, + the environment variable will not be set in the Pod's containers. + + If optional is set to false and the specified key does not exist, + an error will be returned during Pod creation. + type: boolean + path: + description: |- + The path within the volume from which to select the file. + Must be relative and may not contain the '..' path or start with '..'. + type: string + volumeName: + description: The name of the volume mount + containing the env file. + type: string + required: + - key + - path + - volumeName + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source may consist of any printable ASCII characters except '='. + 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 or Secrets + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap + must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: |- + Optional text to prepend to the name of each environment variable. + May consist of any printable ASCII characters except '='. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret must + be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + description: |- + Container 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 + sleep: + description: Sleep represents a duration that + the container should sleep. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for backward compatibility. There is no validation of this field and + lifecycle hooks will fail at runtime when it is specified. + 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 Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 + sleep: + description: Sleep represents a duration that + the container should sleep. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for backward compatibility. There is no validation of this field and + lifecycle hooks will fail at runtime when it is specified. + 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 + stopSignal: + description: |- + StopSignal defines which signal will be sent to a container when it is being stopped. + If not specified, the default is defined by the container runtime in use. + StopSignal can only be set for Pods with a non-empty .spec.os.name + type: string + 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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. 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. + Modifying this array with strategic merge patch may corrupt the data. + For more information See https://github.com/kubernetes/kubernetes/issues/108255. + 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 + resizePolicy: + description: Resources resize policy for the container. + items: + description: ContainerResizePolicy represents resource + resize policy for the container. + properties: + resourceName: + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. + type: string + restartPolicy: + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + description: |- + Compute Resources required by this container. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + This field depends on the + DynamicResourceAllocation feature gate. + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry + in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + request: + description: |- + Request is the name chosen for a request in the referenced claim. + If empty, everything from the claim is made available, otherwise + only the result of this request. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + restartPolicy: + description: |- + RestartPolicy defines the restart behavior of individual containers in a pod. + This overrides the pod-level restart policy. When this field is not specified, + the restart behavior is defined by the Pod's restart policy and the container type. + Additionally, setting the RestartPolicy as "Always" for the init container will + have the following effect: + this init container will be continually restarted on + exit until all regular containers have terminated. Once all regular + containers have completed, all init containers with restartPolicy "Always" + will be shut down. This lifecycle differs from normal init containers and + is often referred to as a "sidecar" container. Although this init + container still starts in the init container sequence, it does not wait + for the container to complete before proceeding to the next init + container. Instead, the next init container starts immediately after this + init container is started, or after any startupProbe has successfully + completed. + type: string + restartPolicyRules: + description: |- + Represents a list of rules to be checked to determine if the + container should be restarted on exit. The rules are evaluated in + order. Once a rule matches a container exit condition, the remaining + rules are ignored. If no rule matches the container exit condition, + the Container-level restart policy determines the whether the container + is restarted or not. Constraints on the rules: + - At most 20 rules are allowed. + - Rules can have the same action. + - Identical rules are not forbidden in validations. + When rules are specified, container MUST set RestartPolicy explicitly + even it if matches the Pod's RestartPolicy. + items: + description: ContainerRestartRule describes how a + container exit is handled. + properties: + action: + description: |- + Specifies the action taken on a container exit if the requirements + are satisfied. The only possible value is "Restart" to restart the + container. + type: string + exitCodes: + description: Represents the exit codes to check + on container exits. + properties: + operator: + description: |- + Represents the relationship between the container exit code(s) and the + specified values. Possible values are: + - In: the requirement is satisfied if the container exit code is in the + set of specified values. + - NotIn: the requirement is satisfied if the container exit code is + not in the set of specified values. + type: string + values: + description: |- + Specifies the set of values to check for container exit codes. + At most 255 elements are allowed. + items: + format: int32 + type: integer + type: array + x-kubernetes-list-type: set + required: + - operator + type: object + required: + - action + type: object + type: array + x-kubernetes-list-type: atomic + securityContext: + description: |- + SecurityContext defines the security options the container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + 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 + Note that this field cannot be set when spec.os.name is windows. + type: boolean + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by this container. If set, this profile + overrides the pod's appArmorProfile. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + capabilities: + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + procMount: + description: |- + procMount denotes the type of proc mount to use for the containers. + The default value is Default which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. + type: string + readOnlyRootFilesystem: + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + 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. + 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. + Note that this field cannot be set when spec.os.name is linux. + 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 + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + 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. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + 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. + When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + (which defaults to None). + 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 + recursiveReadOnly: + description: |- + RecursiveReadOnly specifies whether read-only mounts should be handled + recursively. + + If ReadOnly is false, this field has no meaning and must be unspecified. + + If ReadOnly is true, and this field is set to Disabled, the mount is not made + recursively read-only. If this field is set to IfPossible, the mount is made + recursively read-only, if it is supported by the container runtime. If this + field is set to Enabled, the mount is made recursively read-only if it is + supported by the container runtime, otherwise the pod will not be started and + an error will be generated to indicate the reason. + + If this field is set to IfPossible or Enabled, MountPropagation must be set to + None (or be unspecified, which defaults to None). + + If this field is not specified, it is treated as an equivalent of Disabled. + type: string + 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 + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + 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 + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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 + x-kubernetes-list-type: atomic + 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: |- + Name is this DNS resolver option's name. + Required. + type: string + value: + description: Value is this DNS resolver option's + value. + type: string + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + 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. + items: + description: |- + An EphemeralContainer is a temporary container that you may add 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. The kubelet may evict a Pod if an ephemeral container causes the + Pod to exceed its resource allocation. + + To add an ephemeral container, use the ephemeralcontainers subresource of an existing + Pod. Ephemeral containers may not be removed or restarted. + properties: + args: + description: |- + Arguments to the entrypoint. + The 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(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 + x-kubernetes-list-type: atomic + command: + description: |- + Entrypoint array. Not executed within a shell. + The 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(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 + x-kubernetes-list-type: atomic + 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. + May consist of any printable ASCII characters except '='. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + fileKeyRef: + description: |- + FileKeyRef selects a key of the env file. + Requires the EnvFiles feature gate to be enabled. + properties: + key: + description: |- + The key within the env file. An invalid key will prevent the pod from starting. + The keys defined within a source may consist of any printable ASCII characters except '='. + During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + type: string + optional: + default: false + description: |- + Specify whether the file or its key must be defined. If the file or key + does not exist, then the env var is not published. + If optional is set to true and the specified key does not exist, + the environment variable will not be set in the Pod's containers. + + If optional is set to false and the specified key does not exist, + an error will be returned during Pod creation. + type: boolean + path: + description: |- + The path within the volume from which to select the file. + Must be relative and may not contain the '..' path or start with '..'. + type: string + volumeName: + description: The name of the volume mount + containing the env file. + type: string + required: + - key + - path + - volumeName + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source may consist of any printable ASCII characters except '='. + 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 or Secrets + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap + must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: |- + Optional text to prepend to the name of each environment variable. + May consist of any printable ASCII characters except '='. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret must + be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + description: |- + Container 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 + sleep: + description: Sleep represents a duration that + the container should sleep. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for backward compatibility. There is no validation of this field and + lifecycle hooks will fail at runtime when it is specified. + 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 Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 + sleep: + description: Sleep represents a duration that + the container should sleep. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for backward compatibility. There is no validation of this field and + lifecycle hooks will fail at runtime when it is specified. + 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 + stopSignal: + description: |- + StopSignal defines which signal will be sent to a container when it is being stopped. + If not specified, the default is defined by the container runtime in use. + StopSignal can only be set for Pods with a non-empty .spec.os.name + type: string + type: object + livenessProbe: + description: Probes are not allowed for ephemeral containers. + properties: + exec: + description: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: Probes are not allowed for ephemeral containers. + properties: + exec: + description: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 + resizePolicy: + description: Resources resize policy for the container. + items: + description: ContainerResizePolicy represents resource + resize policy for the container. + properties: + resourceName: + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. + type: string + restartPolicy: + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + description: |- + Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources + already allocated to the pod. + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + This field depends on the + DynamicResourceAllocation feature gate. + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry + in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + request: + description: |- + Request is the name chosen for a request in the referenced claim. + If empty, everything from the claim is made available, otherwise + only the result of this request. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + restartPolicy: + description: |- + Restart policy for the container to manage the restart behavior of each + container within a pod. + You cannot set this field on ephemeral containers. + type: string + restartPolicyRules: + description: |- + Represents a list of rules to be checked to determine if the + container should be restarted on exit. You cannot set this field on + ephemeral containers. + items: + description: ContainerRestartRule describes how a + container exit is handled. + properties: + action: + description: |- + Specifies the action taken on a container exit if the requirements + are satisfied. The only possible value is "Restart" to restart the + container. + type: string + exitCodes: + description: Represents the exit codes to check + on container exits. + properties: + operator: + description: |- + Represents the relationship between the container exit code(s) and the + specified values. Possible values are: + - In: the requirement is satisfied if the container exit code is in the + set of specified values. + - NotIn: the requirement is satisfied if the container exit code is + not in the set of specified values. + type: string + values: + description: |- + Specifies the set of values to check for container exit codes. + At most 255 elements are allowed. + items: + format: int32 + type: integer + type: array + x-kubernetes-list-type: set + required: + - operator + type: object + required: + - action + type: object + type: array + x-kubernetes-list-type: atomic + securityContext: + description: |- + Optional: SecurityContext defines the security options the ephemeral container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + 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 + Note that this field cannot be set when spec.os.name is windows. + type: boolean + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by this container. If set, this profile + overrides the pod's appArmorProfile. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + capabilities: + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + procMount: + description: |- + procMount denotes the type of proc mount to use for the containers. + The default value is Default which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. + type: string + readOnlyRootFilesystem: + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + 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. + 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. + Note that this field cannot be set when spec.os.name is linux. + 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 + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 uses the namespaces configured in the Pod spec. + + The container runtime must implement support for this feature. If the runtime does not + support namespace targeting then the result of setting this field is undefined. + 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 + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + description: |- + Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. + 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. + When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + (which defaults to None). + 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 + recursiveReadOnly: + description: |- + RecursiveReadOnly specifies whether read-only mounts should be handled + recursively. + + If ReadOnly is false, this field has no meaning and must be unspecified. + + If ReadOnly is true, and this field is set to Disabled, the mount is not made + recursively read-only. If this field is set to IfPossible, the mount is made + recursively read-only, if it is supported by the container runtime. If this + field is set to Enabled, the mount is made recursively read-only if it is + supported by the container runtime, otherwise the pod will not be started and + an error will be generated to indicate the reason. + + If this field is set to IfPossible or Enabled, MountPropagation must be set to + None (or be unspecified, which defaults to None). + + If this field is not specified, it is treated as an equivalent of Disabled. + type: string + 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 + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + 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 + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + hostAliases: + description: |- + HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts + file if specified. + 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 + x-kubernetes-list-type: atomic + ip: + description: IP address of the host file entry. + type: string + required: + - ip + type: object + type: array + x-kubernetes-list-map-keys: + - ip + x-kubernetes-list-type: map + 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. + When using HostNetwork you should specify ports so the scheduler is aware. + When `hostNetwork` is true, specified `hostPort` fields in port definitions must match `containerPort`, + and unspecified `hostPort` fields in port definitions are defaulted to match `containerPort`. + Default to false. + type: boolean + hostPID: + description: |- + Use the host's pid namespace. + Optional: Default to false. + type: boolean + hostUsers: + description: |- + Use the host's user namespace. + Optional: Default to true. + If set to true or not present, the pod will be run in the host user namespace, useful + for when the pod needs a feature only available to the host user namespace, such as + loading a kernel module with CAP_SYS_MODULE. + When set to false, a new userns is created for the pod. Setting false is useful for + mitigating container breakout vulnerabilities even allowing users to run their + containers as root without actually having root privileges on the host. + This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature. + 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 + hostnameOverride: + description: |- + HostnameOverride specifies an explicit override for the pod's hostname as perceived by the pod. + This field only specifies the pod's hostname and does not affect its DNS records. + When this field is set to a non-empty string: + - It takes precedence over the values set in `hostname` and `subdomain`. + - The Pod's hostname will be set to this value. + - `setHostnameAsFQDN` must be nil or set to false. + - `hostNetwork` must be set to false. + + This field must be a valid DNS subdomain as defined in RFC 1123 and contain at most 64 characters. + Requires the HostnameOverride feature gate to be enabled. + 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. + 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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 + 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 container 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(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 + x-kubernetes-list-type: atomic + command: + description: |- + Entrypoint array. Not executed within a shell. + The container 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(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 + x-kubernetes-list-type: atomic + 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. + May consist of any printable ASCII characters except '='. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously 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. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + fileKeyRef: + description: |- + FileKeyRef selects a key of the env file. + Requires the EnvFiles feature gate to be enabled. + properties: + key: + description: |- + The key within the env file. An invalid key will prevent the pod from starting. + The keys defined within a source may consist of any printable ASCII characters except '='. + During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + type: string + optional: + default: false + description: |- + Specify whether the file or its key must be defined. If the file or key + does not exist, then the env var is not published. + If optional is set to true and the specified key does not exist, + the environment variable will not be set in the Pod's containers. + + If optional is set to false and the specified key does not exist, + an error will be returned during Pod creation. + type: boolean + path: + description: |- + The path within the volume from which to select the file. + Must be relative and may not contain the '..' path or start with '..'. + type: string + volumeName: + description: The name of the volume mount + containing the env file. + type: string + required: + - key + - path + - volumeName + type: object + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source may consist of any printable ASCII characters except '='. + 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 or Secrets + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap + must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: |- + Optional text to prepend to the name of each environment variable. + May consist of any printable ASCII characters except '='. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the Secret must + be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + description: |- + Container 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 + sleep: + description: Sleep represents a duration that + the container should sleep. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for backward compatibility. There is no validation of this field and + lifecycle hooks will fail at runtime when it is specified. + 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 Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 + sleep: + description: Sleep represents a duration that + the container should sleep. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for backward compatibility. There is no validation of this field and + lifecycle hooks will fail at runtime when it is specified. + 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 + stopSignal: + description: |- + StopSignal defines which signal will be sent to a container when it is being stopped. + If not specified, the default is defined by the container runtime in use. + StopSignal can only be set for Pods with a non-empty .spec.os.name + type: string + 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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. 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. + Modifying this array with strategic merge patch may corrupt the data. + For more information See https://github.com/kubernetes/kubernetes/issues/108255. + 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: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 + resizePolicy: + description: Resources resize policy for the container. + items: + description: ContainerResizePolicy represents resource + resize policy for the container. + properties: + resourceName: + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. + type: string + restartPolicy: + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + description: |- + Compute Resources required by this container. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + This field depends on the + DynamicResourceAllocation feature gate. + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry + in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + request: + description: |- + Request is the name chosen for a request in the referenced claim. + If empty, everything from the claim is made available, otherwise + only the result of this request. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + restartPolicy: + description: |- + RestartPolicy defines the restart behavior of individual containers in a pod. + This overrides the pod-level restart policy. When this field is not specified, + the restart behavior is defined by the Pod's restart policy and the container type. + Additionally, setting the RestartPolicy as "Always" for the init container will + have the following effect: + this init container will be continually restarted on + exit until all regular containers have terminated. Once all regular + containers have completed, all init containers with restartPolicy "Always" + will be shut down. This lifecycle differs from normal init containers and + is often referred to as a "sidecar" container. Although this init + container still starts in the init container sequence, it does not wait + for the container to complete before proceeding to the next init + container. Instead, the next init container starts immediately after this + init container is started, or after any startupProbe has successfully + completed. + type: string + restartPolicyRules: + description: |- + Represents a list of rules to be checked to determine if the + container should be restarted on exit. The rules are evaluated in + order. Once a rule matches a container exit condition, the remaining + rules are ignored. If no rule matches the container exit condition, + the Container-level restart policy determines the whether the container + is restarted or not. Constraints on the rules: + - At most 20 rules are allowed. + - Rules can have the same action. + - Identical rules are not forbidden in validations. + When rules are specified, container MUST set RestartPolicy explicitly + even it if matches the Pod's RestartPolicy. + items: + description: ContainerRestartRule describes how a + container exit is handled. + properties: + action: + description: |- + Specifies the action taken on a container exit if the requirements + are satisfied. The only possible value is "Restart" to restart the + container. + type: string + exitCodes: + description: Represents the exit codes to check + on container exits. + properties: + operator: + description: |- + Represents the relationship between the container exit code(s) and the + specified values. Possible values are: + - In: the requirement is satisfied if the container exit code is in the + set of specified values. + - NotIn: the requirement is satisfied if the container exit code is + not in the set of specified values. + type: string + values: + description: |- + Specifies the set of values to check for container exit codes. + At most 255 elements are allowed. + items: + format: int32 + type: integer + type: array + x-kubernetes-list-type: set + required: + - operator + type: object + required: + - action + type: object + type: array + x-kubernetes-list-type: atomic + securityContext: + description: |- + SecurityContext defines the security options the container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + 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 + Note that this field cannot be set when spec.os.name is windows. + type: boolean + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by this container. If set, this profile + overrides the pod's appArmorProfile. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + capabilities: + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + procMount: + description: |- + procMount denotes the type of proc mount to use for the containers. + The default value is Default which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. + type: string + readOnlyRootFilesystem: + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + 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. + 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. + Note that this field cannot be set when spec.os.name is linux. + 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 + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + 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. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies a command to execute + in the container. + 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 + x-kubernetes-list-type: atomic + 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 + grpc: + description: GRPC specifies a GRPC HealthCheckRequest. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + default: "" + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies an HTTP GET 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. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + 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 a connection to + a TCP port. + 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 + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + 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. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + 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 + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + 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. + When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + (which defaults to None). + 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 + recursiveReadOnly: + description: |- + RecursiveReadOnly specifies whether read-only mounts should be handled + recursively. + + If ReadOnly is false, this field has no meaning and must be unspecified. + + If ReadOnly is true, and this field is set to Disabled, the mount is not made + recursively read-only. If this field is set to IfPossible, the mount is made + recursively read-only, if it is supported by the container runtime. If this + field is set to Enabled, the mount is made recursively read-only if it is + supported by the container runtime, otherwise the pod will not be started and + an error will be generated to indicate the reason. + + If this field is set to IfPossible or Enabled, MountPropagation must be set to + None (or be unspecified, which defaults to None). + + If this field is not specified, it is treated as an equivalent of Disabled. + type: string + 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 + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + 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 + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + nodeName: + description: |- + NodeName indicates in which node this pod is scheduled. + If empty, this pod is a candidate for scheduling by the scheduler defined in schedulerName. + Once this field is set, the kubelet for this node becomes responsible for the lifecycle of this pod. + This field should not be used to express a desire for the pod to be scheduled on a specific node. + https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodename + 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 + x-kubernetes-map-type: atomic + os: + description: |- + Specifies the OS of the containers in the pod. + Some pod and container fields are restricted if this is set. + + If the OS field is set to linux, the following fields must be unset: + -securityContext.windowsOptions + + If the OS field is set to windows, following fields must be unset: + - spec.hostPID + - spec.hostIPC + - spec.hostUsers + - spec.resources + - spec.securityContext.appArmorProfile + - spec.securityContext.seLinuxOptions + - spec.securityContext.seccompProfile + - spec.securityContext.fsGroup + - spec.securityContext.fsGroupChangePolicy + - spec.securityContext.sysctls + - spec.shareProcessNamespace + - spec.securityContext.runAsUser + - spec.securityContext.runAsGroup + - spec.securityContext.supplementalGroups + - spec.securityContext.supplementalGroupsPolicy + - spec.containers[*].securityContext.appArmorProfile + - spec.containers[*].securityContext.seLinuxOptions + - spec.containers[*].securityContext.seccompProfile + - spec.containers[*].securityContext.capabilities + - spec.containers[*].securityContext.readOnlyRootFilesystem + - spec.containers[*].securityContext.privileged + - spec.containers[*].securityContext.allowPrivilegeEscalation + - spec.containers[*].securityContext.procMount + - spec.containers[*].securityContext.runAsUser + - spec.containers[*].securityContext.runAsGroup + properties: + name: + description: |- + Name is the name of the operating system. The currently supported values are linux and windows. + Additional value may be defined in future and can be one of: + https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration + Clients should expect to handle additional values and treat unrecognized values in this field as os: null + type: string + required: + - name + 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/688-pod-overhead/README.md + type: object + preemptionPolicy: + description: |- + PreemptionPolicy is the Policy for preempting pods with lower priority. + One of Never, PreemptLowerPriority. + Defaults to PreemptLowerPriority if unset. + 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/580-pod-readiness-gates + 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 + x-kubernetes-list-type: atomic + resourceClaims: + description: |- + ResourceClaims defines which ResourceClaims must be allocated + and reserved before the Pod is allowed to start. The resources + will be made available to those containers which consume them + by name. + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + This field is immutable. + items: + description: |- + PodResourceClaim references exactly one ResourceClaim, either directly + or by naming a ResourceClaimTemplate which is then turned into a ResourceClaim + for the pod. + + It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. + Containers that need access to the ResourceClaim reference it with this name. + properties: + name: + description: |- + Name uniquely identifies this resource claim inside the pod. + This must be a DNS_LABEL. + type: string + resourceClaimName: + description: |- + ResourceClaimName is the name of a ResourceClaim object in the same + namespace as this pod. + + Exactly one of ResourceClaimName and ResourceClaimTemplateName must + be set. + type: string + resourceClaimTemplateName: + description: |- + ResourceClaimTemplateName is the name of a ResourceClaimTemplate + object in the same namespace as this pod. + + The template will be used to create a new ResourceClaim, which will + be bound to this pod. When this pod is deleted, the ResourceClaim + will also be deleted. The pod name and resource name, along with a + generated component, will be used to form a unique name for the + ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. + + This field is immutable and no changes will be made to the + corresponding ResourceClaim by the control plane after creating the + ResourceClaim. + + Exactly one of ResourceClaimName and ResourceClaimTemplateName must + be set. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + resources: + description: |- + Resources is the total amount of CPU and Memory resources required by all + containers in the pod. It supports specifying Requests and Limits for + "cpu", "memory" and "hugepages-" resource names only. ResourceClaims are not supported. + + This field enables fine-grained control over resource allocation for the + entire pod, allowing resource sharing among containers in a pod. + + This is an alpha field and requires enabling the PodLevelResources feature + gate. + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + This field depends on the + DynamicResourceAllocation feature gate. + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + request: + description: |- + Request is the name chosen for a request in the referenced claim. + If empty, everything from the claim is made available, otherwise + only the result of this request. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + restartPolicy: + description: |- + Restart policy for all containers within the pod. + One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. + 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/585-runtime-class + 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 + schedulingGates: + description: |- + SchedulingGates is an opaque list of values that if specified will block scheduling the pod. + If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the + scheduler will not attempt to schedule the pod. + + SchedulingGates can only be set at pod creation time, and be removed only afterwards. + items: + description: PodSchedulingGate is associated to a Pod to + guard its scheduling. + properties: + name: + description: |- + Name of the scheduling gate. + Each scheduling gate must have a unique name field. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + 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: + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by the containers in this pod. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + 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: + + 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. + Note that this field cannot be set when spec.os.name is windows. + 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, "Always" is used. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + seLinuxChangePolicy: + description: |- + seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod. + It has no effect on nodes that do not support SELinux or to volumes does not support SELinux. + Valid values are "MountOption" and "Recursive". + + "Recursive" means relabeling of all files on all Pod volumes by the container runtime. + This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node. + + "MountOption" mounts all eligible Pod volumes with `-o context` mount option. + This requires all Pods that share the same volume to use the same SELinux label. + It is not possible to share the same volume among privileged and unprivileged Pods. + Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes + whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their + CSIDriver instance. Other volumes are always re-labelled recursively. + "MountOption" value is allowed only when SELinuxMount feature gate is enabled. + + If not specified and SELinuxMount feature gate is enabled, "MountOption" is used. + If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes + and "Recursive" for all other volumes. + + This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers. + + All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state. + Note that this field cannot be set when spec.os.name is windows. + type: string + 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. + Note that this field cannot be set when spec.os.name is windows. + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + 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. + 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 and fsGroup (if specified). If + the SupplementalGroupsPolicy feature is enabled, the + supplementalGroupsPolicy field determines whether these are in addition + to or instead of any group memberships defined in the container image. + If unspecified, no additional groups are added, though group memberships + defined in the container image may still be used, depending on the + supplementalGroupsPolicy field. + Note that this field cannot be set when spec.os.name is windows. + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + supplementalGroupsPolicy: + description: |- + Defines how supplemental groups of the first container processes are calculated. + Valid values are "Merge" and "Strict". If not specified, "Merge" is used. + (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled + and the container runtime must implement support for this feature. + Note that this field cannot be set when spec.os.name is windows. + type: string + 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. + Note that this field cannot be set when spec.os.name is windows. + 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 + x-kubernetes-list-type: atomic + 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. + Note that this field cannot be set when spec.os.name is linux. + 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 + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + 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 deprecated 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 stop immediately via + the kill signal (no opportunity to shut down). + 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 + x-kubernetes-list-type: atomic + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select the pods over which + spreading will be calculated. The keys are used to lookup values from the + incoming pod labels, those key-value labels are ANDed with labelSelector + to select the group of existing pods over which spreading will be calculated + for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + MatchLabelKeys cannot be set when LabelSelector isn't set. + Keys that don't exist in the incoming pod labels will + be ignored. A null or empty list means only match against labelSelector. + + This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). + items: + type: string + type: array + x-kubernetes-list-type: atomic + 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. + The global minimum is the minimum number of matching pods in an eligible domain + or zero if the number of eligible domains is less than MinDomains. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 2/2/1: + In this case, the global minimum is 1. + | zone1 | zone2 | zone3 | + | P P | P P | P | + - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; + scheduling it onto zone1(zone2) would make the ActualSkew(3-1) 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 + minDomains: + description: |- + MinDomains indicates a minimum number of eligible domains. + When the number of eligible domains with matching topology keys is less than minDomains, + Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. + And when the number of eligible domains with matching topology keys equals or greater than minDomains, + this value has no effect on scheduling. + As a result, when the number of eligible domains is less than minDomains, + scheduler won't schedule more than maxSkew Pods to those domains. + If value is nil, the constraint behaves as if MinDomains is equal to 1. + Valid values are integers greater than 0. + When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + + For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same + labelSelector spread as 2/2/2: + | zone1 | zone2 | zone3 | + | P P | P P | P P | + The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. + In this situation, new pod with the same labelSelector cannot be scheduled, + because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, + it will violate MaxSkew. + format: int32 + type: integer + nodeAffinityPolicy: + description: |- + NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector + when calculating pod topology spread skew. Options are: + - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. + - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + + If this value is nil, the behavior is equivalent to the Honor policy. + type: string + nodeTaintsPolicy: + description: |- + NodeTaintsPolicy indicates how we will treat node taints when calculating + pod topology spread skew. Options are: + - Honor: nodes without taints, along with tainted nodes for which the incoming pod + has a toleration, are included. + - Ignore: node taints are ignored. All nodes are included. + + If this value is nil, the behavior is equivalent to the Ignore policy. + type: string + 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. + We define a domain as a particular instance of a topology. + Also, we define an eligible domain as a domain whose nodes meet the requirements of + nodeAffinityPolicy and nodeTaintsPolicy. + e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. + And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. + 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 assignment 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. + Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree + awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + properties: + fsType: + description: |- + fsType is the 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 + type: string + partition: + description: |- + partition is 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: |- + readOnly value true will force the readOnly setting in VolumeMounts. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + type: boolean + volumeID: + description: |- + volumeID is 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. + Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type + are redirected to the disk.csi.azure.com CSI driver. + properties: + cachingMode: + description: 'cachingMode is the Host Caching mode: + None, Read Only, Read Write.' + type: string + diskName: + description: diskName is the Name of the data disk + in the blob storage + type: string + diskURI: + description: diskURI is the URI of data disk in + the blob storage + type: string + fsType: + default: ext4 + description: |- + fsType is 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: 'kind expected values are 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: + default: false + description: |- + readOnly 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. + Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type + are redirected to the file.csi.azure.com CSI driver. + properties: + readOnly: + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + secretName: + description: secretName is the name of secret that + contains Azure Storage Account Name and Key + type: string + shareName: + description: shareName is the azure 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. + Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported. + properties: + monitors: + description: |- + monitors is 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 + x-kubernetes-list-type: atomic + path: + description: 'path is Optional: Used as the mounted + root, rather than the full Ceph tree, default + is /' + type: string + readOnly: + description: |- + readOnly is 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: |- + secretFile is 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: |- + secretRef is 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + user: + description: |- + user is 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. + Deprecated: Cinder is deprecated. All operations for the in-tree cinder type + are redirected to the cinder.csi.openstack.org CSI driver. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md + properties: + fsType: + description: |- + fsType is the 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: |- + readOnly 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: |- + secretRef is optional: points to a secret object containing parameters used to connect + to OpenStack. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + volumeID: + description: |- + volumeID 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: |- + defaultMode is 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 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: key is the key to project. + type: string + mode: + description: |- + mode is 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: |- + path is 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 + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: optional specify whether the ConfigMap + or its keys must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + csi: + description: csi (Container Storage Interface) represents + ephemeral storage that is handled by certain external + CSI drivers. + 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: |- + fsType 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + readOnly: + description: |- + readOnly 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, + namespace and uid 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 + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + 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: |- + medium represents 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: |- + sizeLimit is the 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: https://kubernetes.io/docs/concepts/storage/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. + 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. + properties: + 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). + + 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. + 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 + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + 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. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + 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 + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + 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 + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + 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-resources-containers/ + 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. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string or nil value indicates that no + VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + this field can be reset to its previous value (including nil) to cancel the modification. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + 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: |- + fsType is the 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 + lun: + description: 'lun is Optional: FC target lun number' + format: int32 + type: integer + readOnly: + description: |- + readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + targetWWNs: + description: 'targetWWNs is Optional: FC target + worldwide names (WWNs)' + items: + type: string + type: array + x-kubernetes-list-type: atomic + wwids: + description: |- + wwids 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 + x-kubernetes-list-type: atomic + type: object + flexVolume: + description: |- + flexVolume represents a generic volume resource that is + provisioned/attached using an exec based plugin. + Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead. + properties: + driver: + description: driver is the name of the driver to + use for this volume. + type: string + fsType: + description: |- + fsType is the 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: 'options is Optional: this field holds + extra command options if any.' + type: object + readOnly: + description: |- + readOnly is Optional: defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + secretRef: + description: |- + secretRef is 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + 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. + Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported. + properties: + datasetName: + description: |- + datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker + should be considered as deprecated + type: string + datasetUUID: + description: datasetUUID is the 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. + Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree + gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + properties: + fsType: + description: |- + fsType is 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 + type: string + partition: + description: |- + partition is 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: |- + pdName is 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: |- + directory is the 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 is the URL + type: string + revision: + description: revision is the 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. + Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported. + properties: + endpoints: + description: endpoints is the endpoint name that + details Glusterfs topology. + 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 + 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 + image: + description: |- + image represents an OCI object (a container image or artifact) pulled and mounted on the kubelet's host machine. + The volume is resolved at pod startup depending on which PullPolicy value is provided: + + - Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + - Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + - IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + + The volume gets re-resolved if the pod gets deleted and recreated, which means that new remote content will become available on pod recreation. + A failure to resolve or pull the image during pod startup will block containers from starting and may add significant latency. Failures will be retried using normal volume backoff and will be reported on the pod reason and message. + The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field. + The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images. + The volume will be mounted read-only (ro) and non-executable files (noexec). + Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33. + The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type. + properties: + pullPolicy: + description: |- + Policy for pulling OCI objects. Possible values are: + Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + type: string + reference: + description: |- + Required: Image or artifact reference to be used. + Behaves in the same way as pod.spec.containers[*].image. + Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. + 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 + 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://kubernetes.io/docs/concepts/storage/volumes/#iscsi + properties: + chapAuthDiscovery: + description: chapAuthDiscovery defines whether support + iSCSI Discovery CHAP authentication + type: boolean + chapAuthSession: + description: chapAuthSession defines whether support + iSCSI Session CHAP authentication + type: boolean + fsType: + description: |- + fsType is the 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 + type: string + initiatorName: + description: |- + initiatorName is the custom iSCSI Initiator Name. + If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface + : will be created for the connection. + type: string + iqn: + description: iqn is the target iSCSI Qualified Name. + type: string + iscsiInterface: + default: default + description: |- + iscsiInterface is the interface Name that uses an iSCSI transport. + Defaults to 'default' (tcp). + type: string + lun: + description: lun represents iSCSI Target Lun number. + format: int32 + type: integer + portals: + description: |- + portals is the 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 + x-kubernetes-list-type: atomic + readOnly: + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + type: boolean + secretRef: + description: secretRef is the CHAP Secret for iSCSI + target and initiator authentication + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + targetPortal: + description: |- + targetPortal is 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: |- + name of the volume. + 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: |- + readOnly 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. + Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported. + properties: + fsType: + description: |- + fsType is the 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: pdID is the 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. + Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type + are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate + is on. + 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: |- + readOnly 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: projected items for all in one resources + secrets, configmaps, and downward API + properties: + defaultMode: + description: |- + defaultMode are the 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: |- + sources is the list of volume projections. Each entry in this list + handles one source. + items: + description: |- + Projection that may be projected along with other supported volume types. + Exactly one of these fields must be set. + properties: + clusterTrustBundle: + description: |- + ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + of ClusterTrustBundle objects in an auto-updating file. + + Alpha, gated by the ClusterTrustBundleProjection feature gate. + + ClusterTrustBundle objects can either be selected by name, or by the + combination of signer name and a label selector. + + Kubelet performs aggressive normalization of the PEM contents written + into the pod filesystem. Esoteric PEM features such as inter-block + comments and block headers are stripped. Certificates are deduplicated. + The ordering of certificates within the file is arbitrary, and Kubelet + may change the order over time. + properties: + labelSelector: + description: |- + Select all ClusterTrustBundles that match this label selector. Only has + effect if signerName is set. Mutually-exclusive with name. If unset, + interpreted as "match nothing". If set but empty, interpreted as "match + everything". + 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 + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + 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 + x-kubernetes-map-type: atomic + name: + description: |- + Select a single ClusterTrustBundle by object name. Mutually-exclusive + with signerName and labelSelector. + type: string + optional: + description: |- + If true, don't block pod startup if the referenced ClusterTrustBundle(s) + aren't available. If using name, then the named ClusterTrustBundle is + allowed not to exist. If using signerName, then the combination of + signerName and labelSelector is allowed to match zero + ClusterTrustBundles. + type: boolean + path: + description: Relative path from the volume + root to write the bundle. + type: string + signerName: + description: |- + Select all ClusterTrustBundles that match this signer name. + Mutually-exclusive with name. The contents of all selected + ClusterTrustBundles will be unified and deduplicated. + type: string + required: + - path + type: object + configMap: + description: configMap information about the + configMap data to project + properties: + items: + description: |- + items 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: key is the key to project. + type: string + mode: + description: |- + mode is 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: |- + path is 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 + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: optional specify whether + the ConfigMap or its keys must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI 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, namespace and uid + 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 + x-kubernetes-map-type: atomic + 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 + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podCertificate: + description: |- + Projects an auto-rotating credential bundle (private key and certificate + chain) that the pod can use either as a TLS client or server. + + Kubelet generates a private key and uses it to send a + PodCertificateRequest to the named signer. Once the signer approves the + request and issues a certificate chain, Kubelet writes the key and + certificate chain to the pod filesystem. The pod does not start until + certificates have been issued for each podCertificate projected volume + source in its spec. + + Kubelet will begin trying to rotate the certificate at the time indicated + by the signer using the PodCertificateRequest.Status.BeginRefreshAt + timestamp. + + Kubelet can write a single file, indicated by the credentialBundlePath + field, or separate files, indicated by the keyPath and + certificateChainPath fields. + + The credential bundle is a single file in PEM format. The first PEM + entry is the private key (in PKCS#8 format), and the remaining PEM + entries are the certificate chain issued by the signer (typically, + signers will return their certificate chain in leaf-to-root order). + + Prefer using the credential bundle format, since your application code + can read it atomically. If you use keyPath and certificateChainPath, + your application must make two separate file reads. If these coincide + with a certificate rotation, it is possible that the private key and leaf + certificate you read may not correspond to each other. Your application + will need to check for this condition, and re-read until they are + consistent. + + The named signer controls chooses the format of the certificate it + issues; consult the signer implementation's documentation to learn how to + use the certificates it issues. + properties: + certificateChainPath: + description: |- + Write the certificate chain at this path in the projected volume. + + Most applications should use credentialBundlePath. When using keyPath + and certificateChainPath, your application needs to check that the key + and leaf certificate are consistent, because it is possible to read the + files mid-rotation. + type: string + credentialBundlePath: + description: |- + Write the credential bundle at this path in the projected volume. + + The credential bundle is a single file that contains multiple PEM blocks. + The first PEM block is a PRIVATE KEY block, containing a PKCS#8 private + key. + + The remaining blocks are CERTIFICATE blocks, containing the issued + certificate chain from the signer (leaf and any intermediates). + + Using credentialBundlePath lets your Pod's application code make a single + atomic read that retrieves a consistent key and certificate chain. If you + project them to separate files, your application code will need to + additionally check that the leaf certificate was issued to the key. + type: string + keyPath: + description: |- + Write the key at this path in the projected volume. + + Most applications should use credentialBundlePath. When using keyPath + and certificateChainPath, your application needs to check that the key + and leaf certificate are consistent, because it is possible to read the + files mid-rotation. + type: string + keyType: + description: |- + The type of keypair Kubelet will generate for the pod. + + Valid values are "RSA3072", "RSA4096", "ECDSAP256", "ECDSAP384", + "ECDSAP521", and "ED25519". + type: string + maxExpirationSeconds: + description: |- + maxExpirationSeconds is the maximum lifetime permitted for the + certificate. + + Kubelet copies this value verbatim into the PodCertificateRequests it + generates for this projection. + + If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver + will reject values shorter than 3600 (1 hour). The maximum allowable + value is 7862400 (91 days). + + The signer implementation is then free to issue a certificate with any + lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 + seconds (1 hour). This constraint is enforced by kube-apiserver. + `kubernetes.io` signers will never issue certificates with a lifetime + longer than 24 hours. + format: int32 + type: integer + signerName: + description: Kubelet's generated CSRs + will be addressed to this signer. + type: string + required: + - keyType + - signerName + type: object + secret: + description: secret information about the + secret data to project + properties: + items: + description: |- + items 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: key is the key to project. + type: string + mode: + description: |- + mode is 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: |- + path is 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 + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: optional field specify whether + the Secret or its key must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is 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 + x-kubernetes-list-type: atomic + type: object + quobyte: + description: |- + quobyte represents a Quobyte mount on the host that shares a pod's lifetime. + Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported. + 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. + Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported. + properties: + fsType: + description: |- + fsType is the 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 + type: string + image: + description: |- + image is the rados image name. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + type: string + keyring: + default: /etc/ceph/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: |- + monitors is a collection of Ceph monitors. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + items: + type: string + type: array + x-kubernetes-list-type: atomic + pool: + default: rbd + description: |- + pool is 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + user: + default: admin + description: |- + user is 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. + Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported. + properties: + fsType: + default: xfs + description: |- + fsType is the 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: gateway is the host address of the + ScaleIO API Gateway. + type: string + protectionDomain: + description: protectionDomain is the name of the + ScaleIO Protection Domain for the configured storage. + type: string + readOnly: + description: |- + readOnly 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + sslEnabled: + description: sslEnabled Flag enable/disable SSL + communication with Gateway, default false + type: boolean + storageMode: + default: ThinProvisioned + description: |- + storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. + Default is ThinProvisioned. + type: string + storagePool: + description: storagePool is the ScaleIO Storage + Pool associated with the protection domain. + type: string + system: + description: system is the name of the storage system + as configured in ScaleIO. + type: string + volumeName: + description: |- + volumeName is 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: |- + defaultMode is 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 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: key is the key to project. + type: string + mode: + description: |- + mode is 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: |- + path is 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 + x-kubernetes-list-type: atomic + optional: + description: optional field specify whether the + Secret or its keys must be defined + type: boolean + secretName: + description: |- + secretName is the 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. + Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported. + properties: + fsType: + description: |- + fsType is the 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: |- + readOnly 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: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + 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. + Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type + are redirected to the csi.vsphere.vmware.com CSI driver. + properties: + fsType: + description: |- + fsType is 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: storagePolicyID is the storage Policy + Based Management (SPBM) profile ID associated + with the StoragePolicyName. + type: string + storagePolicyName: + description: storagePolicyName is the storage Policy + Based Management (SPBM) profile name. + type: string + volumePath: + description: volumePath is the path that identifies + vSphere volume vmdk + type: string + required: + - volumePath + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + required: + - containers + type: object + type: object + type: + default: rw + description: 'Type of service to forward traffic to. Default: `rw`.' + enum: + - rw + - ro + - r + type: string + required: + - cluster + - pgbouncer + type: object + status: + description: |- + Most recently observed status of the Pooler. This data may not be up to + date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + instances: + description: The number of pods trying to be scheduled + format: int32 + type: integer + secrets: + description: The resource version of the config object + properties: + clientCA: + description: The client CA secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + clientTLS: + description: The client TLS secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + pgBouncerSecrets: + description: The version of the secrets used by PgBouncer + properties: + authQuery: + description: The auth query secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + type: object + serverCA: + description: The server CA secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + serverTLS: + description: The server TLS secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + type: object + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + scale: + specReplicasPath: .spec.instances + statusReplicasPath: .status.instances + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: publications.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Publication + listKind: PublicationList + plural: publications + singular: publication + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .spec.name + name: PG Name + type: string + - jsonPath: .status.applied + name: Applied + type: boolean + - description: Latest reconciliation message + jsonPath: .status.message + name: Message + type: string + name: v1 + schema: + openAPIV3Schema: + description: Publication is the Schema for the publications API + 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: PublicationSpec defines the desired state of Publication + properties: + cluster: + description: The name of the PostgreSQL cluster that identifies the + "publisher" + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + dbname: + description: |- + The name of the database where the publication will be installed in + the "publisher" cluster + type: string + x-kubernetes-validations: + - message: dbname is immutable + rule: self == oldSelf + name: + description: The name of the publication inside PostgreSQL + type: string + x-kubernetes-validations: + - message: name is immutable + rule: self == oldSelf + parameters: + additionalProperties: + type: string + description: |- + Publication parameters part of the `WITH` clause as expected by + PostgreSQL `CREATE PUBLICATION` command + type: object + publicationReclaimPolicy: + default: retain + description: The policy for end-of-life maintenance of this publication + enum: + - delete + - retain + type: string + target: + description: Target of the publication as expected by PostgreSQL `CREATE + PUBLICATION` command + properties: + allTables: + description: |- + Marks the publication as one that replicates changes for all tables + in the database, including tables created in the future. + Corresponding to `FOR ALL TABLES` in PostgreSQL. + type: boolean + x-kubernetes-validations: + - message: allTables is immutable + rule: self == oldSelf + objects: + description: Just the following schema objects + items: + description: PublicationTargetObject is an object to publish + properties: + table: + description: |- + Specifies a list of tables to add to the publication. Corresponding + to `FOR TABLE` in PostgreSQL. + properties: + columns: + description: The columns to publish + items: + type: string + type: array + name: + description: The table name + type: string + only: + description: Whether to limit to the table only or include + all its descendants + type: boolean + schema: + description: The schema name + type: string + required: + - name + type: object + tablesInSchema: + description: |- + Marks the publication as one that replicates changes for all tables + in the specified list of schemas, including tables created in the + future. Corresponding to `FOR TABLES IN SCHEMA` in PostgreSQL. + type: string + type: object + x-kubernetes-validations: + - message: tablesInSchema and table are mutually exclusive + rule: (has(self.tablesInSchema) && !has(self.table)) || (!has(self.tablesInSchema) + && has(self.table)) + maxItems: 100000 + type: array + x-kubernetes-validations: + - message: specifying a column list when the publication also + publishes tablesInSchema is not supported + rule: '!(self.exists(o, has(o.table) && has(o.table.columns)) + && self.exists(o, has(o.tablesInSchema)))' + type: object + x-kubernetes-validations: + - message: allTables and objects are mutually exclusive + rule: (has(self.allTables) && !has(self.objects)) || (!has(self.allTables) + && has(self.objects)) + required: + - cluster + - dbname + - name + - target + type: object + status: + description: PublicationStatus defines the observed state of Publication + properties: + applied: + description: Applied is true if the publication was reconciled correctly + type: boolean + message: + description: Message is the reconciliation output message + type: string + observedGeneration: + description: |- + A sequence number representing the latest + desired state that was synchronized + format: int64 + type: integer + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: scheduledbackups.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: ScheduledBackup + listKind: ScheduledBackupList + plural: scheduledbackups + singular: scheduledbackup + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .status.lastScheduleTime + name: Last Backup + type: date + name: v1 + schema: + openAPIV3Schema: + description: ScheduledBackup is the Schema for the scheduledbackups API + 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 ScheduledBackup. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + backupOwnerReference: + default: none + description: |- + Indicates which ownerReference should be put inside the created backup resources.
+ - none: no owner reference for created backup objects (same behavior as before the field was introduced)
+ - self: sets the Scheduled backup object as owner of the backup
+ - cluster: set the cluster as owner of the backup
+ enum: + - none + - self + - cluster + type: string + cluster: + description: The cluster to backup + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + immediate: + description: If the first backup has to be immediately start after + creation or not + type: boolean + method: + default: barmanObjectStore + description: |- + The backup method to be used, possible options are `barmanObjectStore`, + `volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`. + enum: + - barmanObjectStore + - volumeSnapshot + - plugin + type: string + online: + description: |- + Whether the default type of backup with volume snapshots is + online/hot (`true`, default) or offline/cold (`false`) + Overrides the default setting specified in the cluster field '.spec.backup.volumeSnapshot.online' + type: boolean + onlineConfiguration: + description: |- + Configuration parameters to control the online/hot backup with volume snapshots + Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza + properties: + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + waitForArchive: + default: true + description: |- + If false, the function will return immediately after the backup is completed, + without waiting for WAL to be archived. + This behavior is only useful with backup software that independently monitors WAL archiving. + Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + enabled. + On a standby, this means that it will wait only when archive_mode = always. + If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + an immediate segment switch. + type: boolean + type: object + pluginConfiguration: + description: Configuration parameters passed to the plugin managing + this backup + properties: + name: + description: Name is the name of the plugin managing this backup + type: string + parameters: + additionalProperties: + type: string + description: |- + Parameters are the configuration parameters passed to the backup + plugin for this backup + type: object + required: + - name + type: object + schedule: + description: |- + The schedule does not follow the same format used in Kubernetes CronJobs + as it includes an additional seconds specifier, + see https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format + type: string + suspend: + description: If this backup is suspended or not + type: boolean + target: + description: |- + The policy to decide which instance should perform this backup. If empty, + it defaults to `cluster.spec.backup.target`. + Available options are empty string, `primary` and `prefer-standby`. + `primary` to have backups run always on primary instances, + `prefer-standby` to have backups run preferably on the most updated + standby, if available. + enum: + - primary + - prefer-standby + type: string + required: + - cluster + - schedule + type: object + status: + description: |- + Most recently observed status of the ScheduledBackup. This data may not be up + to date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + lastCheckTime: + description: The latest time the schedule + format: date-time + type: string + lastScheduleTime: + description: Information when was the last time that backup was successfully + scheduled. + format: date-time + type: string + nextScheduleTime: + description: Next time we will run a backup + format: date-time + type: string + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.19.0 + helm.sh/resource-policy: keep + name: subscriptions.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Subscription + listKind: SubscriptionList + plural: subscriptions + singular: subscription + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .spec.name + name: PG Name + type: string + - jsonPath: .status.applied + name: Applied + type: boolean + - description: Latest reconciliation message + jsonPath: .status.message + name: Message + type: string + name: v1 + schema: + openAPIV3Schema: + description: Subscription is the Schema for the subscriptions API + 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: SubscriptionSpec defines the desired state of Subscription + properties: + cluster: + description: The name of the PostgreSQL cluster that identifies the + "subscriber" + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + type: object + x-kubernetes-map-type: atomic + dbname: + description: |- + The name of the database where the publication will be installed in + the "subscriber" cluster + type: string + x-kubernetes-validations: + - message: dbname is immutable + rule: self == oldSelf + externalClusterName: + description: The name of the external cluster with the publication + ("publisher") + type: string + name: + description: The name of the subscription inside PostgreSQL + type: string + x-kubernetes-validations: + - message: name is immutable + rule: self == oldSelf + parameters: + additionalProperties: + type: string + description: |- + Subscription parameters included in the `WITH` clause of the PostgreSQL + `CREATE SUBSCRIPTION` command. Most parameters cannot be changed + after the subscription is created and will be ignored if modified + later, except for a limited set documented at: + https://www.postgresql.org/docs/current/sql-altersubscription.html#SQL-ALTERSUBSCRIPTION-PARAMS-SET + type: object + publicationDBName: + description: |- + The name of the database containing the publication on the external + cluster. Defaults to the one in the external cluster definition. + type: string + publicationName: + description: |- + The name of the publication inside the PostgreSQL database in the + "publisher" + type: string + subscriptionReclaimPolicy: + default: retain + description: The policy for end-of-life maintenance of this subscription + enum: + - delete + - retain + type: string + required: + - cluster + - dbname + - externalClusterName + - name + - publicationName + type: object + status: + description: SubscriptionStatus defines the observed state of Subscription + properties: + applied: + description: Applied is true if the subscription was reconciled correctly + type: boolean + message: + description: Message is the reconciliation output message + type: string + observedGeneration: + description: |- + A sequence number representing the latest + desired state that was synchronized + format: int64 + type: integer + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +{{- end }} \ No newline at end of file From 9996024ce21ece51cbe5b7521ec9c22bb19e9651 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 15:37:39 +0530 Subject: [PATCH 25/32] removed timescale-db namespace --- charts/devtron/templates/timescale-db.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index e23acc7dd9..0c91f50b32 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -1,14 +1,4 @@ {{- if .Values.devtronEnterprise.finops.enabled }} -apiVersion: v1 -kind: Namespace -metadata: - name: timescale-db - labels: - name: devtron - annotations: - "helm.sh/hook": pre-install - "helm.sh/resource-policy": keep ---- apiVersion: postgresql.cnpg.io/v1 kind: ImageCatalog metadata: From cb9223de5d838dc96fb4114d33023213c632f0fb Mon Sep 17 00:00:00 2001 From: akshatsinha007 Date: Wed, 24 Dec 2025 16:29:31 +0530 Subject: [PATCH 26/32] switched the timescale related configs to values.yaml driven --- charts/devtron/devtron-bom.yaml | 4 +++- charts/devtron/templates/NOTES.txt | 2 +- charts/devtron/templates/configmap-secret.yaml | 3 --- charts/devtron/templates/cost-sync-job.yaml | 15 ++++++++++++--- charts/devtron/templates/devtron-scc.yaml | 4 ++++ charts/devtron/templates/timescale-db.yaml | 17 +++++++++-------- charts/devtron/values.yaml | 10 ++++++---- 7 files changed, 35 insertions(+), 20 deletions(-) diff --git a/charts/devtron/devtron-bom.yaml b/charts/devtron/devtron-bom.yaml index 526486df92..a8c18e789e 100644 --- a/charts/devtron/devtron-bom.yaml +++ b/charts/devtron/devtron-bom.yaml @@ -245,8 +245,10 @@ devtronEnterprise: enabled: false costSync: image: "" + schedule: "* 2 * * *" + timeZone: UTC timescale: - storageClass: "" + volumeSize: 5Gi casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" diff --git a/charts/devtron/templates/NOTES.txt b/charts/devtron/templates/NOTES.txt index 3399e5f0e1..9a68ec31f9 100644 --- a/charts/devtron/templates/NOTES.txt +++ b/charts/devtron/templates/NOTES.txt @@ -2,7 +2,7 @@ {{- $liveCm := lookup "v1" "ConfigMap" "devtroncd" "devtron-custom-cm" }} {{- $currentValue := pluck "POSTGRES_MIGRATED" $liveCm.data | first | default "" }} {{- if ne $currentValue "14" }} - {{- fail "Upgrade Failed Please ensure that you have completed the pre-requisites mentioned in https://docs.devtron.ai/upgrade/devtron-upgrade-1.5.0" }} + {{- fail "Upgrade Failed Please ensure that you have completed the pre-requisites mentioned in https://docs.devtron.ai/docs/devtron/v1.7/setup/upgrade/devtron-upgrade-1.5.0" }} {{- end }} {{- end }} diff --git a/charts/devtron/templates/configmap-secret.yaml b/charts/devtron/templates/configmap-secret.yaml index 6c92445f94..927acbbb3d 100644 --- a/charts/devtron/templates/configmap-secret.yaml +++ b/charts/devtron/templates/configmap-secret.yaml @@ -263,9 +263,6 @@ data: {{- else }} PG_PASSWORD: {{ $postgresPwd }} {{- end }} -{{- if $.Values.devtronEnterprise.finops.enabled }} - TIMESCALE_PASSWORD: {{ $TIMESCALE_PASSWORD}} -{{- end }} {{- if $.Values.installer.modules }} {{- if has "cicd" $.Values.installer.modules }} EXTERNAL_CI_API_SECRET: {{ $EXTERNAL_CI_API_SECRET }} diff --git a/charts/devtron/templates/cost-sync-job.yaml b/charts/devtron/templates/cost-sync-job.yaml index db6bc4e351..5081bd80f3 100644 --- a/charts/devtron/templates/cost-sync-job.yaml +++ b/charts/devtron/templates/cost-sync-job.yaml @@ -1,5 +1,9 @@ {{- if .Values.devtronEnterprise.finops.enabled }} +{{- if $.Capabilities.APIVersions.Has "batch/v1/Job" }} apiVersion: batch/v1 +{{- else }} +apiVersion: batch/v1beta1 +{{- end }} kind: CronJob metadata: name: cost-sync-job @@ -9,20 +13,25 @@ spec: failedJobsHistoryLimit: 1 jobTemplate: spec: + serviceAccountName: devtron-default-sa activeDeadlineSeconds: 3600 template: metadata: labels: app: cost-sync-job spec: + {{- include "common.schedulerConfig" (dict "nodeSelector" $.Values.devtronEnterprise.finops.nodeSelector "tolerations" $.Values.devtronEnterprise.finops.tolerations "imagePullSecrets" $.Values.devtronEnterprise.finops.imagePullSecrets "global" $.Values.global) | indent 4 }} + {{- include "common.podSecurityContext" (dict "podSecurityContext" $.Values.devtronEnterprise.finops.podSecurityContext "global" $.Values.global) | indent 10 }} restartPolicy: OnFailure containers: - envFrom: + - configMapRef: + name: devtron-common-cm - configMapRef: name: cost-sync-cm - secretRef: name: devtron-secret - image: {{ .Values.devtronEnterprise.finops.costSync.image }} + image: {{ $.Values.devtronEnterprise.finops.costSync.image }} imagePullPolicy: IfNotPresent name: cost-sync-job ports: @@ -31,9 +40,9 @@ spec: protocol: TCP resources: {} terminationGracePeriodSeconds: 30 - schedule: 10 * * * * + schedule: {{ $.Values.devtronEnterprise.finops.costSync.schedule | quote }} startingDeadlineSeconds: 100 successfulJobsHistoryLimit: 3 suspend: false - timeZone: UTC + timeZone: {{ $.Values.devtronEnterprise.finops.costSync.timeZone }} {{- end }} \ No newline at end of file diff --git a/charts/devtron/templates/devtron-scc.yaml b/charts/devtron/templates/devtron-scc.yaml index 1f5f10d03e..b2e2b758ce 100644 --- a/charts/devtron/templates/devtron-scc.yaml +++ b/charts/devtron/templates/devtron-scc.yaml @@ -34,7 +34,11 @@ users: - system:serviceaccount:devtron-cd:cd-runner - system:serviceaccount:devtroncd:chart-sync - system:serviceaccount:devtroncd:devtron-default-sa +- system:serviceaccount:devtroncd:devtron-cloudnative-pg +- system:serviceaccount:devtroncd:timescaledb-cluster-pg15 volumes: - '*' {{- end }} {{- end }} + + diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index 0c91f50b32..f5e959d840 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -23,7 +23,11 @@ kind: Cluster metadata: name: timescaledb-cluster-pg15 namespace: devtroncd + labels: + app: timescale-db spec: + affinity: + {{- include "common.schedulerConfig" (dict "nodeSelector" $.Values.devtronEnterprise.finops.nodeSelector "tolerations" $.Values.devtronEnterprise.finops.tolerations "imagePullSecrets" $.Values.devtronEnterprise.finops.imagePullSecrets "global" $.Values.global) | indent 4 }} bootstrap: initdb: database: finops @@ -52,14 +56,11 @@ spec: - host all all all scram-sha-256 shared_preload_libraries: - timescaledb + {{- if $.Values.devtronEnterprise.finops.timescale.resources }} resources: - limits: - cpu: "1" - memory: 2Gi - requests: - cpu: "0.5" - memory: 1Gi + {{- toYaml $.Values.devtronEnterprise.finops.timescale.resources | nindent 4 }} + {{- end }} storage: - size: 5Gi - storageClass: {{ .Values.devtronEnterprise.finops.timescale.storageClass | default "default"}} + size: {{ $.Values.devtronEnterprise.finops.timescale.volumeSize }} + storageClass: {{ $.Values.global.storageClass | default "default"}} {{- end }} \ No newline at end of file diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index d24bac34c1..7710332f4c 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -30,9 +30,9 @@ global: # effect: "NoSchedule" # imagePullSecrets: # - name: your-image-pull-secret - nodeSelector: {} - tolerations: [] - imagePullSecrets: [] + # nodeSelector: {} + # tolerations: [] + # imagePullSecrets: [] # Set the storage class to be used for PVCs (would use default sc if not specified) storageClass: "" # Add Proxy Configs to be propagated to all the Devtron Microservices. @@ -486,8 +486,10 @@ devtronEnterprise: enabled: false costSync: image: "" + schedule: "* 2 * * *" + timeZone: UTC timescale: - storageClass: "" + volumeSize: 5Gi casbin: registry: "" image: "casbin:f6ff5f74-064b67e5-462-30822" From 04f7ce3dff46093d858b4e5271b922f145b531e0 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 18:16:22 +0530 Subject: [PATCH 27/32] Resolved timescale crds issue --- charts/devtron/Chart.lock | 12 +++++++++ charts/devtron/charts/argo-cd-7.7.15.tgz | Bin 0 -> 180231 bytes .../devtron/charts/cloudnative-pg-0.26.0.tgz | Bin 0 -> 168742 bytes charts/devtron/charts/security-0.2.2.tgz | Bin 0 -> 4934 bytes .../crd.yaml => crds/cloudnative-pg.yaml} | 24 +++++++++++++++--- charts/devtron/dem.yaml | 0 charts/devtron/devtron-bom.yaml | 5 ++++ charts/devtron/templates/_helpers.tpl | 9 ------- charts/devtron/templates/timescale-db.yaml | 2 +- charts/devtron/values.yaml | 5 ++++ 10 files changed, 44 insertions(+), 13 deletions(-) create mode 100644 charts/devtron/Chart.lock create mode 100644 charts/devtron/charts/argo-cd-7.7.15.tgz create mode 100644 charts/devtron/charts/cloudnative-pg-0.26.0.tgz create mode 100644 charts/devtron/charts/security-0.2.2.tgz rename charts/devtron/{templates/crds/crd.yaml => crds/cloudnative-pg.yaml} (99%) create mode 100644 charts/devtron/dem.yaml diff --git a/charts/devtron/Chart.lock b/charts/devtron/Chart.lock new file mode 100644 index 0000000000..9092e1bd5a --- /dev/null +++ b/charts/devtron/Chart.lock @@ -0,0 +1,12 @@ +dependencies: +- name: cloudnative-pg + repository: https://cloudnative-pg.io/charts + version: 0.26.0 +- name: argo-cd + repository: https://argoproj.github.io/argo-helm + version: 7.7.15 +- name: security + repository: https://helm.devtron.ai + version: 0.2.2 +digest: sha256:1a105757f0a604b2a5b255353ba9fdf557629607e514b5ccf66d7216e6bae9e2 +generated: "2025-12-23T14:20:34.483471+05:30" diff --git a/charts/devtron/charts/argo-cd-7.7.15.tgz b/charts/devtron/charts/argo-cd-7.7.15.tgz new file mode 100644 index 0000000000000000000000000000000000000000..5c170c342d5bb12eb098727d2ccaac072f3992f0 GIT binary patch literal 180231 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

EWu!B}@-EVQ0Gusui%f2&8WEd+Txs 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

hlO#xj;Y%9{Ix*~!o$Wvln{5=9{z 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

GGv`vT2Orw1{JA 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

T&@JJH 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%0D~-i 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 E0Bs1b761SM literal 0 HcmV?d00001 diff --git a/charts/devtron/templates/crds/crd.yaml b/charts/devtron/crds/cloudnative-pg.yaml similarity index 99% rename from charts/devtron/templates/crds/crd.yaml rename to charts/devtron/crds/cloudnative-pg.yaml index 6aece1c346..1b62f0c2ce 100644 --- a/charts/devtron/templates/crds/crd.yaml +++ b/charts/devtron/crds/cloudnative-pg.yaml @@ -1,9 +1,10 @@ -{{- if .Values.devtronEnterprise.finops.enabled }} apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd helm.sh/resource-policy: keep name: backups.postgresql.cnpg.io spec: @@ -456,6 +457,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: clusterimagecatalogs.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -538,6 +541,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: clusters.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -7747,6 +7752,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: databases.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -8342,6 +8349,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: failoverquorums.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -8420,6 +8429,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: imagecatalogs.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -8501,6 +8512,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: poolers.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -17811,6 +17824,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: publications.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -18007,6 +18022,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: scheduledbackups.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -18199,6 +18216,8 @@ metadata: annotations: controller-gen.kubebuilder.io/version: v0.19.0 helm.sh/resource-policy: keep + meta.helm.sh/release-name: devtron + meta.helm.sh/release-namespace: devtroncd name: subscriptions.postgresql.cnpg.io spec: group: postgresql.cnpg.io @@ -18341,5 +18360,4 @@ spec: served: true storage: true subresources: - status: {} -{{- end }} \ No newline at end of file + status: {} \ No newline at end of file diff --git a/charts/devtron/dem.yaml b/charts/devtron/dem.yaml new file mode 100644 index 0000000000..e69de29bb2 diff --git a/charts/devtron/devtron-bom.yaml b/charts/devtron/devtron-bom.yaml index a8c18e789e..7a8095f87c 100644 --- a/charts/devtron/devtron-bom.yaml +++ b/charts/devtron/devtron-bom.yaml @@ -239,6 +239,11 @@ monitoring: image: "k8s-sidecar:1.1.0" curlImage: "curl:7.73.0" imagePullPolicy: IfNotPresent + +cloudnative-pg: + crds: + create: false + devtronEnterprise: enabled: false finops: diff --git a/charts/devtron/templates/_helpers.tpl b/charts/devtron/templates/_helpers.tpl index 0ec11d572a..bcbbac81ef 100644 --- a/charts/devtron/templates/_helpers.tpl +++ b/charts/devtron/templates/_helpers.tpl @@ -116,12 +116,3 @@ securityContext: {{ toYaml .global.containerSecurityContext | indent 2 }} {{- end }} {{- end }} - -{{- define "createNamespace" -}} -{{- $liveNs := lookup "v1" "Namespace" "" "timescale-db" }} -{{- if not $liveNs }} -true -{{- else }} -false -{{- end }} -{{- end }} diff --git a/charts/devtron/templates/timescale-db.yaml b/charts/devtron/templates/timescale-db.yaml index f5e959d840..e9c55e16c1 100644 --- a/charts/devtron/templates/timescale-db.yaml +++ b/charts/devtron/templates/timescale-db.yaml @@ -62,5 +62,5 @@ spec: {{- end }} storage: size: {{ $.Values.devtronEnterprise.finops.timescale.volumeSize }} - storageClass: {{ $.Values.global.storageClass | default "default"}} + storageClass: {{ $.Values.global.storageClass }} {{- end }} \ No newline at end of file diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index 7710332f4c..8fe58c5914 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -479,6 +479,11 @@ monitoring: resources: {} persistence: storage: "2Gi" + +cloudnative-pg: + crds: + create: false + # Change these values for Devtron-Enterprise devtronEnterprise: enabled: false From e8bbded16f1a6e2a303bbc863aae56e8a602b547 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 18:20:50 +0530 Subject: [PATCH 28/32] Resolved timescale crds labels issue --- charts/devtron/Chart.lock | 12 ----------- charts/devtron/charts/argo-cd-7.7.15.tgz | Bin 180231 -> 0 bytes .../devtron/charts/cloudnative-pg-0.26.0.tgz | Bin 168742 -> 0 bytes charts/devtron/charts/security-0.2.2.tgz | Bin 4934 -> 0 bytes charts/devtron/crds/cloudnative-pg.yaml | 20 ++++++++++++++++++ charts/devtron/dem.yaml | 0 6 files changed, 20 insertions(+), 12 deletions(-) delete mode 100644 charts/devtron/Chart.lock delete mode 100644 charts/devtron/charts/argo-cd-7.7.15.tgz delete mode 100644 charts/devtron/charts/cloudnative-pg-0.26.0.tgz delete mode 100644 charts/devtron/charts/security-0.2.2.tgz delete mode 100644 charts/devtron/dem.yaml diff --git a/charts/devtron/Chart.lock b/charts/devtron/Chart.lock deleted file mode 100644 index 9092e1bd5a..0000000000 --- a/charts/devtron/Chart.lock +++ /dev/null @@ -1,12 +0,0 @@ -dependencies: -- name: cloudnative-pg - repository: https://cloudnative-pg.io/charts - version: 0.26.0 -- name: argo-cd - repository: https://argoproj.github.io/argo-helm - version: 7.7.15 -- name: security - repository: https://helm.devtron.ai - version: 0.2.2 -digest: sha256:1a105757f0a604b2a5b255353ba9fdf557629607e514b5ccf66d7216e6bae9e2 -generated: "2025-12-23T14:20:34.483471+05:30" diff --git a/charts/devtron/charts/argo-cd-7.7.15.tgz b/charts/devtron/charts/argo-cd-7.7.15.tgz deleted file mode 100644 index 5c170c342d5bb12eb098727d2ccaac072f3992f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180231 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

EWu!B}@-EVQ0Gusui%f2&8WEd+Txs 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

hlO#xj;Y%9{Ix*~!o$Wvln{5=9{z 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

GGv`vT2Orw1{JA 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

T&@JJH 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%0D~-i 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 E0Bs1b761SM diff --git a/charts/devtron/crds/cloudnative-pg.yaml b/charts/devtron/crds/cloudnative-pg.yaml index 1b62f0c2ce..2de0f1011b 100644 --- a/charts/devtron/crds/cloudnative-pg.yaml +++ b/charts/devtron/crds/cloudnative-pg.yaml @@ -7,6 +7,8 @@ metadata: meta.helm.sh/release-namespace: devtroncd helm.sh/resource-policy: keep name: backups.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -460,6 +462,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: clusterimagecatalogs.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -544,6 +548,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: clusters.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -7755,6 +7761,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: databases.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -8352,6 +8360,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: failoverquorums.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -8432,6 +8442,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: imagecatalogs.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -8515,6 +8527,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: poolers.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -17827,6 +17841,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: publications.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -18025,6 +18041,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: scheduledbackups.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: @@ -18219,6 +18237,8 @@ metadata: meta.helm.sh/release-name: devtron meta.helm.sh/release-namespace: devtroncd name: subscriptions.postgresql.cnpg.io + labels: + app.kubernetes.io/managed-by: Helm spec: group: postgresql.cnpg.io names: diff --git a/charts/devtron/dem.yaml b/charts/devtron/dem.yaml deleted file mode 100644 index e69de29bb2..0000000000 From 638de7c5d823d543152b57101f3be4f124c828ec Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Wed, 24 Dec 2025 18:21:28 +0530 Subject: [PATCH 29/32] Resolved timescale crds labels issue --- charts/devtron/devtron-bom.yaml | 5 ----- charts/devtron/values.yaml | 4 ---- 2 files changed, 9 deletions(-) diff --git a/charts/devtron/devtron-bom.yaml b/charts/devtron/devtron-bom.yaml index 7a8095f87c..a8c18e789e 100644 --- a/charts/devtron/devtron-bom.yaml +++ b/charts/devtron/devtron-bom.yaml @@ -239,11 +239,6 @@ monitoring: image: "k8s-sidecar:1.1.0" curlImage: "curl:7.73.0" imagePullPolicy: IfNotPresent - -cloudnative-pg: - crds: - create: false - devtronEnterprise: enabled: false finops: diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index 8fe58c5914..58f168f518 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -480,10 +480,6 @@ monitoring: persistence: storage: "2Gi" -cloudnative-pg: - crds: - create: false - # Change these values for Devtron-Enterprise devtronEnterprise: enabled: false From a2fc29e1b9ccfda6778ab9834175d969bccc0b57 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Fri, 26 Dec 2025 04:20:44 +0530 Subject: [PATCH 30/32] Added timescale config changes --- charts/devtron/templates/configmap-secret.yaml | 1 + charts/devtron/templates/devtron.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/charts/devtron/templates/configmap-secret.yaml b/charts/devtron/templates/configmap-secret.yaml index 927acbbb3d..9219e43884 100644 --- a/charts/devtron/templates/configmap-secret.yaml +++ b/charts/devtron/templates/configmap-secret.yaml @@ -270,6 +270,7 @@ data: DEX_SECRET: {{ $DEX_SECRET }} DEX_JWTKEY: {{ $DEX_JWTKEY }} DEX_CSTOREKEY: {{ $DEX_CSTOREKEY }} + TIMESCALE_PASSWORD: {{ $TIMESCALE_PASSWORD }} {{- end }} {{- end }} type: Opaque diff --git a/charts/devtron/templates/devtron.yaml b/charts/devtron/templates/devtron.yaml index 14ab283a11..3f5a73479f 100644 --- a/charts/devtron/templates/devtron.yaml +++ b/charts/devtron/templates/devtron.yaml @@ -10,6 +10,9 @@ metadata: annotations: "helm.sh/resource-policy": keep data: + TIMESCALE_ADDR: timescaledb-cluster-pg15-r.devtroncd + TIMESCALE_DATABASE: finops + TIMESCALE_USER: postgres DEVTRON_HELM_RELEASE_NAME: {{ $.Release.Name }} DEVTRON_HELM_RELEASE_NAMESPACE: {{ $.Release.Namespace }} FEATURE_MIGRATE_ARGOCD_APPLICATION_ENABLE: "true" From 3061a4b03fcc4487e59468d6057ba2debbf78d58 Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Fri, 26 Dec 2025 04:26:19 +0530 Subject: [PATCH 31/32] Devtron 2.0 Configurations --- charts/devtron/templates/dashboard.yaml | 3 +++ charts/devtron/templates/devtron.yaml | 1 + 2 files changed, 4 insertions(+) diff --git a/charts/devtron/templates/dashboard.yaml b/charts/devtron/templates/dashboard.yaml index 5f033101f2..b98e68d5f8 100644 --- a/charts/devtron/templates/dashboard.yaml +++ b/charts/devtron/templates/dashboard.yaml @@ -22,6 +22,9 @@ data: GATEKEEPER_URL: "https://license.devtron.ai/dashboard" {{- end }} {{- if .config }} + FEATURE_STORAGE_ENABLE: "true" + FEATURE_RESOURCE_WATCHER_ENABLE: "true" + FEATURE_SOFTWARE_DISTRIBUTION_HUB_ENABLE: "true" GA_ENABLED: {{ .config.analytics | default "false" | quote }} HOTJAR_ENABLED: {{ .config.hotjar | default "false" | quote }} SENTRY_ENABLED: {{ .config.sentry | default "false" | quote }} diff --git a/charts/devtron/templates/devtron.yaml b/charts/devtron/templates/devtron.yaml index 3f5a73479f..cc49d3aab4 100644 --- a/charts/devtron/templates/devtron.yaml +++ b/charts/devtron/templates/devtron.yaml @@ -10,6 +10,7 @@ metadata: annotations: "helm.sh/resource-policy": keep data: + VELERO_INFORMER: "false" TIMESCALE_ADDR: timescaledb-cluster-pg15-r.devtroncd TIMESCALE_DATABASE: finops TIMESCALE_USER: postgres From 842c6cb7bb5547f0f7fc924cf1df64ebf8de329f Mon Sep 17 00:00:00 2001 From: kamal-devtron Date: Fri, 26 Dec 2025 10:55:29 +0530 Subject: [PATCH 32/32] changes in values --- charts/devtron/templates/devtron.yaml | 1 - charts/devtron/values.yaml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/devtron/templates/devtron.yaml b/charts/devtron/templates/devtron.yaml index cc49d3aab4..3f5a73479f 100644 --- a/charts/devtron/templates/devtron.yaml +++ b/charts/devtron/templates/devtron.yaml @@ -10,7 +10,6 @@ metadata: annotations: "helm.sh/resource-policy": keep data: - VELERO_INFORMER: "false" TIMESCALE_ADDR: timescaledb-cluster-pg15-r.devtroncd TIMESCALE_DATABASE: finops TIMESCALE_USER: postgres diff --git a/charts/devtron/values.yaml b/charts/devtron/values.yaml index 58f168f518..99faf9fb52 100644 --- a/charts/devtron/values.yaml +++ b/charts/devtron/values.yaml @@ -178,6 +178,7 @@ components: imagePullPolicy: IfNotPresent healthPort: 8080 configs: + VELERO_INFORMER: "false" devtroncd_NAMESPACE: "devtron-ci" USE_CUSTOM_HTTP_TRANSPORT: "true" CLUSTER_ARGO_CD_TYPE: "ALL_CLUSTER"