Commit 1143a258 authored by Mike Roy's avatar Mike Roy
Browse files

adapted to postgis

parent d1a8f522
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
apiVersion: v1
name: postgis
version: 8.9.5
appVersion: 11.7.0
description: Chart for PostGIS, a spatial database extender for PostgreSQL object-relational database
keywords:
  - postgresql
  - postgres
  - database
  - sql
  - replication
  - cluster
  - postgis
home: https://postgis.net/
sources:
  - https://github.com/postgis/postgis
+7 −14
Original line number Diff line number Diff line
# PostgreSQL
#PostGIS

[PostgreSQL](https://www.postgresql.org/) is an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance.

For HA, please see [this repo](https://github.com/bitnami/charts/tree/master/bitnami/postgresql-ha)
[PostGIS](https://postgis.net/) is a spatial database extender for PostgreSQL object-relational database. It adds support for geographic objects allowing location queries to be run in SQL.

## TL;DR;

```console
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm install my-release bitnami/postgresql
```
[PostgreSQL](https://www.postgresql.org/) is an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance.

## Introduction

This chart bootstraps a [PostgreSQL](https://github.com/bitnami/bitnami-docker-postgresql) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
This chart bootstraps a PostGIS deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.

Bitnami charts can be used with [Kubeapps](https://kubeapps.com/) for deployment and management of Helm Charts in clusters. This chart has been tested to work with NGINX Ingress, cert-manager, fluentd and Prometheus on top of the [BKPR](https://kubeprod.io/).
This chart was derived from the [Bitnami PostgreSQL chart](https://github.com/helm/charts/tree/master/stable/postgresql) and was modified to deploy the [DockerHub PostGIS](https://registry.hub.docker.com/r/postgis/postgis/tags) docker image.

## Prerequisites

@@ -27,10 +20,10 @@ Bitnami charts can be used with [Kubeapps](https://kubeapps.com/) for deployment
To install the chart with the release name `my-release`:

```console
$ helm install my-release bitnami/postgresql
$ helm install my-release postgis
```

The command deploys PostgreSQL on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
The command deploys PostGIS on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.

> **Tip**: List all releases using `helm list`

Loading