Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Phil/rename3 #29

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/paradedb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#
apiVersion: v2
name: paradedb-cluster
name: paradedb
description: Deploys and manages a ParadeDB CloudNativePG cluster and its associated resources.
icon: https://raw.githubusercontent.com/paradedb/paradedb/main/docs/logo/light.svg
type: application
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
name: source-paradedb-cluster
name: source-paradedb
status:
readyInstances: 1
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ spec:
- name: DB_USER
valueFrom:
secretKeyRef:
name: source-paradedb-cluster-superuser
name: source-paradedb-superuser
key: username
- name: DB_PASS
valueFrom:
secretKeyRef:
name: source-paradedb-cluster-superuser
name: source-paradedb-superuser
key: password
- name: DB_URI
value: postgres://$(DB_USER):$(DB_PASS)@source-paradedb-cluster-rw:5432
value: postgres://$(DB_USER):$(DB_PASS)@source-paradedb-rw:5432
image: alpine:3.19
command: ['sh', '-c']
args:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
name: pg-basebackup-paradedb-cluster
name: pg-basebackup-paradedb
status:
readyInstances: 2
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ recovery:
method: "pg_basebackup"
pgBaseBackup:
source:
host: "source-paradedb-cluster-rw"
host: "source-paradedb-rw"
database: "mygooddb"
username: "streaming_replica"
sslMode: "require"
sslKeySecret:
name: source-paradedb-cluster-replication
name: source-paradedb-replication
key: tls.key
sslCertSecret:
name: source-paradedb-cluster-replication
name: source-paradedb-replication
key: tls.crt

cluster:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
- name: DB_URI
valueFrom:
secretKeyRef:
name: pg-basebackup-paradedb-cluster-superuser
name: pg-basebackup-paradedb-superuser
key: uri
image: alpine:3.19
command: ['sh', '-c']
Expand Down
Loading