[statping] Bump postgresql dependency (#552)

* [statping] Bump postgresql dependency
This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2021-02-05 15:10:40 +01:00 committed by GitHub
parent 974de8e654
commit 15eb4e4e2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 5 deletions

View File

@ -1,5 +1,13 @@
# See https://pre-commit.com for more information # See https://pre-commit.com for more information
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: mixed-line-ending
- repo: local - repo: local
hooks: hooks:
- id: ct-lint - id: ct-lint

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: statping name: statping
description: Status page for monitoring your websites and applications description: Status page for monitoring your websites and applications
type: application type: application
version: 1.5.0 version: 1.5.1
appVersion: v0.90.65 appVersion: v0.90.65
keywords: keywords:
- statping - statping
@ -18,5 +18,5 @@ icon: https://github.com/statping/statping/blob/dev/frontend/src/assets/logo.png
dependencies: dependencies:
- name: postgresql - name: postgresql
repository: https://charts.bitnami.com/bitnami repository: https://charts.bitnami.com/bitnami
version: 10.1.4 version: 10.2.6
condition: postgres.posgresql.enabled condition: postgres.posgresql.enabled

View File

@ -32,6 +32,5 @@ helm install statping \
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the
chart. For example, chart. For example,
```console ```console
helm install statping k8s-at-home/statping --values values.yaml helm install statping k8s-at-home/statping --values values.yaml
``` ```

View File

@ -102,7 +102,7 @@ spec:
- name: DB_CONN - name: DB_CONN
value: postgres value: postgres
- name: DB_HOST - name: DB_HOST
value: {{ template "postgresql.fullname" . }}-postgresql value: {{ template "common.names.fullname" . }}-postgresql
- name: DB_DATABASE - name: DB_DATABASE
value: {{ template "postgresql.database" . }} value: {{ template "postgresql.database" . }}
- name: DB_USER - name: DB_USER

View File

@ -108,6 +108,10 @@ postgres:
enabled: true enabled: true
# See https://github.com/bitnami/charts/tree/master/bitnami/postgresql for configuration # See https://github.com/bitnami/charts/tree/master/bitnami/postgresql for configuration
# This is required for postgresql to render its fullname template
replication:
enabled: false
externalSecret: externalSecret:
enabled: false enabled: false
type: kubernetes-external-secrets type: kubernetes-external-secrets