mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-05-16 04:56:32 +00:00
12 lines
289 B
Bash
Executable File
12 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
echo "This script replaces quickstart-for-gke.sh"
|
|
echo ""
|
|
echo "This script will:"
|
|
echo "- Create the pgo namespace"
|
|
echo "- Apply postgres-operator.yml"
|
|
echo "- install the client"
|
|
echo ""
|
|
kubectl create namespace pgo
|
|
kubectl apply -f postgres-operator.yml
|
|
./client-setup.sh
|