mirror of
https://github.com/wahyd4/cert-manager.git
synced 2026-08-23 03:56:34 +10:00
40 lines
1.3 KiB
Bash
Executable File
40 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020 The Jetstack cert-manager contributors.
|
|
#
|
|
# 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 nounset
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
# Installs an instance of bind using the manifests located in manifests/
|
|
# Configure the cluster to target using the KUBECONFIG environment variable.
|
|
# Additional parameters can be configured by overriding the variables below.
|
|
|
|
# Namespace to deploy into
|
|
NAMESPACE="${NAMESPACE:-bind}"
|
|
|
|
SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")
|
|
source "${SCRIPT_ROOT}/../../lib/lib.sh"
|
|
SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")
|
|
|
|
check_tool kubectl
|
|
require_image "sameersbn/bind:bazel" "//devel/addon/bind:bundle"
|
|
|
|
# Ensure the bind namespace exists
|
|
kubectl get namespace "${NAMESPACE}" || kubectl create namespace "${NAMESPACE}"
|
|
|
|
# Upgrade or install bind
|
|
kubectl apply --namespace "${NAMESPACE}" -f "$SCRIPT_ROOT/manifests/"
|