Skip to content

Commit

Permalink
removed single quotes from postgres archive command value (#946)
Browse files Browse the repository at this point in the history
  • Loading branch information
akankshakumari393 committed Apr 6, 2021
1 parent a25ae11 commit 7507a31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/app/postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type PostgresDB struct {
namespace string
}

// Last tested chart version "9.0.0"
// Last tested chart version "10.3.15"
func NewPostgresDB(name string, subPath string) App {
return &PostgresDB{
name: name,
Expand All @@ -54,7 +54,7 @@ func NewPostgresDB(name string, subPath string) App {
"image.repository": "kanisterio/postgresql",
"image.tag": "0.50.0",
"postgresqlPassword": "test@54321",
"postgresqlExtendedConf.archiveCommand": "'envdir /bitnami/postgresql/data/env wal-e wal-push %p'",
"postgresqlExtendedConf.archiveCommand": "envdir /bitnami/postgresql/data/env wal-e wal-push %p",
"postgresqlExtendedConf.archiveMode": "true",
"postgresqlExtendedConf.archiveTimeout": "60",
"postgresqlExtendedConf.walLevel": "archive",
Expand Down

0 comments on commit 7507a31

Please sign in to comment.