Skip to content

Commit

Permalink
Update baseImage of kanisterio/postgresql to postgresql:13.4.0 (#1115)
Browse files Browse the repository at this point in the history
* Update baseImage of kanisterio/postgresql
Remove PITRPostgres test from integration test

* Update Comment for latest tested chart version for postgres

* Update build/integration-test.sh

Co-authored-by: Prasad Ghangal <prasad.ghangal@gmail.com>

* Update build/integration-test.sh

Co-authored-by: Prasad Ghangal <prasad.ghangal@gmail.com>
  • Loading branch information
akankshakumari393 and PrasadG193 committed Oct 12, 2021
1 parent 173fd5c commit 8aca330
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion build/integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ TEST_TIMEOUT="30m"
# Set default options
TEST_OPTIONS="-tags=integration -timeout ${TEST_TIMEOUT} -check.suitep ${DOP}"
# Regex to match apps to run in short mode
SHORT_APPS="^PostgreSQL$|^PITRPostgreSQL|^MySQL$|Elasticsearch|^MongoDB$|Maria"
# TODO: PITRPostgreSQL app is incompatible with PostgreSQL:13.4.0`
# Re-enable PITRPostgreSQL app once fixed
SHORT_APPS="^PostgreSQL$|^MySQL$|Elasticsearch|^MongoDB$|Maria"
# OCAPPS has all the apps that are to be tested against openshift cluster
OC_APPS3_11="MysqlDBDepConfig$|MongoDBDepConfig$|PostgreSQLDepConfig$"
OC_APPS4_4="MysqlDBDepConfig4_4|MongoDBDepConfig4_4|PostgreSQLDepConfig4_4"
Expand Down
2 changes: 1 addition & 1 deletion docker/postgresql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bitnami/postgresql:9.6-debian-9
FROM bitnami/postgresql:13.4.0

USER root

Expand Down
2 changes: 1 addition & 1 deletion 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 "10.3.15"
// Last tested chart version "10.12.3". Also we are using postgres version 13.4
func NewPostgresDB(name string, subPath string) App {
return &PostgresDB{
name: name,
Expand Down

0 comments on commit 8aca330

Please sign in to comment.