diff --git a/charts/postgres-operator-ui/index.yaml b/charts/postgres-operator-ui/index.yaml index 7d1f5fc1c..948a52274 100644 --- a/charts/postgres-operator-ui/index.yaml +++ b/charts/postgres-operator-ui/index.yaml @@ -3,10 +3,10 @@ entries: postgres-operator-ui: - apiVersion: v1 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 database-as-a-service user experience - digest: 9ce86d53b4e79dc405aea5fe2feadd163dfbbde43205782c20206ac0ba9d5e4d + digest: d7813a235dd1015377c38fd5a14e7679a411c7340a25cfcf5f5294405f9a2eb2 home: https://github.com/zalando/postgres-operator keywords: - postgres @@ -26,7 +26,7 @@ entries: version: 1.6.0 - apiVersion: v1 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 database-as-a-service user experience digest: c91ea39e6d51d57f4048fb1b6ec53b40823f2690eb88e4e4f1a036367b9fdd61 @@ -47,4 +47,4 @@ entries: urls: - postgres-operator-ui-1.5.0.tgz version: 1.5.0 -generated: "2020-12-17T15:49:56.569108956+01:00" +generated: "2020-12-18T14:19:25.463104102+01:00" diff --git a/charts/postgres-operator-ui/postgres-operator-ui-1.6.0.tgz b/charts/postgres-operator-ui/postgres-operator-ui-1.6.0.tgz index 2fced4709..68a43b51b 100644 Binary files a/charts/postgres-operator-ui/postgres-operator-ui-1.6.0.tgz and b/charts/postgres-operator-ui/postgres-operator-ui-1.6.0.tgz differ diff --git a/charts/postgres-operator-ui/values.yaml b/charts/postgres-operator-ui/values.yaml index 4dc6388ac..dea5007c9 100644 --- a/charts/postgres-operator-ui/values.yaml +++ b/charts/postgres-operator-ui/values.yaml @@ -49,7 +49,7 @@ envs: # configure UI service service: 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 nodePort field is not specified, or if it has no value, then a random port is used # notePort: 32521 diff --git a/docs/quickstart.md b/docs/quickstart.md index 16b587d84..86d2fabbf 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -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: * Manual deployment +* Kustomization * Helm chart -* Operator Lifecycle Manager (OLM) ### 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 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 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 kubectl apply -f ui/manifests/ +# or kustomization +kubectl apply -k github.com/zalando/postgres-operator/ui/manifests + # or helm chart helm install postgres-operator-ui ./charts/postgres-operator-ui ```