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

141 lines
3.9 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 ARCH=amd64
export REGISTRY=${REGISTRY:-ingress-controller}
DEV_IMAGE=${REGISTRY}/nginx-ingress-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
echo "Please install kubectl 1.15 or higher"
exit 1
fi
2020-02-19 16:49:02 +00:00
if ! docker buildx version &> /dev/null; then
echo "Make sure you have Docker 19.03 or higher and experimental features enabled"
exit 1
fi
if ! command -v helm &> /dev/null; then
echo "Please install helm"
exit 1
fi
KUBE_CLIENT_VERSION=$(kubectl version --client --short | awk '{print $3}' | cut -d. -f2) || true
if [[ ${KUBE_CLIENT_VERSION} -lt 14 ]]; then
2020-02-13 00:17:26 +00:00
echo "Please update kubectl to 1.15 or higher"
exit 1
fi
2018-07-06 03:23:27 +00:00
echo "[dev-env] building container"
make build container
2019-11-21 09:23:19 +00:00
docker tag "${REGISTRY}/nginx-ingress-controller-${ARCH}:${TAG}" "${DEV_IMAGE}"
2018-04-24 20:29:31 +00:00
export K8S_VERSION=${K8S_VERSION:-v1.17.2@sha256:59df31fc61d1da5f46e8a61ef612fa53d3f9140f82419d1ef1a6b9656c6b737c}
export DOCKER_CLI_EXPERIMENTAL=enabled
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"
cat <<EOF | kind create cluster --name ${KIND_CLUSTER_NAME} --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
authorization-mode: "AlwaysAllow"
extraPortMappings:
- containerPort: 80
hostPort: 80
protocol: TCP
- containerPort: 443
hostPort: 443
protocol: TCP
EOF
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
helm repo add stable https://kubernetes-charts.storage.googleapis.com &> /dev/null || true
helm repo update &> /dev/null || true
cat << EOF | helm template nginx-ingress stable/nginx-ingress --namespace=ingress-nginx --values - | kubectl apply -n ingress-nginx -f -
2020-02-17 10:13:13 +00:00
controller:
image:
repository: ${REGISTRY}/nginx-ingress-controller
tag: ${TAG}
config:
worker-processes: "1"
podLabels:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
deploy-date: "$(date +%s)"
2020-02-17 10:13:13 +00:00
service:
labels:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/part-of: ingress-nginx
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
# change this when deployment supports hostPort without kubectl patch
kind: DaemonSet
daemonset:
useHostPort: true
terminationGracePeriodSeconds: 0
2020-02-17 10:13:13 +00:00
defaultBackend:
enabled: false
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