mirror of
https://github.com/vmware-tanzu/velero.git
synced 2025-12-23 06:15:21 +00:00
* Pruning unknown fields In CRD apiversion v1beta1, default preserveUnknownFields=true. In CRD apiversion v1, the preserveUnknownFields can only be false. Otherwise, the k8s validation bumps out error message for the invalid preserveUnknownFields value. Deploy Velero on k8s 1.16+ with CRD apiversion v1beta1, the k8s cluster converts apiversion from v1beta1 to v1 automatically. Fully backup and restore the cluster, restore bumps out error message due to the preserveUnknownFields=true is not allowed on k8s 1.16+. Since the CRD structural schema had been defined, enable the preserveUnknownFields to false to solves the restore bumps out error message on k8s 1.16+. Signed-off-by: JenTing Hsiao <jenting.hsiao@suse.com> * Add changelog Signed-off-by: JenTing Hsiao <jenting.hsiao@suse.com>
50 lines
1.5 KiB
Bash
Executable File
50 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2017 the Velero contributors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
set -o xtrace
|
|
|
|
if [[ -z "${GOPATH}" ]]; then
|
|
GOPATH=~/go
|
|
fi
|
|
|
|
if [[ ! -d "${GOPATH}/src/k8s.io/code-generator" ]]; then
|
|
echo "k8s.io/code-generator missing from GOPATH"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -d "${GOPATH}/src/sigs.k8s.io/controller-tools" ]]; then
|
|
echo "sigs.k8s.io/controller-tools missing from GOPATH"
|
|
exit 1
|
|
fi
|
|
|
|
${GOPATH}/src/k8s.io/code-generator/generate-groups.sh \
|
|
all \
|
|
github.com/vmware-tanzu/velero/pkg/generated \
|
|
github.com/vmware-tanzu/velero/pkg/apis \
|
|
"velero:v1" \
|
|
--go-header-file ${GOPATH}/src/github.com/vmware-tanzu/velero/hack/boilerplate.go.txt \
|
|
$@
|
|
|
|
go run ${GOPATH}/src/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go \
|
|
crd:crdVersions=v1beta1,preserveUnknownFields=false \
|
|
output:dir=pkg/generated/crds/manifests \
|
|
paths=./pkg/apis/velero/v1/...
|
|
|
|
go generate ./pkg/generated/crds
|