Skip to content

Commit

Permalink
db upgrage: upgrade postgres 15 to postgres 16
Browse files Browse the repository at this point in the history
The Postgres upgrade from 15 to 16 or any later versions can be done by adding the env variable named POSTGRES_UPGRADE = copy in the pg db pod.

More about upgrade process is here: https://www.postgresql.org/docs/current/pgupgrade.html

In our case, we achieve the upgrade by setting this env var in noobaa-db-pg STS.

Once after upgrade is done, we have to remove the POSTGRES_UPGRADE env from the STS. Otherwise pg db pod fails to come up because the db pod check PG directory version against upgrade image version and exits if there is no upgrade required and POSTGRES_UPGRADE is still provided.

To remove this env, we store the upgrade status in noobaa-core CR after the PG upgrade and refer the same status during db reconcile. If the upgrade is already done, we remove this env from desired sts status.

This will help to upgrade the db smoothly.

Signed-off-by: Vinayak Hariharmath <[email protected]>
  • Loading branch information
vec-tr committed Nov 18, 2024
1 parent b62bb7e commit 9be57a8
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 10 deletions.
4 changes: 4 additions & 0 deletions deploy/crds/noobaa.io_noobaas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1875,6 +1875,10 @@ spec:
description: Phase is a simple, high-level summary of where the System
is in its lifecycle
type: string
postgresMajorVersion:
description: PostgresMajorVersion is the major version of postgress
db image
type: integer
postgresUpdatePhase:
description: Upgrade reports the status of the ongoing postgres upgrade
process
Expand Down
4 changes: 4 additions & 0 deletions pkg/apis/noobaa/v1alpha1/noobaa_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,10 @@ type NooBaaStatus struct {
// BeforeUpgradeDbImage is the db image used before last db upgrade
// +optional
BeforeUpgradeDbImage *string `json:"beforeUpgradeDbImage,omitempty"`

// PostgresMajorVersion is the major version of postgress db image
// +optional
PostgresMajorVersion int `json:"postgresMajorVersion,omitempty"`
}

// SystemPhase is a string enum type for system phases
Expand Down
6 changes: 5 additions & 1 deletion pkg/bundle/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,7 @@ spec:
status: {}
`

const Sha256_deploy_crds_noobaa_io_noobaas_yaml = "3f88c800238f25e5dd26f3f1bf19028571cc646e3aea0f868bfd2ff600ee3ed1"
const Sha256_deploy_crds_noobaa_io_noobaas_yaml = "787e8b082fa354ade926c3d38c77647aebab36c5b22e905f527225b68a7a8495"

const File_deploy_crds_noobaa_io_noobaas_yaml = `---
apiVersion: apiextensions.k8s.io/v1
Expand Down Expand Up @@ -3294,6 +3294,10 @@ spec:
description: Phase is a simple, high-level summary of where the System
is in its lifecycle
type: string
postgresMajorVersion:
description: PostgresMajorVersion is the major version of postgress
db image
type: integer
postgresUpdatePhase:
description: Upgrade reports the status of the ongoing postgres upgrade
process
Expand Down
6 changes: 5 additions & 1 deletion pkg/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ var NooBaaImage = ContainerImage

// DBImage is the default db image url
// it can be overridden for testing or different registry locations.
var DBImage = "quay.io/sclorg/postgresql-15-c9s"
var DBImage = "quay.io/sclorg/postgresql-16-c9s"

// Postgress Major version is the major version of Postgress image
// This is referred for postgres upgrade.
var PostgresMajorVersion = 16

// Psql12Image is the default postgres12 db image url
// currently it can not be overridden.
Expand Down
118 changes: 118 additions & 0 deletions pkg/system/phase2_creating.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import (
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/intstr"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
)

const (
Expand Down Expand Up @@ -130,6 +131,12 @@ func (r *Reconciler) ReconcilePhaseCreatingForMainClusters() error {
return err
}
}

// Once the db is reconciled, upgrade it if it is required
if err := r.UpgradeDb(); err != nil {
return err
}

