e465056943
You can use an older version of K8s on your development workstation by temporarily editing kind-up.sh to add the `--image` flag. By defining both v1beta2 and v1beta3 you should continue to be able to use old versions of K8s in this way with Kind v0.12.0.
14 lines
492 B
Bash
Executable File
14 lines
492 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -euo pipefail
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
|
cd "${ROOT}"
|
|
|
|
# To choose a specific version of kube, add this option to the command below: `--image kindest/node:v1.18.8`.
|
|
# To debug the kind config, add this option to the command below: `-v 10`
|
|
kind create cluster --config "hack/lib/kind-config/single-node.yaml" --name pinniped
|