Minor improvements
This commit is contained in:
parent
0b75a89920
commit
01704e3d66
12
.zappr.yaml
12
.zappr.yaml
|
|
@ -1,12 +0,0 @@
|
||||||
# for github.com
|
|
||||||
approvals:
|
|
||||||
groups:
|
|
||||||
zalando:
|
|
||||||
minimum: 2
|
|
||||||
from:
|
|
||||||
orgs:
|
|
||||||
- "zalando"
|
|
||||||
X-Zalando-Team: "acid"
|
|
||||||
# type should be one of [code, doc, config, tools, secrets]
|
|
||||||
# code will be the default value, if X-Zalando-Type is not found in .zappr.yml
|
|
||||||
X-Zalando-Type: code
|
|
||||||
5
Makefile
5
Makefile
|
|
@ -1,4 +1,4 @@
|
||||||
.PHONY: clean local linux macos docker push scm-source.json
|
.PHONY: clean local test linux macos docker push scm-source.json
|
||||||
|
|
||||||
BINARY ?= postgres-operator
|
BINARY ?= postgres-operator
|
||||||
BUILD_FLAGS ?= -v
|
BUILD_FLAGS ?= -v
|
||||||
|
|
@ -76,3 +76,6 @@ vet:
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
@glide install --strip-vendor
|
@glide install --strip-vendor
|
||||||
|
|
||||||
|
test:
|
||||||
|
@go test ./...
|
||||||
|
|
|
||||||
11
README.md
11
README.md
|
|
@ -67,12 +67,14 @@ kubectl create -f manifests/configmap.yaml # configuration
|
||||||
kubectl create -f manifests/operator-service-account-rbac.yaml # identity and permissions
|
kubectl create -f manifests/operator-service-account-rbac.yaml # identity and permissions
|
||||||
kubectl create -f manifests/postgres-operator.yaml # deployment
|
kubectl create -f manifests/postgres-operator.yaml # deployment
|
||||||
|
|
||||||
# create a Postgres cluster
|
# create a Postgres cluster in a non-default namespace
|
||||||
|
kubectl create namespace test
|
||||||
|
kubectl config set-context minikube --namespace=test
|
||||||
kubectl create -f manifests/minimal-postgres-manifest.yaml
|
kubectl create -f manifests/minimal-postgres-manifest.yaml
|
||||||
|
|
||||||
# connect to the Postgres master via psql
|
# connect to the Postgres master via psql
|
||||||
# operator creates the relevant k8s secret
|
# operator creates the relevant k8s secret
|
||||||
export HOST_PORT=$(minikube service acid-minimal-cluster --url | sed 's,.*/,,')
|
export HOST_PORT=$(minikube service --namespace test acid-minimal-cluster --url | sed 's,.*/,,')
|
||||||
export PGHOST=$(echo $HOST_PORT | cut -d: -f 1)
|
export PGHOST=$(echo $HOST_PORT | cut -d: -f 1)
|
||||||
export PGPORT=$(echo $HOST_PORT | cut -d: -f 2)
|
export PGPORT=$(echo $HOST_PORT | cut -d: -f 2)
|
||||||
export PGPASSWORD=$(kubectl get secret postgres.acid-minimal-cluster.credentials -o 'jsonpath={.data.password}' | base64 -d)
|
export PGPASSWORD=$(kubectl get secret postgres.acid-minimal-cluster.credentials -o 'jsonpath={.data.password}' | base64 -d)
|
||||||
|
|
@ -90,11 +92,10 @@ cd postgres-operator
|
||||||
|
|
||||||
## Running and testing the operator
|
## Running and testing the operator
|
||||||
|
|
||||||
The best way to test the operator is to run it in [minikube](https://kubernetes.io/docs/getting-started-guides/minikube/).
|
The best way to test the operator is to run it locally in [minikube](https://kubernetes.io/docs/getting-started-guides/minikube/). See developer docs(`docs/developer.yaml`) for details.
|
||||||
Minikube is a tool to run Kubernetes cluster locally.
|
|
||||||
|
|
||||||
### Configuration Options
|
### Configuration Options
|
||||||
|
|
||||||
The operator can be configured with the provided ConfigMap (`manifests/configmap.yaml`).
|
The operator can be configured with the provided ConfigMap(`manifests/configmap.yaml`) or the operator's own CRD.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -275,3 +275,12 @@ Type 'help' for list of commands.
|
||||||
(dlv) c
|
(dlv) c
|
||||||
PASS
|
PASS
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To test the multinamespace setup, you can use
|
||||||
|
```
|
||||||
|
./run_operator_locally.sh --rebuild-operator
|
||||||
|
```
|
||||||
|
It will automatically create an `acid-minimal-cluster` in the namespace `test`. Then you can for example check the Patroni logs:
|
||||||
|
```
|
||||||
|
kubectl logs acid-minimal-cluster-0
|
||||||
|
```
|
||||||
|
|
|
||||||
|
|
@ -378,7 +378,7 @@ key.
|
||||||
infrastructure role. The default is `admin`.
|
infrastructure role. The default is `admin`.
|
||||||
|
|
||||||
* **postgres_superuser_teams**
|
* **postgres_superuser_teams**
|
||||||
List of teams which members need the superuser role in each PG database cluster to administer Postgres and maintain infrastructure built around it. The default is `postgres_superuser`.
|
List of teams which members need the superuser role in each PG database cluster to administer Postgres and maintain infrastructure built around it. The default is empty.
|
||||||
|
|
||||||
## Logging and REST API
|
## Logging and REST API
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,19 +3,19 @@ kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: postgres-operator
|
name: postgres-operator
|
||||||
data:
|
data:
|
||||||
# if set to the "*", listen to all namespaces
|
watched_namespace: "*" # listen to all namespaces
|
||||||
# watched_namespace: development
|
|
||||||
cluster_labels: application:spilo
|
cluster_labels: application:spilo
|
||||||
cluster_name_label: version
|
cluster_name_label: version
|
||||||
pod_role_label: spilo-role
|
pod_role_label: spilo-role
|
||||||
|
|
||||||
debug_logging: "true"
|
debug_logging: "true"
|
||||||
workers: "4"
|
workers: "4"
|
||||||
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-10:1.4-p8
|
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-10:1.4-p29
|
||||||
pod_service_account_name: "zalando-postgres-operator"
|
pod_service_account_name: "zalando-postgres-operator"
|
||||||
secret_name_template: '{username}.{cluster}.credentials'
|
secret_name_template: '{username}.{cluster}.credentials'
|
||||||
super_username: postgres
|
super_username: postgres
|
||||||
enable_teams_api: "false"
|
enable_teams_api: "false"
|
||||||
|
# postgres_superuser_teams: "postgres_superusers"
|
||||||
# enable_team_superuser: "false"
|
# enable_team_superuser: "false"
|
||||||
# team_admin_role: "admin"
|
# team_admin_role: "admin"
|
||||||
# teams_api_url: http://fake-teams-api.default.svc.cluster.local
|
# teams_api_url: http://fake-teams-api.default.svc.cluster.local
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ apiVersion: "acid.zalan.do/v1"
|
||||||
kind: postgresql
|
kind: postgresql
|
||||||
metadata:
|
metadata:
|
||||||
name: acid-minimal-cluster
|
name: acid-minimal-cluster
|
||||||
|
namespace: test # assumes namespace exists beforehand
|
||||||
spec:
|
spec:
|
||||||
teamId: "ACID"
|
teamId: "ACID"
|
||||||
volume:
|
volume:
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ metadata:
|
||||||
name: postgresql-operator-default-configuration
|
name: postgresql-operator-default-configuration
|
||||||
configuration:
|
configuration:
|
||||||
etcd_host: ""
|
etcd_host: ""
|
||||||
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-10:1.4-p8
|
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-10:1.4-p29
|
||||||
workers: 4
|
workers: 4
|
||||||
min_instances: -1
|
min_instances: -1
|
||||||
max_instances: -1
|
max_instances: -1
|
||||||
|
|
@ -68,6 +68,7 @@ configuration:
|
||||||
protected_role_names:
|
protected_role_names:
|
||||||
- admin
|
- admin
|
||||||
# teams_api_url: ""
|
# teams_api_url: ""
|
||||||
|
# postgres_superuser_teams: "postgres_superusers"
|
||||||
logging_rest_api:
|
logging_rest_api:
|
||||||
api_port: 8008
|
api_port: 8008
|
||||||
ring_log_lines: 100
|
ring_log_lines: 100
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ function build_operator_binary(){
|
||||||
|
|
||||||
# redirecting stderr greatly reduces non-informative output during normal builds
|
# redirecting stderr greatly reduces non-informative output during normal builds
|
||||||
echo "Build operator binary (stderr redirected to /dev/null)..."
|
echo "Build operator binary (stderr redirected to /dev/null)..."
|
||||||
make tools deps local > /dev/null 2>&1
|
make clean tools deps local test > /dev/null 2>&1
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -215,6 +215,7 @@ function main(){
|
||||||
|
|
||||||
clean_up
|
clean_up
|
||||||
start_minikube
|
start_minikube
|
||||||
|
kubectl create namespace test
|
||||||
start_operator
|
start_operator
|
||||||
forward_ports
|
forward_ports
|
||||||
check_health
|
check_health
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue