9 lines
209 B
Bash
9 lines
209 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
|
||
|
|
|
||
|
|
kubectl apply -k kustomize/postgres
|
||
|
|
|