Unverified Commit 66baedd0 authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #86 from roymx/mike-postgis

Postgis chart
parents a3a27a7e bdbcc58d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -181,6 +181,8 @@ repo:
      chart: charts/redis
    meep-open-map-tiles:
      chart: charts/open-map-tiles
    meep-postgis:
      chart: charts/postgis

  #------------------------------
  #  Packages
+1 −2
Original line number Diff line number Diff line
@@ -44,6 +44,5 @@ spec:
{{- end }}
      terminationGracePeriodSeconds: 5
{{- if .Values.affinity }}
      affinity:
{{- toYaml .Values.affinity | indent 8 }}
      affinity: {{- toYaml .Values.affinity | nindent 8 }}
{{- end }}
+8 −0
Original line number Diff line number Diff line
@@ -54,4 +54,12 @@ persistentVolumeClaim:
  size: "10Gi"
  storageClass: "fullname"

affinity:
  nodeAffinity:
    requiredDuringSchedulingIgnoredDuringExecution:
      nodeSelectorTerms:
      - matchExpressions:
        - key: node-role.kubernetes.io/master
          operator: Exists

meepOrigin: core
+21 −0
Original line number Diff line number Diff line
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
+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
Loading