From 18bd54039304ef7249eee43b021d27262069c18b Mon Sep 17 00:00:00 2001 From: catpineapple Date: Thu, 2 Jan 2025 14:47:26 +0800 Subject: [PATCH] enable skip default system init --- api/doris/v1/types.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/doris/v1/types.go b/api/doris/v1/types.go index 632687f2..645baf3e 100644 --- a/api/doris/v1/types.go +++ b/api/doris/v1/types.go @@ -96,6 +96,10 @@ type BeSpec struct { // Doris workloadgroup reference document: https://doris.apache.org/docs/admin-manual/resource-admin/workload-group EnableWorkloadGroup bool `json:"enableWorkloadGroup,omitempty"` + // SkipDefaultSystemInit is a switch that skips the default initialization and is used to set the default environment configuration required by the doris be node. + // Default value is 'false'. + // Default System Init means that the container must be started in privileged mode. + // Default System Init configuration is implemented through the initContainers of the pod, so changes to this configuration may be ignored by k8s when it is not the first deployment. SkipDefaultSystemInit bool `json:"skipDefaultSystemInit,omitempty"` }