From fc467f9f854ed75e4225bd6c8073c00639278b3f Mon Sep 17 00:00:00 2001 From: takuyaymd Date: Mon, 25 Nov 2024 18:34:15 +0900 Subject: [PATCH] update by make command --- .../vald-helm-operator/crds/valdrelease.yaml | 159 +++++++++++++++ charts/vald/values.schema.json | 192 ++++++++++++++++++ 2 files changed, 351 insertions(+) diff --git a/charts/vald-helm-operator/crds/valdrelease.yaml b/charts/vald-helm-operator/crds/valdrelease.yaml index 7c1ed319662..e91608a6a55 100644 --- a/charts/vald-helm-operator/crds/valdrelease.yaml +++ b/charts/vald-helm-operator/crds/valdrelease.yaml @@ -8406,6 +8406,51 @@ spec: corrector: type: object properties: + affinity: + type: object + properties: + nodeAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: object + properties: + nodeSelectorTerms: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + podAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + podAntiAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true agent_namespace: type: string discoverer: @@ -9037,6 +9082,9 @@ spec: type: string node_name: type: string + nodeSelector: + type: object + x-kubernetes-preserve-unknown-fields: true observability: type: object properties: @@ -9714,6 +9762,11 @@ spec: minimum: 1 suspend: type: boolean + tolerations: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true ttlSecondsAfterFinished: type: integer version: @@ -9722,6 +9775,51 @@ spec: creator: type: object properties: + affinity: + type: object + properties: + nodeAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: object + properties: + nodeSelectorTerms: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + podAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + podAntiAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true agent_namespace: type: string concurrency: @@ -10157,6 +10255,9 @@ spec: type: string node_name: type: string + nodeSelector: + type: object + x-kubernetes-preserve-unknown-fields: true observability: type: object properties: @@ -10835,6 +10936,11 @@ spec: type: array items: type: string + tolerations: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true ttlSecondsAfterFinished: type: integer version: @@ -13012,6 +13118,51 @@ spec: saver: type: object properties: + affinity: + type: object + properties: + nodeAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: object + properties: + nodeSelectorTerms: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + podAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + podAntiAffinity: + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true + requiredDuringSchedulingIgnoredDuringExecution: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true agent_namespace: type: string concurrency: @@ -13445,6 +13596,9 @@ spec: type: string node_name: type: string + nodeSelector: + type: object + x-kubernetes-preserve-unknown-fields: true observability: type: object properties: @@ -14123,6 +14277,11 @@ spec: type: array items: type: string + tolerations: + type: array + items: + type: object + x-kubernetes-preserve-unknown-fields: true ttlSecondsAfterFinished: type: integer version: diff --git a/charts/vald/values.schema.json b/charts/vald/values.schema.json index 2cc13ede599..0e35482a1f6 100644 --- a/charts/vald/values.schema.json +++ b/charts/vald/values.schema.json @@ -14071,6 +14071,61 @@ "corrector": { "type": "object", "properties": { + "affinity": { + "type": "object", + "properties": { + "nodeAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "node affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "object", + "properties": { + "nodeSelectorTerms": { + "type": "array", + "description": "node affinity required node selectors", + "items": { "type": "object" } + } + } + } + } + }, + "podAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod affinity required scheduling terms", + "items": { "type": "object" } + } + } + }, + "podAntiAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod anti-affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod anti-affinity required scheduling terms", + "items": { "type": "object" } + } + } + } + } + }, "agent_namespace": { "type": "string", "description": "namespace of agent pods to manage" @@ -15172,6 +15227,10 @@ "type": "string", "description": "name of index correction job" }, + "nodeSelector": { + "type": "object", + "description": "node selector" + }, "node_name": { "type": "string", "description": "node name" }, "observability": { "type": "object", @@ -16390,6 +16449,11 @@ "type": "boolean", "description": "CronJob suspend setting for index correction" }, + "tolerations": { + "type": "array", + "description": "tolerations", + "items": { "type": "object" } + }, "ttlSecondsAfterFinished": { "type": "integer", "description": "ttl setting for K8s completed jobs" @@ -16404,6 +16468,61 @@ "creator": { "type": "object", "properties": { + "affinity": { + "type": "object", + "properties": { + "nodeAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "node affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "object", + "properties": { + "nodeSelectorTerms": { + "type": "array", + "description": "node affinity required node selectors", + "items": { "type": "object" } + } + } + } + } + }, + "podAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod affinity required scheduling terms", + "items": { "type": "object" } + } + } + }, + "podAntiAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod anti-affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod anti-affinity required scheduling terms", + "items": { "type": "object" } + } + } + } + } + }, "agent_namespace": { "type": "string", "description": "namespace of agent pods to manage" @@ -17158,6 +17277,10 @@ "type": "string", "description": "name of index creation job" }, + "nodeSelector": { + "type": "object", + "description": "node selector" + }, "node_name": { "type": "string", "description": "node name" }, "observability": { "type": "object", @@ -18376,6 +18499,11 @@ "description": "indexing target addresses", "items": { "type": "string" } }, + "tolerations": { + "type": "array", + "description": "tolerations", + "items": { "type": "object" } + }, "ttlSecondsAfterFinished": { "type": "integer", "description": "ttl setting for K8s completed jobs" @@ -22115,6 +22243,61 @@ "saver": { "type": "object", "properties": { + "affinity": { + "type": "object", + "properties": { + "nodeAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "node affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "object", + "properties": { + "nodeSelectorTerms": { + "type": "array", + "description": "node affinity required node selectors", + "items": { "type": "object" } + } + } + } + } + }, + "podAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod affinity required scheduling terms", + "items": { "type": "object" } + } + } + }, + "podAntiAffinity": { + "type": "object", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod anti-affinity preferred scheduling terms", + "items": { "type": "object" } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "description": "pod anti-affinity required scheduling terms", + "items": { "type": "object" } + } + } + } + } + }, "agent_namespace": { "type": "string", "description": "namespace of agent pods to manage" @@ -22865,6 +23048,10 @@ "type": "string", "description": "name of index save job" }, + "nodeSelector": { + "type": "object", + "description": "node selector" + }, "node_name": { "type": "string", "description": "node name" }, "observability": { "type": "object", @@ -24083,6 +24270,11 @@ "description": "index saving target addresses", "items": { "type": "string" } }, + "tolerations": { + "type": "array", + "description": "tolerations", + "items": { "type": "object" } + }, "ttlSecondsAfterFinished": { "type": "integer", "description": "ttl setting for K8s completed jobs"