13 lines
204 B
Bash
Executable File
13 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
TOP="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
|
|
namespace=default
|
|
|
|
charts=( busynix.yaml )
|
|
|
|
cd $TOP
|
|
. ../config.sh
|
|
|
|
kubectl_apply_files $namespace "${charts[@]}"
|
|
|