15 lines
242 B
Bash
Executable File
15 lines
242 B
Bash
Executable File
#!/usr/bin/env bash
|
|
TOP="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
|
|
namespace=kube-system
|
|
|
|
charts=()
|
|
|
|
cd $TOP
|
|
. ../config.sh
|
|
|
|
kubectl_apply_files "${charts[@]}"
|
|
|
|
helm_apply $namespace ingress ingress-nginx/ingress-nginx
|
|
|