2020-10-09 14:25:34 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
2020-10-30 15:18:40 -07:00
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
2020-10-09 14:25:34 -07:00
|
|
|
cd "${ROOT}"
|
|
|
|
|
2021-01-22 12:43:35 -08:00
|
|
|
# To choose a specific version of kube, add this option to the command below: `--image kindest/node:v1.18.8`.
|
2020-10-09 14:25:34 -07:00
|
|
|
kind create cluster --config "hack/lib/kind-config/single-node.yaml" --name pinniped
|