ingress-nginx-helm/build/dev-env.sh

110 lines
3.1 KiB
Bash
Raw Normal View History

2018-04-24 20:29:31 +00:00
#!/bin/bash
# Copyright 2018 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.
2019-06-28 21:40:18 +00:00
if [ -n "$DEBUG" ]; then
set -x
fi
2018-07-06 03:23:27 +00:00
set -o errexit
set -o nounset
set -o pipefail
2018-04-24 20:29:31 +00:00
DIR=$(cd $(dirname "${BASH_SOURCE}") && pwd -P)
2020-02-17 10:13:13 +00:00
export TAG=1.0.0-dev
2018-07-06 03:23:27 +00:00
export REGISTRY=${REGISTRY:-ingress-controller}
2020-07-08 21:56:50 +00:00
DEV_IMAGE=${REGISTRY}/controller:${TAG}
2018-04-24 20:29:31 +00:00
2020-02-13 00:17:26 +00:00
if ! command -v kind &> /dev/null; then
echo "kind is not installed"
2020-02-19 16:49:02 +00:00
echo "Use a package manager (i.e 'brew install kind') or visit the official site https://kind.sigs.k8s.io"
2020-02-13 00:17:26 +00:00
exit 1
fi
if ! command -v kubectl &> /dev/null; then
2022-07-20 16:10:36 +00:00
echo "Please install kubectl 1.24.0 or higher"
2020-02-13 00:17:26 +00:00
exit 1
fi
2020-02-19 16:49:02 +00:00
if ! command -v helm &> /dev/null; then
echo "Please install helm"
exit 1
fi
HELM_VERSION=$(helm version 2>&1 | cut -f1 -d"," | grep -oE '[0-9]+\.[0-9]+\.[0-9]+') || true
echo $HELM_VERSION
if [[ ${HELM_VERSION} -lt 3.10.0 ]]; then
echo "Please upgrade helm to v3.10.0 or higher"
2020-06-25 08:51:35 +00:00
exit 1
fi
KUBE_CLIENT_VERSION=$(kubectl version --client --short 2>/dev/null | grep Client | awk '{print $3}' | cut -d. -f2) || true
2022-07-20 16:10:36 +00:00
if [[ ${KUBE_CLIENT_VERSION} -lt 24 ]]; then
echo "Please update kubectl to 1.24.2 or higher"
2020-02-13 00:17:26 +00:00
exit 1
fi
2018-07-06 03:23:27 +00:00
2020-05-31 16:53:57 +00:00
echo "[dev-env] building image"
make build image
2020-07-08 21:56:50 +00:00
docker tag "${REGISTRY}/controller:${TAG}" "${DEV_IMAGE}"
2018-04-24 20:29:31 +00:00
export K8S_VERSION=${K8S_VERSION:-v1.26.3@sha256:61b92f38dff6ccc29969e7aa154d34e38b89443af1a2c14e6cfbd2df6419c66f}
KIND_CLUSTER_NAME="ingress-nginx-dev"
if ! kind get clusters -q | grep -q ${KIND_CLUSTER_NAME}; then
echo "[dev-env] creating Kubernetes cluster with kind"
kind create cluster --name ${KIND_CLUSTER_NAME} --image "kindest/node:${K8S_VERSION}" --config ${DIR}/kind.yaml
else
echo "[dev-env] using existing Kubernetes kind cluster"
2019-07-08 20:43:34 +00:00
fi
echo "[dev-env] copying docker images to cluster..."
kind load docker-image --name="${KIND_CLUSTER_NAME}" "${DEV_IMAGE}"
echo "[dev-env] deploying NGINX Ingress controller..."
kubectl create namespace ingress-nginx &> /dev/null || true
2020-02-17 10:13:13 +00:00
cat << EOF | helm template ingress-nginx ${DIR}/../charts/ingress-nginx --namespace=ingress-nginx --values - | kubectl apply -n ingress-nginx -f -
2020-02-17 10:13:13 +00:00
controller:
image:
2020-07-08 21:56:50 +00:00
repository: ${REGISTRY}/controller
2020-02-17 10:13:13 +00:00
tag: ${TAG}
2020-07-13 18:22:06 +00:00
digest:
2020-02-17 10:13:13 +00:00
config:
worker-processes: "1"
podLabels:
deploy-date: "$(date +%s)"
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
hostPort:
enabled: true
terminationGracePeriodSeconds: 0
service:
type: NodePort
2020-02-17 10:13:13 +00:00
EOF
cat <<EOF
2019-07-08 20:43:34 +00:00
Kubernetes cluster ready and ingress-nginx listening in localhost using ports 80 and 443
2018-04-24 20:29:31 +00:00
To delete the dev cluster execute: 'kind delete cluster --name ingress-nginx-dev'
EOF