mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
29 lines
747 B
Bash
Executable file
29 lines
747 B
Bash
Executable file
#!/bin/bash
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
case "$(uname -s)" in
|
|
Linux*) linkutil=readlink;;
|
|
Darwin*) linkutil=greadlink;;
|
|
*) machine="UNKNOWN:${unameOut}"
|
|
esac
|
|
|
|
# get nirmata root
|
|
NIRMATA_DIR=$(dirname ${BASH_SOURCE})/..
|
|
NIRMATA_ROOT=$(${linkutil} -f ${NIRMATA_DIR})
|
|
|
|
# instructions to build project https://github.com/nirmata/kyverno/wiki/Building
|
|
|
|
# get relative path to code generation script
|
|
CODEGEN_PKG="${GOPATH}/src/k8s.io/code-generator"
|
|
|
|
# get relative path of nirmata
|
|
NIRMATA_PKG=${NIRMATA_ROOT#"${GOPATH}/src/"}
|
|
|
|
# perform code generation
|
|
${CODEGEN_PKG}/generate-groups.sh \
|
|
"deepcopy,client,informer,lister" \
|
|
${NIRMATA_PKG}/pkg/client \
|
|
${NIRMATA_PKG}/pkg/api \
|
|
kyverno:v1
|