2020-08-06 19:30:18 -05:00
|
|
|
#!/usr/bin/env bash
|
2020-07-07 14:35:20 -05:00
|
|
|
|
2021-01-07 13:20:25 -08:00
|
|
|
# Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
2020-08-06 19:30:18 -05:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2020-08-24 18:07:34 -07:00
|
|
|
|
2020-08-06 19:30:18 -05:00
|
|
|
set -euo pipefail
|
2020-08-24 18:07:34 -07:00
|
|
|
|
2020-08-11 17:48:16 -07:00
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
2020-08-06 19:30:18 -05:00
|
|
|
|
2020-10-09 10:00:22 -07:00
|
|
|
# Generate code.
|
2020-10-30 11:12:53 -05:00
|
|
|
xargs -n 1 -P 8 "$ROOT/hack/lib/update-codegen.sh" < "${ROOT}/hack/lib/kube-versions.txt"
|
2020-10-09 10:00:22 -07:00
|
|
|
|
|
|
|
# Copy each CRD yaml to the app which should cause it to be installed.
|
2021-01-07 13:20:25 -08:00
|
|
|
cp "$ROOT"/generated/1.20/crds/*.supervisor.*.yaml "$ROOT/deploy/supervisor"
|
|
|
|
cp "$ROOT"/generated/1.20/crds/*.concierge.*.yaml "$ROOT/deploy/concierge"
|
2020-10-09 10:00:22 -07:00
|
|
|
|
|
|
|
# Tidy.
|
2020-08-06 19:30:18 -05:00
|
|
|
"$ROOT/hack/module.sh" tidy
|