mirror of
https://github.com/kubernetes-sigs/kind.git
synced 2025-12-01 07:26:05 +07:00
https://github.com/lima-vm/lima-actions is used Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
23 lines
818 B
Bash
Executable File
23 lines
818 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2021 The Kubernetes Authors.
|
|
#
|
|
# 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.
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
: "${KIND_EXPERIMENTAL_PROVIDER:=docker}"
|
|
|
|
sudo=sudo
|
|
[ "$ROOTLESS" = "rootless" ] && sudo=
|
|
exec lima $sudo KIND_EXPERIMENTAL_PROVIDER="$KIND_EXPERIMENTAL_PROVIDER" "${@}"
|