Skip to content

Commit

Permalink
Replace invalid chars from replication slot names (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyphreak authored Jul 6, 2023
1 parent 79512ab commit 590c16b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions charts/dataplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.18
version: 0.1.19

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.1.18
appVersion: 0.1.19
2 changes: 1 addition & 1 deletion charts/dataplane/templates/strimzi/connector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{{- range $db := .Values.cdc.postgres }}
{{- $dbId := required "database id is required" $db.id }}
{{- $dbSlotName := lower $dbId | replace "." "-" }}
{{- $dbSlotName := lower $dbId | replace "." "-" | replace "-" "_" }}
{{- $exclude := list }}
{{- $include := list }}

Expand Down
6 changes: 3 additions & 3 deletions charts/dataplane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ util:
image:
repository: nephelaiio/dataplane-util
pullPolicy: IfNotPresent
tag: dataplane-0.1.18
tag: dataplane-0.1.19
resources: {}

cdc:
Expand Down Expand Up @@ -49,7 +49,7 @@ strimzi:
connect:
image:
repository: nephelaiio/dataplane-connect
tag: dataplane-0.1.18
tag: dataplane-0.1.19
replicas: 1
config:
group.id: connect-cluster
Expand Down Expand Up @@ -104,7 +104,7 @@ metabase:
image:
repository: nephelaiio/dataplane-util
pullPolicy: IfNotPresent
tag: dataplane-0.1.18
tag: dataplane-0.1.19
securityContext: {}

image:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dataplane"
version = "0.1.18"
version = "0.1.19"
description = ""
authors = ["Teodoro Cook <[email protected]>"]

Expand Down

0 comments on commit 590c16b

Please sign in to comment.