Skip to content

Commit 0ae290a

Browse files
feat: upgrade PeerDB release version to latest
1 parent 8ed4342 commit 0ae290a

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

.env.template

Lines changed: 1 addition & 1 deletion
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.30.9
30+
PEERDB_VERSION=stable-v0.31.0
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

peerdb-catalog/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ 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.9.0
16+
version: 0.9.1
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.
2020
# It is recommended to use it with quotes.
21-
appVersion: "v0.30.9"
21+
appVersion: "v0.31.0"
2222
maintainers:
2323
- name: PeerDB Inc.
2424
url: https://peerdb.io/

peerdb-catalog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# peerdb-catalog
22

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

55
A Helm chart for Kubernetes
66

peerdb/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ 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.9.0
28+
version: 0.9.1
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.
3232
# It is recommended to use it with quotes.
33-
appVersion: "v0.30.9"
33+
appVersion: "v0.31.0"

peerdb/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# peerdb
22

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

55
Install PeerDB along with Temporal.
66

@@ -180,7 +180,7 @@ Install PeerDB along with Temporal.
180180
| peerdb.service.port | int | `9900` | |
181181
| peerdb.service.targetPort | int | `9900` | |
182182
| peerdb.service.type | string | `"ClusterIP"` | |
183-
| peerdb.version | string | `"stable-v0.30.9"` | This version is overridden by .env file if the install_peerdb.sh script is being used In that case, either update the .env file or override it via values.customer.yaml when installing |
183+
| peerdb.version | string | `"stable-v0.31.0"` | This version is overridden by .env file if the install_peerdb.sh script is being used In that case, either update the .env file or override it via values.customer.yaml when installing |
184184
| peerdbUI.credentials.nexauth_secret | string | `""` | |
185185
| peerdbUI.credentials.password | string | `"_PEERDB_PASSWORD_"` | |
186186
| peerdbUI.deployment.annotations | object | `{}` | annotations that will be applied to the peerdbUI deployment, NOT the pods |

peerdb/values.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ serviceAccount:
3333
create: true
3434
name:
3535
# -- Extra annotations that will be applied to the service account, e.g. for AWS IAM roles, or GCP Workload Identity
36-
extraAnnotations:
37-
{ }
36+
extraAnnotations: {}
3837
temporal:
3938
deploy:
4039
# -- Whether to deploy temporal, pulled from `TEMPORAL_DEPLOY_ENABLED` from .env
@@ -301,7 +300,7 @@ peerdb:
301300
replicaCount: 4
302301
# -- This version is overridden by .env file if the install_peerdb.sh script is being used
303302
# In that case, either update the .env file or override it via values.customer.yaml when installing
304-
version: stable-v0.30.9
303+
version: stable-v0.31.0
305304
image:
306305
repository: ghcr.io/peerdb-io/peerdb-server
307306
pullPolicy: Always

0 commit comments

Comments
 (0)