Merge branch 'master' into cron-pod-affinity

This commit is contained in:
Felix Kunde 2019-07-22 10:24:14 +02:00
commit ef6e24d7f0
12 changed files with 38 additions and 39 deletions

View File

@ -1,4 +1,4 @@
# Administrator Guide <h1>Administrator Guide</h1>
Learn how to configure and manage the Postgres Operator in your Kubernetes (K8s) Learn how to configure and manage the Postgres Operator in your Kubernetes (K8s)
environment. environment.

View File

@ -1,4 +1,4 @@
# Developer Guide <h1>Developer Guide</h1>
Read this guide if you want to debug the operator, fix bugs or contribute new Read this guide if you want to debug the operator, fix bugs or contribute new
features and tests. features and tests.

View File

@ -1,5 +1,4 @@
<h1>Google Summer of Code 2019</h1>
# Google Summer of Code 2019
## Applications steps ## Applications steps

View File

@ -1,4 +1,4 @@
# Concepts <h1>Concepts</h1>
The Postgres [operator](https://coreos.com/blog/introducing-operators.html) The Postgres [operator](https://coreos.com/blog/introducing-operators.html)
manages PostgreSQL clusters on Kubernetes (K8s): manages PostgreSQL clusters on Kubernetes (K8s):

View File

@ -1,4 +1,4 @@
# Postgres Operator UI <h1>Postgres Operator UI</h1>
The Postgres Operator UI provides a graphical interface for a convenient The Postgres Operator UI provides a graphical interface for a convenient
database-as-a-service user experience. Once the operator is set up by database database-as-a-service user experience. Once the operator is set up by database

View File

@ -1,4 +1,4 @@
# Quickstart <h1>Quickstart</h1>
This guide aims to give you a quick look and feel for using the Postgres This guide aims to give you a quick look and feel for using the Postgres
Operator on a local Kubernetes environment. Operator on a local Kubernetes environment.

View File

@ -1,4 +1,4 @@
# Cluster manifest reference <h1>Cluster manifest reference</h1>
Individual Postgres clusters are described by the Kubernetes *cluster manifest* Individual Postgres clusters are described by the Kubernetes *cluster manifest*
that has the structure defined by the `postgresql` CRD (custom resource that has the structure defined by the `postgresql` CRD (custom resource

View File

@ -28,7 +28,7 @@ flags](https://godoc.org/github.com/golang/glog) are also supported. For
instance, one may want to add `-alsologtostderr` and `-v=8` to debug the instance, one may want to add `-alsologtostderr` and `-v=8` to debug the
operator REST calls. operator REST calls.
## Environment variables # Environment variables
The following environment variables are accepted by the operator: The following environment variables are accepted by the operator:

View File

@ -1,4 +1,4 @@
# Configuration parameters <h1>Configuration parameters</h1>
There are two mutually-exclusive methods to set the Postgres Operator There are two mutually-exclusive methods to set the Postgres Operator
configuration. configuration.

View File

@ -1,4 +1,4 @@
# User Guide <h1>User Guide</h1>
Learn how to work with the Postgres Operator in a Kubernetes (K8s) environment. Learn how to work with the Postgres Operator in a Kubernetes (K8s) environment.

View File

@ -35,4 +35,3 @@ spec:
# In order to use the CRD OperatorConfiguration instead, uncomment these lines and comment out the two lines above # In order to use the CRD OperatorConfiguration instead, uncomment these lines and comment out the two lines above
# - name: POSTGRES_OPERATOR_CONFIGURATION_OBJECT # - name: POSTGRES_OPERATOR_CONFIGURATION_OBJECT
# value: postgresql-operator-default-configuration # value: postgresql-operator-default-configuration

View File

@ -3,13 +3,14 @@ repo_url: https://github.com/zalando/postgres-operator
theme: readthedocs theme: readthedocs
nav: nav:
- index.md - Concepts: 'index.md'
- quickstart.md - Quickstart: 'quickstart.md'
- operator-ui.md - Postgres Operator UI: 'operator-ui.md'
- administrator.md - Admin guide: 'administrator.md'
- user.md - User guide: 'user.md'
- developer.md - Developer guide: 'developer.md'
- Reference: - Reference:
- reference/operator_parameters.md - Config parameters: 'reference/operator_parameters.md'
- reference/cluster_manifest.md - Manifest parameters: 'reference/cluster_manifest.md'
- reference/command_line_and_environment.md - CLI options and environment: 'reference/command_line_and_environment.md'
- Google Summer of Code 2019: 'gsoc-2019/ideas.md'