Skip to content
Draft
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
4 changes: 2 additions & 2 deletions e2e/minor_version_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ func TestMinorVersionUpgrade(t *testing.T) {
username := "admin"
password := "password"

fromVersion := "18.1"
toVersion := "18.2"
fromVersion := "18.2"
toVersion := "18.3"

ctx, cancel := context.WithTimeout(t.Context(), 5*time.Minute)
defer cancel()
Expand Down
10 changes: 10 additions & 0 deletions server/internal/orchestrator/swarm/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ func NewVersions(cfg config.Config) *Versions {
PgEdgeImage: imageTag(cfg, "16.12-spock5.0.5-standard-1"),
})

versions.addImage(host.MustPgEdgeVersion("16.13", "5"), &Images{
PgEdgeImage: imageTag(cfg, "16-spock5-standard"),
})

// pg17
versions.addImage(host.MustPgEdgeVersion("17.6", "5"), &Images{
PgEdgeImage: imageTag(cfg, "17.6-spock5.0.4-standard-3"),
Expand All @@ -45,6 +49,9 @@ func NewVersions(cfg config.Config) *Versions {
versions.addImage(host.MustPgEdgeVersion("17.8", "5"), &Images{
PgEdgeImage: imageTag(cfg, "17.8-spock5.0.5-standard-1"),
})
versions.addImage(host.MustPgEdgeVersion("17.9", "5"), &Images{
PgEdgeImage: imageTag(cfg, "17-spock5-standard"),
})

// pg18
versions.addImage(host.MustPgEdgeVersion("18.0", "5"), &Images{
Expand All @@ -56,6 +63,9 @@ func NewVersions(cfg config.Config) *Versions {
versions.addImage(host.MustPgEdgeVersion("18.2", "5"), &Images{
PgEdgeImage: imageTag(cfg, "18.2-spock5.0.5-standard-1"),
})
versions.addImage(host.MustPgEdgeVersion("18.3", "5"), &Images{
PgEdgeImage: imageTag(cfg, "18-spock5-standard"),
})

versions.defaultVersion = host.MustPgEdgeVersion("18.2", "5")

Expand Down