Difference between revisions of "Kubernetes Postgres Operator"
Jump to navigation
Jump to search
Line 31: | Line 31: | ||
source ~/.bashrc | source ~/.bashrc | ||
EOF | EOF | ||
+ | ``` | ||
+ | |||
+ | |||
+ | ``` | ||
+ | curl https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.6.2/installers/kubectl/client-setup.sh > client-setup.sh | ||
+ | sudo ./client-setup.sh | ||
+ | ``` | ||
+ | |||
+ | ``` | ||
+ | git clone https://github.com/CrunchyData/postgres-operator.git | ||
+ | cd postgres-operator/installers/kubectl | ||
+ | sudo micork8s.kubectl apply -f postgres-operator.yml | ||
+ | ./client-setup.sh | ||
``` | ``` |
Revision as of 00:58, 17 May 2021
Crunchydata
https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/
https://github.com/CrunchyData/postgres-operator
https://www.starkandwayne.com/blog/running-the-crunchydata-postgres-operator-on-minikube/
Microk8s
vi client-setup.sh
PGO_CMD="${PGO_CMD-microk8s.kubectl}"
https://github.com/CrunchyData/postgres-operator/releases/download/v4.6.2/pgo
Prep
curl -LO https://github.com/CrunchyData/postgres-operator/releases/download/v4.6.2/pgo chmod +x pgo mv pgo /usr/local/bin kubectl -n pgo port-forward svc/postgres-operator 8443:8443 cat <<EOF >> ~/.bashrc export PGOUSER="${HOME?}/.pgo/pgo/pgouser" export PGO_CA_CERT="${HOME?}/.pgo/pgo/client.crt" export PGO_CLIENT_CERT="${HOME?}/.pgo/pgo/client.crt" export PGO_CLIENT_KEY="${HOME?}/.pgo/pgo/client.key" export PGO_APISERVER_URL='https://127.0.0.1:8443' export PGO_NAMESPACE=pgo source ~/.bashrc EOF
curl https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.6.2/installers/kubectl/client-setup.sh > client-setup.sh sudo ./client-setup.sh
git clone https://github.com/CrunchyData/postgres-operator.git cd postgres-operator/installers/kubectl sudo micork8s.kubectl apply -f postgres-operator.yml ./client-setup.sh