Skip to content

Commit 4f41abb

Browse files
committed
feat: upgrade peerdb version
1 parent 5279541 commit 4f41abb

File tree

7 files changed

+17
-7
lines changed

7 files changed

+17
-7
lines changed

.env.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ TEMPORAL_SSL_MODE=false # Should be false if using in-cluster catalog, set true
2727

2828
# PEERDB SETTINGS
2929
# env variables for peerdb deployment
30-
PEERDB_VERSION=stable-v0.12.2
30+
PEERDB_VERSION=stable-v0.19.1
3131
# name of the database that will be used by peerdb.
3232
PEERDB_CATALOG_DATABASE=peerdb_catalog_db
3333
PEERDB_CATALOG_CREDS_SECRET_NAME=catalog-db-manual-creds

.pre-commit-config.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
repos:
2+
- repo: https://github.com/norwoodj/helm-docs
3+
rev: v1.14.2
4+
hooks:
5+
- id: helm-docs-container
6+
name: helm-docs
7+
args:
8+
- --chart-search-root=.
9+
- --chart-to-generate=peerdb,peerdb-catalog

peerdb-catalog/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type: application
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16-
version: 0.6.0
16+
version: 0.7.0
1717
# This is the version number of the application being deployed. This version number should be
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.

peerdb-catalog/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# peerdb-catalog
22

3-
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.2](https://img.shields.io/badge/AppVersion-v0.12.2-informational?style=flat-square)
3+
![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.2](https://img.shields.io/badge/AppVersion-v0.12.2-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

peerdb/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type: application
2525
# This is the chart version. This version number should be incremented each time you make changes
2626
# to the chart and its templates, including the app version.
2727
# Versions are expected to follow Semantic Versioning (https://semver.org/)
28-
version: 0.6.0
28+
version: 0.7.0
2929
# This is the version number of the application being deployed. This version number should be
3030
# incremented each time you make changes to the application. Versions are not expected to
3131
# follow Semantic Versioning. They should reflect the version the application is using.

peerdb/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# peerdb
22

3-
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.2](https://img.shields.io/badge/AppVersion-v0.12.2-informational?style=flat-square)
3+
![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.2](https://img.shields.io/badge/AppVersion-v0.12.2-informational?style=flat-square)
44

55
Install PeerDB along with Temporal.
66

@@ -177,7 +177,7 @@ Install PeerDB along with Temporal.
177177
| peerdb.service.port | int | `9900` | |
178178
| peerdb.service.targetPort | int | `9900` | |
179179
| peerdb.service.type | string | `"ClusterIP"` | |
180-
| peerdb.version | string | `"stable-v0.12.1"` | |
180+
| peerdb.version | string | `"stable-v0.19.1"` | This version is overridden by .env file if the install_peerdb.sh script is being used |
181181
| peerdbUI.credentials.nexauth_secret | string | `""` | |
182182
| peerdbUI.credentials.password | string | `"_PEERDB_PASSWORD_"` | |
183183
| peerdbUI.deployment.annotations | object | `{}` | annotations that will be applied to the peerdbUI deployment, NOT the pods |

peerdb/values.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@ peerdb:
299299
# -- annotations that will be applied to the peerdb-server deployment, NOT the pods
300300
annotations: { }
301301
replicaCount: 4
302-
version: stable-v0.12.1
302+
# -- This version is overridden by .env file if the install_peerdb.sh script is being used
303+
version: stable-v0.19.1
303304
image:
304305
repository: ghcr.io/peerdb-io/peerdb-server
305306
pullPolicy: Always

0 commit comments

Comments
 (0)