Skip to content
Merged
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
1 change: 1 addition & 0 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
apiVersion: v1
name: pgdog
version: v0.28
appVersion: "0.1.21"
2 changes: 1 addition & 1 deletion templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
{{- if .Values.image.name }}
image: {{ .Values.image.name }}
{{- else }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
{{- end }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["/usr/local/bin/pgdog"]
Expand Down
6 changes: 2 additions & 4 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ podAnnotations: {}
image:
# repository is the Docker image repository
repository: ghcr.io/pgdogdev/pgdog
# tag is the Docker image tag (defaults to "latest" if not specified)
tag: "latest"
# tag is the Docker image tag (defaults to Chart appVersion if not specified)
tag: ""
# pullPolicy specifies when to use cached version of the image.
pullPolicy: IfNotPresent
# name is the full image name (DEPRECATED: use repository and tag)
Expand Down Expand Up @@ -164,7 +164,6 @@ service:
# Valid values: "internet-facing" or "internal"
scheme: "internal"


# nodeSelector allows scheduling pods on nodes with specific labels
nodeSelector: {}

Expand Down Expand Up @@ -375,7 +374,6 @@ queryStats:
queryPlansCache: 100
maxErrors: 100
maxErrorAge: 300000

# LSN check configuration for replication failover auto mode (in milliseconds)
# See: https://docs.pgdog.dev/features/load-balancer/replication-failover/
# lsnCheckDelay: 0 # Set to 0 to start LSN monitoring immediately
Expand Down
Loading