13 lines
289 B
Bash
13 lines
289 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
EXAMOPLES_DIR=/home/user/projects/crunchy/postgres-operator-examples
|
||
|
|
|
||
|
|
cd $EXAMOPLES_DIR # || echo "Directory $EXAMOPLES_DIR does not exist" && exit 1
|
||
|
|
|
||
|
|
pwd
|
||
|
|
|
||
|
|
# exit 1
|
||
|
|
|
||
|
|
kubectl apply -k kustomize/install/namespace
|
||
|
|
kubectl apply --server-side -k kustomize/install/default
|