16 lines
255 B
Bash
Executable File
16 lines
255 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 $namespace "${charts[@]}"
|
|
|
|
helm_apply $namespace metrics-server stable/metrics-server
|
|
|
|
|