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