From 225b971faa9c63a1d5699cadb50ff6aff07c7207 Mon Sep 17 00:00:00 2001 From: Austin L Mayes Date: Sat, 23 Mar 2024 20:14:16 -0500 Subject: [PATCH] Bump controller tools version --- Makefile | 2 +- api/doris/v1/zz_generated.deepcopy.go | 18 +++++++++++------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 8415f348..27b5a2f1 100644 --- a/Makefile +++ b/Makefile @@ -147,7 +147,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest ## Tool Versions KUSTOMIZE_VERSION ?= v5.0.0 -CONTROLLER_TOOLS_VERSION ?= v0.11.3 +CONTROLLER_TOOLS_VERSION ?= v0.14.0 KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" .PHONY: kustomize diff --git a/api/doris/v1/zz_generated.deepcopy.go b/api/doris/v1/zz_generated.deepcopy.go index 2e97a263..f4de0b39 100644 --- a/api/doris/v1/zz_generated.deepcopy.go +++ b/api/doris/v1/zz_generated.deepcopy.go @@ -1,5 +1,4 @@ //go:build !ignore_autogenerated -// +build !ignore_autogenerated /* Copyright 2023. @@ -24,7 +23,7 @@ package v1 import ( corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/runtime" + runtime "k8s.io/apimachinery/pkg/runtime" ) // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. @@ -82,11 +81,6 @@ func (in *BaseSpec) DeepCopyInto(out *BaseSpec) { *out = new(ExportService) (*in).DeepCopyInto(*out) } - if in.FsGroup != nil { - in, out := &in.FsGroup, &out.FsGroup - *out = new(int64) - **out = **in - } if in.FeAddress != nil { in, out := &in.FeAddress, &out.FeAddress *out = new(FeAddress) @@ -156,6 +150,16 @@ func (in *BaseSpec) DeepCopyInto(out *BaseSpec) { *out = new(SystemInitialization) (*in).DeepCopyInto(*out) } + if in.SecurityContext != nil { + in, out := &in.SecurityContext, &out.SecurityContext + *out = new(corev1.PodSecurityContext) + (*in).DeepCopyInto(*out) + } + if in.ContainerSecurityContext != nil { + in, out := &in.ContainerSecurityContext, &out.ContainerSecurityContext + *out = new(corev1.SecurityContext) + (*in).DeepCopyInto(*out) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BaseSpec.