From 10d62c42514dfb28c934bec7e25f2320a3d78e3c Mon Sep 17 00:00:00 2001 From: Jonathan Knight Date: Sat, 15 Feb 2025 10:18:52 +0300 Subject: [PATCH] Minor fix --- .github/workflows/release.yml | 2 +- Makefile | 1 + api/v1/zz_generated.deepcopy.go | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec628eab1..ef14d60f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -98,7 +98,7 @@ jobs: asset_content_type: text/plain - name: Upload Restricted Release Yaml - id: upload-release-yaml + id: upload-restricted-release-yaml uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/Makefile b/Makefile index 0d0cf0c50..c293724ab 100644 --- a/Makefile +++ b/Makefile @@ -2413,6 +2413,7 @@ install-istio: delete-istio-config get-istio ## Install the latest version of Is ifeq (true,$(ISTIO_USE_CONFIG)) $(ISTIO_HOME)/bin/istioctl install -f $(BUILD_OUTPUT)/istio-config.yaml -y kubectl -n istio-system wait --for condition=available deployment.apps/istiod-$(ISTIO_REVISION) + $(ISTIO_HOME)/bin/istioctl tag set default --revision $(ISTIO_REVISION) else $(ISTIO_HOME)/bin/istioctl install --set profile=demo -y kubectl -n istio-system wait --for condition=available deployment.apps/istiod diff --git a/api/v1/zz_generated.deepcopy.go b/api/v1/zz_generated.deepcopy.go index ec177e7aa..177df9ee9 100644 --- a/api/v1/zz_generated.deepcopy.go +++ b/api/v1/zz_generated.deepcopy.go @@ -687,6 +687,11 @@ func (in *CoherenceResourceSpec) DeepCopyInto(out *CoherenceResourceSpec) { *out = new(string) **out = **in } + if in.Lifecycle != nil { + in, out := &in.Lifecycle, &out.Lifecycle + *out = new(corev1.Lifecycle) + (*in).DeepCopyInto(*out) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CoherenceResourceSpec.