2019-10-09 09:29:29 +02:00
|
|
|
#!/bin/bash
|
2019-10-09 10:18:07 +02:00
|
|
|
# Copyright 2019 Google LLC
|
|
|
|
#
|
|
|
|
# Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://llvm.org/LICENSE.txt
|
|
|
|
#
|
|
|
|
# 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-10-09 09:29:29 +02:00
|
|
|
set -eux
|
|
|
|
|
|
|
|
# basic setup of the reverse proxy based on
|
|
|
|
# https://kubernetes.github.io/ingress-nginx/deploy/
|
|
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/mandatory.yaml
|
|
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/provider/cloud-generic.yaml
|
|
|
|
|
2019-10-09 10:16:31 +02:00
|
|
|
# install certmanager based on
|
|
|
|
# http://docs.cert-manager.io/en/latest/getting-started/install/kubernetes.html
|
|
|
|
|
2019-10-09 14:03:22 +02:00
|
|
|
kubectl create namespace cert-manager
|
|
|
|
kubectl label namespace kube-system certmanager.k8s.io/disable-validation="true"
|
|
|
|
kubectl create clusterrolebinding cluster-admin-binding \
|
|
|
|
--clusterrole=cluster-admin \
|
|
|
|
--user=$(gcloud config get-value core/account)
|
2019-10-09 10:16:31 +02:00
|
|
|
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v0.10.1/cert-manager.yaml
|
|
|
|
|