fix port and quickstart (#1266)
This commit is contained in:
parent
102178409b
commit
586b46d006
|
|
@ -3,10 +3,10 @@ entries:
|
||||||
postgres-operator-ui:
|
postgres-operator-ui:
|
||||||
- apiVersion: v1
|
- apiVersion: v1
|
||||||
appVersion: 1.6.0
|
appVersion: 1.6.0
|
||||||
created: "2020-12-17T15:49:56.570324588+01:00"
|
created: "2020-12-18T14:19:25.464717041+01:00"
|
||||||
description: Postgres Operator UI provides a graphical interface for a convenient
|
description: Postgres Operator UI provides a graphical interface for a convenient
|
||||||
database-as-a-service user experience
|
database-as-a-service user experience
|
||||||
digest: 9ce86d53b4e79dc405aea5fe2feadd163dfbbde43205782c20206ac0ba9d5e4d
|
digest: d7813a235dd1015377c38fd5a14e7679a411c7340a25cfcf5f5294405f9a2eb2
|
||||||
home: https://github.com/zalando/postgres-operator
|
home: https://github.com/zalando/postgres-operator
|
||||||
keywords:
|
keywords:
|
||||||
- postgres
|
- postgres
|
||||||
|
|
@ -26,7 +26,7 @@ entries:
|
||||||
version: 1.6.0
|
version: 1.6.0
|
||||||
- apiVersion: v1
|
- apiVersion: v1
|
||||||
appVersion: 1.5.0
|
appVersion: 1.5.0
|
||||||
created: "2020-12-17T15:49:56.569780943+01:00"
|
created: "2020-12-18T14:19:25.464015993+01:00"
|
||||||
description: Postgres Operator UI provides a graphical interface for a convenient
|
description: Postgres Operator UI provides a graphical interface for a convenient
|
||||||
database-as-a-service user experience
|
database-as-a-service user experience
|
||||||
digest: c91ea39e6d51d57f4048fb1b6ec53b40823f2690eb88e4e4f1a036367b9fdd61
|
digest: c91ea39e6d51d57f4048fb1b6ec53b40823f2690eb88e4e4f1a036367b9fdd61
|
||||||
|
|
@ -47,4 +47,4 @@ entries:
|
||||||
urls:
|
urls:
|
||||||
- postgres-operator-ui-1.5.0.tgz
|
- postgres-operator-ui-1.5.0.tgz
|
||||||
version: 1.5.0
|
version: 1.5.0
|
||||||
generated: "2020-12-17T15:49:56.569108956+01:00"
|
generated: "2020-12-18T14:19:25.463104102+01:00"
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -49,7 +49,7 @@ envs:
|
||||||
# configure UI service
|
# configure UI service
|
||||||
service:
|
service:
|
||||||
type: "ClusterIP"
|
type: "ClusterIP"
|
||||||
port: "8081"
|
port: "80"
|
||||||
# If the type of the service is NodePort a port can be specified using the nodePort field
|
# If the type of the service is NodePort a port can be specified using the nodePort field
|
||||||
# If the nodePort field is not specified, or if it has no value, then a random port is used
|
# If the nodePort field is not specified, or if it has no value, then a random port is used
|
||||||
# notePort: 32521
|
# notePort: 32521
|
||||||
|
|
|
||||||
|
|
@ -34,8 +34,8 @@ Postgres cluster. This can work in two ways: via a ConfigMap or a custom
|
||||||
The Postgres Operator can be deployed in the following ways:
|
The Postgres Operator can be deployed in the following ways:
|
||||||
|
|
||||||
* Manual deployment
|
* Manual deployment
|
||||||
|
* Kustomization
|
||||||
* Helm chart
|
* Helm chart
|
||||||
* Operator Lifecycle Manager (OLM)
|
|
||||||
|
|
||||||
### Manual deployment setup
|
### Manual deployment setup
|
||||||
|
|
||||||
|
|
@ -91,20 +91,6 @@ The chart works with both Helm 2 and Helm 3. The `crd-install` hook from v2 will
|
||||||
be skipped with warning when using v3. Documentation for installing applications
|
be skipped with warning when using v3. Documentation for installing applications
|
||||||
with Helm 2 can be found in the [v2 docs](https://v2.helm.sh/docs/).
|
with Helm 2 can be found in the [v2 docs](https://v2.helm.sh/docs/).
|
||||||
|
|
||||||
### Operator Lifecycle Manager (OLM)
|
|
||||||
|
|
||||||
The [Operator Lifecycle Manager (OLM)](https://github.com/operator-framework/operator-lifecycle-manager)
|
|
||||||
has been designed to facilitate management of K8s operators. It has to be
|
|
||||||
installed in your K8s environment. When OLM is set up simply download and deploy
|
|
||||||
the Postgres Operator with the following command:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
kubectl create -f https://operatorhub.io/install/postgres-operator.yaml
|
|
||||||
```
|
|
||||||
|
|
||||||
This installs the operator in the `operators` namespace. More information can be
|
|
||||||
found on [operatorhub.io](https://operatorhub.io/operator/postgres-operator).
|
|
||||||
|
|
||||||
## Check if Postgres Operator is running
|
## Check if Postgres Operator is running
|
||||||
|
|
||||||
Starting the operator may take a few seconds. Check if the operator pod is
|
Starting the operator may take a few seconds. Check if the operator pod is
|
||||||
|
|
@ -142,6 +128,9 @@ To deploy the UI simply apply all its manifests files or use the UI helm chart:
|
||||||
# manual deployment
|
# manual deployment
|
||||||
kubectl apply -f ui/manifests/
|
kubectl apply -f ui/manifests/
|
||||||
|
|
||||||
|
# or kustomization
|
||||||
|
kubectl apply -k github.com/zalando/postgres-operator/ui/manifests
|
||||||
|
|
||||||
# or helm chart
|
# or helm chart
|
||||||
helm install postgres-operator-ui ./charts/postgres-operator-ui
|
helm install postgres-operator-ui ./charts/postgres-operator-ui
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue