Postgres operator creates and manages PostgreSQL clusters running in Kubernetes
Go to file
Oleksii Kliukin fd66a38889 More detailed install instructions. 2017-05-08 12:10:11 +02:00
operator add supervisor 2017-05-08 12:09:54 +02:00
.gitignore proper names small fixes 2017-05-08 12:09:50 +02:00
README.md More detailed install instructions. 2017-05-08 12:10:11 +02:00
glide.lock init 2017-01-09 17:48:13 +01:00
glide.yaml Correct the project's path. 2017-05-08 12:09:54 +02:00
main.go init 2017-01-09 17:48:13 +01:00
testcluster.yaml Fix the vendor name in API version and update the docker image. 2017-05-08 12:10:09 +02:00

README.md

postgres operator prototype (WIP)

Create minikube

$ minikube start

Deploy etcd

$ kubectl create -f https://github.com/coreos/etcd/blob/master/hack/kubernetes-deploy/etcd.yaml

Set your go path and put the sources so that go build finds them

$ export GOPATH=~/git/go/src/github.bus.zalan.do/acid/
$ mkdir -p ~/git/go/src/github.bus.zalan.do/acid/
$ cd ~/git/go/src/github.bus.zalan.do/acid/ && git clone https://github.bus.zalan.do/acid/postgres-operator -b prototype

Install Glide on OS X

$ brew install glide

Install Glide on Ubuntu

# sudo add-apt-repository ppa:masterminds/glide && sudo apt-get update
# sudo apt-get install glide

Install dependencies with Glide

$ glide update && glide install

Run operator (outside kubernetes cluster)

$ go run main.go

Check if ThirdPartyResource has been registered

$ kubectl get thirdpartyresources

NAME                  DESCRIPTION                             VERSION(S)
spilo.acid.zalan.do   A specification of Spilo StatefulSets   v1

Create a new spilo cluster

$ kubectl create -f testcluster.yaml

Watch Pods being created

$ kubectl get pods -w