// create bucket logging pvc if not provided by user for 'Guaranteed' logging in ODF env
if r.NooBaa.Spec.BucketLogging.LoggingType == nbv1.BucketLoggingTypeGuaranteed {
if err := r.ReconcileODFBucketLoggingPVC(); err != nil {
Expand All @@ -152,6 +159,46 @@ func (r *Reconciler) ReconcilePhaseCreatingForMainClusters() error {
return nil
}

func (r *Reconciler) UpgradeDb() error {
var result controllerutil.OperationResult
var err error

// Check the need for upgrade
if r.NooBaa.Status.PostgresUpdatePhase == nbv1.UpgradePhasePrepare {
r.NooBaa.Status.PostgresUpdatePhase = nbv1.UpgradePhaseUpgrade
// Upgrade db image in db sts
if options.PostgresMajorVersion > r.NooBaa.Status.PostgresMajorVersion {
result, err = controllerutil.CreateOrUpdate(
r.Ctx, r.Client, r.NooBaaPostgresDB, func() error {
r.setPGUpgradeEnvInSTS()
r.updateDBImageForUpgrade()
return nil
},
)
// Set the upgrade finished flag here and refer the same to remove the
// POSTGRES_UPGRADE flag in next reconcile.
if result == controllerutil.OperationResultUpdated {
r.NooBaa.Status.PostgresUpdatePhase = nbv1.UpgradePhaseFinished
r.NooBaa.Status.PostgresMajorVersion = options.PostgresMajorVersion
}
}
} else {
if r.NooBaa.Status.PostgresUpdatePhase == nbv1.UpgradePhaseFinished {
_, err = controllerutil.CreateOrUpdate(
r.Ctx, r.Client, r.NooBaaPostgresDB, func() error {
r.unSetPGUpgradeEnvInSTS()
return nil
},
)
return err
} else {
// No need of upgrade or remove env var from sts
return nil
}
}
return err
}

// SetDesiredServiceAccount updates the ServiceAccount as desired for reconciling
func (r *Reconciler) SetDesiredServiceAccount() error {
if r.ServiceAccount.Annotations == nil {
Expand Down Expand Up @@ -223,6 +270,69 @@ func (r *Reconciler) SetDesiredServiceDBForPostgres() error {
return nil
}

func (r *Reconciler) updateDBImageForUpgrade() {
var podSpec = &r.NooBaaPostgresDB.Spec.Template.Spec

for i := range podSpec.Containers {
c := &podSpec.Containers[i]
if c.Name == "db" {
// Fetch the DB image from options.go
c.Image = options.DBImage
if r.NooBaa.Spec.DBResources != nil {
c.Resources = *r.NooBaa.Spec.DBResources
}

c.Lifecycle = &corev1.Lifecycle{
PreStop: &corev1.LifecycleHandler{
Exec: &corev1.ExecAction{
Command: []string{"/bin/sh", "-c", "pg_ctl -D /var/lib/pgsql/data/userdata/ -w -t 60 -m fast stop"},
},
},
}

}
}
}

// Set env "POSTGRESQL_UPGRADE=copy" in PG sts to iniate the upgrade
func (r *Reconciler) setPGUpgradeEnvInSTS() {
for i, container := range r.NooBaaPostgresDB.Spec.Template.Spec.Containers {
if container.Name == "db" {
for _, env := range container.Env {
if env.Name == "POSTGRESQL_UPGRADE" {
return
}
}
envVars := container.Env
newEnvVar := corev1.EnvVar{
Name: "POSTGRESQL_UPGRADE",
Value: "copy",
}

envVars = append(envVars, newEnvVar)
r.NooBaaPostgresDB.Spec.Template.Spec.Containers[i].Env = envVars
return
}
}
}

// unSet env "POSTGRESQL_UPGRADE=copy" in PG sts after upgrade
func (r *Reconciler) unSetPGUpgradeEnvInSTS() {
for i, container := range r.NooBaaPostgresDB.Spec.Template.Spec.Containers {
if container.Name == "db" {
newEnvVars := []corev1.EnvVar{}
for _, env := range container.Env {
if env.Name != "POSTGRESQL_UPGRADE" {
newEnvVars = append(newEnvVars, env)
}
}
r.NooBaaPostgresDB.Spec.Template.Spec.Containers[i].Env = newEnvVars
return
}
}
r.NooBaa.Status.PostgresUpdatePhase = nbv1.UpgradePhaseNone
}

// SetDesiredNooBaaDB updates the NooBaaDB as desired for reconciling
func (r *Reconciler) SetDesiredNooBaaDB() error {
var NooBaaDBTemplate *appsv1.StatefulSet = nil
Expand Down Expand Up @@ -256,7 +366,9 @@ func (r *Reconciler) SetDesiredNooBaaDB() error {
for i := range podSpec.Containers {
c := &podSpec.Containers[i]
if c.Name == "db" {
current_image := c.Image
c.Image = GetDesiredDBImage(r.NooBaa, c.Image)
r.IsDBUpgradeReqd(current_image, c.Image)
if r.NooBaa.Spec.DBResources != nil {
c.Resources = *r.NooBaa.Spec.DBResources
}
Expand Down Expand Up @@ -353,6 +465,12 @@ func (r *Reconciler) SetDesiredNooBaaDB() error {
return nil
}

func (r *Reconciler) IsDBUpgradeReqd(currentImage string, desiredImage string) {
if currentImage != "NOOBAA_DB_IMAGE" && currentImage != desiredImage {
r.NooBaa.Status.PostgresUpdatePhase = nbv1.UpgradePhasePrepare
}
}

func (r *Reconciler) setDesiredCoreEnv(c *corev1.Container) {
for j := range c.Env {
switch c.Env[j].Name {
Expand Down
8 changes: 0 additions & 8 deletions pkg/system/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -1129,14 +1129,6 @@ func GetDesiredDBImage(sys *nbv1.NooBaa, currentImage string) string {
return psql12Image
}

if sys.Spec.DBImage != nil {
return *sys.Spec.DBImage
}

if os.Getenv("NOOBAA_DB_IMAGE") != "" {
return os.Getenv("NOOBAA_DB_IMAGE")
}

return options.DBImage
}

Expand Down

0 comments on commit 9be57a8

Please sign in to comment.