mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-03 11:45:20 +00:00
Switch to k8s.io/code-generator script
Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
This commit is contained in:
@@ -1,60 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
#
|
||||
# Copyright 2017 Heptio Inc.
|
||||
#
|
||||
# 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.
|
||||
|
||||
ARK_ROOT=$(dirname ${BASH_SOURCE})/..
|
||||
BIN=${ARK_ROOT}/_output/bin
|
||||
mkdir -p ${BIN}
|
||||
go build -o ${BIN}/client-gen ./vendor/k8s.io/kubernetes/cmd/libs/go2idl/client-gen
|
||||
|
||||
OUTPUT_BASE=""
|
||||
if [[ -z "${GOPATH}" ]]; then
|
||||
OUTPUT_BASE="${HOME}/go/src"
|
||||
else
|
||||
OUTPUT_BASE="${GOPATH}/src"
|
||||
fi
|
||||
|
||||
verify=""
|
||||
for i in "$@"; do
|
||||
if [[ $i == "--verify-only" ]]; then
|
||||
verify=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ -z ${verify} ]]; then
|
||||
echo "Updating generated clientsets"
|
||||
|
||||
find ${ARK_ROOT}/pkg/generated/clientset \
|
||||
\( \
|
||||
-name '*.go' -and \
|
||||
\( \
|
||||
! -name '*_expansion.go' \
|
||||
-or \
|
||||
-name generated_expansion.go \
|
||||
\) \
|
||||
\) -exec rm {} \;
|
||||
fi
|
||||
|
||||
${BIN}/client-gen \
|
||||
--go-header-file /dev/null \
|
||||
--output-base ${OUTPUT_BASE} \
|
||||
--input-base github.com/heptio/ark/pkg/apis \
|
||||
--clientset-path github.com/heptio/ark/pkg/generated \
|
||||
--input ark/v1 \
|
||||
--clientset-name clientset \
|
||||
$@
|
||||
|
||||
echo "Success!"
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash -e
|
||||
#
|
||||
# Copyright 2017 Heptio Inc.
|
||||
# Copyright 2017 the Heptio Ark contributors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
@@ -15,13 +15,12 @@
|
||||
# limitations under the License.
|
||||
|
||||
HACK_DIR=$(dirname "${BASH_SOURCE}")
|
||||
REPO_ROOT=${HACK_DIR}/..
|
||||
|
||||
echo "Verifying generated informers"
|
||||
|
||||
if ! output=$(${HACK_DIR}/update-generated-informers.sh --verify-only 2>&1); then
|
||||
echo "FAILURE: verification of informers failed:"
|
||||
echo "${output}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Success!"
|
||||
${REPO_ROOT}/vendor/k8s.io/code-generator/generate-groups.sh \
|
||||
all \
|
||||
github.com/heptio/ark/pkg/generated \
|
||||
github.com/heptio/ark/pkg/apis \
|
||||
ark:v1 \
|
||||
--go-header-file hack/boilerplate.go.txt \
|
||||
$@
|
||||
@@ -1,55 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
#
|
||||
# Copyright 2017 Heptio Inc.
|
||||
#
|
||||
# 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.
|
||||
|
||||
ARK_ROOT=$(dirname ${BASH_SOURCE})/..
|
||||
BIN=${ARK_ROOT}/_output/bin
|
||||
mkdir -p ${BIN}
|
||||
|
||||
echo "Updating generated informers"
|
||||
|
||||
go build -o ${BIN}/informer-gen ./vendor/k8s.io/kubernetes/cmd/libs/go2idl/informer-gen
|
||||
|
||||
OUTPUT_BASE=""
|
||||
if [[ -z "${GOPATH}" ]]; then
|
||||
OUTPUT_BASE="${HOME}/go/src"
|
||||
else
|
||||
OUTPUT_BASE="${GOPATH}/src"
|
||||
fi
|
||||
|
||||
verify=""
|
||||
for i in "$@"; do
|
||||
if [[ $i == "--verify-only" ]]; then
|
||||
verify=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ -z ${verify} ]]; then
|
||||
rm -rf ${ARK_ROOT}/pkg/generated/informers
|
||||
fi
|
||||
|
||||
${BIN}/informer-gen \
|
||||
--logtostderr \
|
||||
--go-header-file /dev/null \
|
||||
--output-base ${OUTPUT_BASE} \
|
||||
--input-dirs github.com/heptio/ark/pkg/apis/ark/v1 \
|
||||
--output-package github.com/heptio/ark/pkg/generated/informers \
|
||||
--listers-package github.com/heptio/ark/pkg/generated/listers \
|
||||
--internal-clientset-package github.com/heptio/ark/pkg/generated/clientset \
|
||||
--versioned-clientset-package github.com/heptio/ark/pkg/generated/clientset \
|
||||
$@
|
||||
|
||||
echo "Success!"
|
||||
@@ -1,60 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
#
|
||||
# Copyright 2017 Heptio Inc.
|
||||
#
|
||||
# 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.
|
||||
|
||||
ARK_ROOT=$(dirname ${BASH_SOURCE})/..
|
||||
BIN=${ARK_ROOT}/_output/bin
|
||||
mkdir -p ${BIN}
|
||||
|
||||
echo "Updating generated listers"
|
||||
|
||||
go build -o ${BIN}/lister-gen ./vendor/k8s.io/kubernetes/cmd/libs/go2idl/lister-gen
|
||||
|
||||
OUTPUT_BASE=""
|
||||
if [[ -z "${GOPATH}" ]]; then
|
||||
OUTPUT_BASE="${HOME}/go/src"
|
||||
else
|
||||
OUTPUT_BASE="${GOPATH}/src"
|
||||
fi
|
||||
|
||||
verify=""
|
||||
for i in "$@"; do
|
||||
if [[ $i == "--verify-only" ]]; then
|
||||
verify=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ -z ${verify} ]]; then
|
||||
find ${ARK_ROOT}/pkg/generated/listers \
|
||||
\( \
|
||||
-name '*.go' -and \
|
||||
\( \
|
||||
! -name '*_expansion.go' \
|
||||
-or \
|
||||
-name generated_expansion.go \
|
||||
\) \
|
||||
\) -exec rm {} \;
|
||||
fi
|
||||
|
||||
${BIN}/lister-gen \
|
||||
--logtostderr \
|
||||
--go-header-file /dev/null \
|
||||
--output-base ${OUTPUT_BASE} \
|
||||
--input-dirs github.com/heptio/ark/pkg/apis/ark/v1 \
|
||||
--output-package github.com/heptio/ark/pkg/generated/listers \
|
||||
$@
|
||||
|
||||
echo "Success!"
|
||||
@@ -1,27 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
#
|
||||
# Copyright 2017 Heptio Inc.
|
||||
#
|
||||
# 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.
|
||||
|
||||
HACK_DIR=$(dirname "${BASH_SOURCE}")
|
||||
|
||||
echo "Verifying generated clientsets"
|
||||
|
||||
if ! output=$(${HACK_DIR}/update-generated-clientsets.sh --verify-only 2>&1); then
|
||||
echo "FAILURE: verification of clientsets failed:"
|
||||
echo "${output}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Success!"
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash -e
|
||||
#
|
||||
# Copyright 2017 Heptio Inc.
|
||||
# Copyright 2017 the Heptio Ark contributors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
@@ -16,12 +16,4 @@
|
||||
|
||||
HACK_DIR=$(dirname "${BASH_SOURCE}")
|
||||
|
||||
echo "Verifying generated listers"
|
||||
|
||||
if ! output=$(${HACK_DIR}/update-generated-listers.sh --verify-only 2>&1); then
|
||||
echo "FAILURE: verification of listers failed:"
|
||||
echo "${output}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Success!"
|
||||
${HACK_DIR}/update-generated-crd-code.sh --verify-only
|
||||
Reference in New Issue
Block a user