Skip to content

Commit

Permalink
Adding basic support for working with external postgres DB
Browse files Browse the repository at this point in the history
Signed-off-by: jackyalbo <[email protected]>
  • Loading branch information
jackyalbo committed Jul 26, 2023
1 parent 126210f commit 6882ad4
Show file tree
Hide file tree
Showing 10 changed files with 183 additions and 26 deletions.
13 changes: 13 additions & 0 deletions deploy/crds/noobaa.io_noobaas_crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1393,6 +1393,19 @@ spec:
type: object
type: object
type: object
externalPgSecret:
description: ExternalPgSecret (optional) holds an optional secret
with a url to an extrenal Postgres DB to be used
properties:
name:
description: name is unique within a namespace to reference a
secret resource.
type: string
namespace:
description: namespace defines the space within which the secret
name must be unique.
type: string
type: object
image:
description: Image (optional) overrides the default image for the
server container
Expand Down
1 change: 1 addition & 0 deletions deploy/internal/deployment-endpoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ spec:
- name: DB_TYPE
- name: MONGODB_URL
- name: POSTGRES_HOST
- name: POSTGRES_PORT
- name: POSTGRES_DBNAME
value: nbcore
- name: POSTGRES_USER
Expand Down
1 change: 1 addition & 0 deletions deploy/internal/statefulset-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ spec:
value: "mongodb://noobaa-db-0.noobaa-db/nbcore"
- name: POSTGRES_HOST
value: "noobaa-db-pg-0.noobaa-db-pg"
- name: POSTGRES_PORT
- name: POSTGRES_DBNAME
value: nbcore
- name: POSTGRES_USER
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 @@ -117,6 +117,10 @@ type NooBaaSpec struct {
// +optional
MongoDbURL string `json:"mongoDbURL,omitempty"`

// ExternalPgSecret (optional) holds an optional secret with a url to an extrenal Postgres DB to be used
// +optional
ExternalPgSecret *corev1.SecretReference `json:"externalPgSecret,omitempty"`

// DebugLevel (optional) sets the debug level
// +optional
// +kubebuilder:validation:Enum=all;nsfs;warn;default_level
Expand Down
5 changes: 5 additions & 0 deletions pkg/apis/noobaa/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 18 additions & 3 deletions pkg/bundle/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@ spec:
status: {}
`

const Sha256_deploy_crds_noobaa_io_noobaas_crd_yaml = "5d42c4e8e815c9fed4705d6bf312848202aa4b8f7733d971151fb1cac8eea279"
const Sha256_deploy_crds_noobaa_io_noobaas_crd_yaml = "ada3ba6a3a6aecc2a957947d822baaad68c87f4d04eda5df31e883354dcbff71"

const File_deploy_crds_noobaa_io_noobaas_crd_yaml = `apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand Down Expand Up @@ -2834,6 +2834,19 @@ spec:
type: object
type: object
type: object
externalPgSecret:
description: ExternalPgSecret (optional) holds an optional secret
with a url to an extrenal Postgres DB to be used
properties:
name:
description: name is unique within a namespace to reference a
secret resource.
type: string
namespace:
description: namespace defines the space within which the secret
name must be unique.
type: string
type: object
image:
description: Image (optional) overrides the default image for the
server container
Expand Down Expand Up @@ -3585,7 +3598,7 @@ data:
su postgres -c "bash -x /usr/bin/run-postgresql"
`

const Sha256_deploy_internal_deployment_endpoint_yaml = "591b74cab691e57295c490d0963131b4eefb345aef08c383ef01a9ed4e19ca2b"
const Sha256_deploy_internal_deployment_endpoint_yaml = "b87bb78e630d9e007b71b5aa7745f5d6b6f1771cdd949735652ddc6ebb6ff9d5"

const File_deploy_internal_deployment_endpoint_yaml = `apiVersion: apps/v1
kind: Deployment
Expand Down Expand Up @@ -3677,6 +3690,7 @@ spec:
- name: DB_TYPE
- name: MONGODB_URL
- name: POSTGRES_HOST
- name: POSTGRES_PORT
- name: POSTGRES_DBNAME
value: nbcore
- name: POSTGRES_USER
Expand Down Expand Up @@ -4600,7 +4614,7 @@ spec:
noobaa-s3-svc: "true"
`

const Sha256_deploy_internal_statefulset_core_yaml = "acb0b7199dfc55c7e4ceaff49d2ab754c527ad6bc9be7af539153e10b07294d3"
const Sha256_deploy_internal_statefulset_core_yaml = "71a1afa6000a2ad334ec234951f0cd245d44ceea36fe57c444869accce9c75b7"

const File_deploy_internal_statefulset_core_yaml = `apiVersion: apps/v1
kind: StatefulSet
Expand Down Expand Up @@ -4703,6 +4717,7 @@ spec:
value: "mongodb://noobaa-db-0.noobaa-db/nbcore"
- name: POSTGRES_HOST
value: "noobaa-db-pg-0.noobaa-db-pg"
- name: POSTGRES_PORT
- name: POSTGRES_DBNAME
value: nbcore
- name: POSTGRES_USER
Expand Down
8 changes: 8 additions & 0 deletions pkg/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ var DBStorageClass = ""
// it can be overridden for testing or different url.
var MongoDbURL = ""

// PostgresDbURL is used for providing postgres url
// it can be overridden for testing or different url.
var PostgresDbURL = ""

// DebugLevel can be used to override the default debug level
var DebugLevel = "default_level"

Expand Down Expand Up @@ -224,6 +228,10 @@ func init() {
&MongoDbURL, "mongodb-url",
MongoDbURL, "url for mongodb",
)
FlagSet.StringVar(
&PostgresDbURL, "postgres-url",
PostgresDbURL, "url for postgresql",
)
FlagSet.StringVar(
&DebugLevel, "debug-level",
DebugLevel, "The type of debug sets that the system prints (all, nsfs, warn, default_level)",
Expand Down
36 changes: 33 additions & 3 deletions pkg/system/phase2_creating.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ func (r *Reconciler) ReconcilePhaseCreatingForMainClusters() error {
if err := r.UpgradeSplitDB(); err != nil {
return err
}
// create the mongo db only if mongo db url is not given.
if r.NooBaa.Spec.MongoDbURL == "" {
// create the db only if mongo db url is not given, and postgres secret as well
if r.NooBaa.Spec.MongoDbURL == "" && r.NooBaa.Spec.ExternalPgSecret == nil {
if err := r.UpgradeSplitDB(); err != nil {
return err
}
Expand Down Expand Up @@ -398,7 +398,33 @@ func (r *Reconciler) setDesiredCoreEnv(c *corev1.Container) {
}

case "POSTGRES_HOST":
c.Env[j].Value = r.NooBaaPostgresDB.Name + "-0." + r.NooBaaPostgresDB.Spec.ServiceName
if r.PgExternalHost != "" {
c.Env[j].Value = r.PgExternalHost
} else {
c.Env[j].Value = r.NooBaaPostgresDB.Name + "-0." + r.NooBaaPostgresDB.Spec.ServiceName
}

case "POSTGRES_PORT":
if r.PgExternalPort != "" {
c.Env[j].Value = r.PgExternalPort
} else {
c.Env[j].Value = "5432"
}

case "POSTGRES_DBNAME":
if r.NooBaa.Spec.DBType == "postgres" && r.NooBaa.Spec.ExternalPgSecret != nil {
if c.Env[j].Value != "" {
c.Env[j].Value = ""
}
c.Env[j].ValueFrom = &corev1.EnvVarSource{
SecretKeyRef: &corev1.SecretKeySelector{
LocalObjectReference: corev1.LocalObjectReference{
Name: r.SecretDB.Name,
},
Key: "dbname",
},
}
}

case "DB_TYPE":
if r.NooBaa.Spec.DBType == "postgres" {
Expand Down Expand Up @@ -1038,6 +1064,10 @@ func (r *Reconciler) reconcileDBRBAC() error {
func (r *Reconciler) ReconcileDB() error {
var err error

if r.NooBaa.Spec.ExternalPgSecret != nil {
return nil
}

if err = r.reconcileDBRBAC(); err != nil {
return err
}
Expand Down
68 changes: 52 additions & 16 deletions pkg/system/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package system
import (
"context"
"fmt"
"net"
"net/url"
"os"
goruntime "runtime"
"strings"
Expand Down Expand Up @@ -56,18 +58,19 @@ var (

// Reconciler is the context for loading or reconciling a noobaa system
type Reconciler struct {
Request types.NamespacedName
Client client.Client
Scheme *runtime.Scheme
Ctx context.Context
Logger *logrus.Entry
Recorder record.EventRecorder
NBClient nb.Client
CoreVersion string
OperatorVersion string
OAuthEndpoints *util.OAuth2Endpoints
MongoConnectionString string
ApplyCAsToPods string
Request types.NamespacedName
Client client.Client
Scheme *runtime.Scheme
Ctx context.Context
Logger *logrus.Entry
Recorder record.EventRecorder
NBClient nb.Client
CoreVersion string
OperatorVersion string
OAuthEndpoints *util.OAuth2Endpoints
MongoConnectionString string
PostgresConnectionString string
ApplyCAsToPods string

NooBaa *nbv1.NooBaa
ServiceAccount *corev1.ServiceAccount
Expand Down Expand Up @@ -118,6 +121,8 @@ type Reconciler struct {
KedaTriggerAuthentication *kedav1alpha1.TriggerAuthentication
KedaScaled *kedav1alpha1.ScaledObject
AdapterHPA *autoscalingv2.HorizontalPodAutoscaler
PgExternalHost string
PgExternalPort string
}

// NewReconciler initializes a reconciler to be used for loading or reconciling a noobaa system
Expand Down Expand Up @@ -281,6 +286,7 @@ func NewReconciler(

r.SecretDB.StringData["user"] = "noobaa"
r.SecretDB.StringData["password"] = util.RandomBase64(10)
r.SecretDB.StringData["db_name"] = "nbcore"

// Set STS default backing store session name
r.AWSSTSRoleSessionName = "noobaa-sts-default-backing-store-session"
Expand All @@ -306,10 +312,12 @@ func (r *Reconciler) CheckAll() {
if r.NooBaa.Spec.MongoDbURL == "" {
if r.NooBaa.Spec.DBType == "postgres" {
util.KubeCheck(r.SecretDB)
util.KubeCheck(r.PostgresDBConf)
util.KubeCheck(r.PostgresDBInitDb)
util.KubeCheck(r.NooBaaPostgresDB)
util.KubeCheck(r.ServiceDbPg)
if r.NooBaa.Spec.ExternalPgSecret == nil {
util.KubeCheck(r.PostgresDBConf)
util.KubeCheck(r.PostgresDBInitDb)
util.KubeCheck(r.NooBaaPostgresDB)
util.KubeCheck(r.ServiceDbPg)
}
} else {
util.KubeCheck(r.NooBaaMongoDB)
util.KubeCheck(r.ServiceDb)
Expand Down Expand Up @@ -386,6 +394,34 @@ func (r *Reconciler) Reconcile() (reconcile.Result, error) {
return res, nil
}

if r.NooBaa.Spec.ExternalPgSecret != nil {
secret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Namespace: r.NooBaa.Spec.ExternalPgSecret.Namespace,
Name: r.NooBaa.Spec.ExternalPgSecret.Name,
},
}
if !util.KubeCheck(secret) {
log.Errorf("❌ External DB secret %q was not found or deleted", r.NooBaa.Spec.ExternalPgSecret.Name)
return res, nil
}
u, err := url.Parse(secret.StringData["db_url"])
if err != nil {
log.Errorf("❌ Failed pasting external DB url in secret: %q", r.NooBaa.Spec.ExternalPgSecret.Name)
return res, nil
}
r.SecretDB.StringData["user"] = u.User.Username()
r.SecretDB.StringData["password"], _ = u.User.Password()
r.SecretDB.StringData["dbname"] = u.Path[1:]
r.PgExternalHost = u.Host
r.PgExternalPort = "5432"
host, port, err := net.SplitHostPort(u.Host)
if err == nil {
r.PgExternalHost = host
r.PgExternalPort = port
}
}

err = r.ReconcilePhases()

if err != nil {
Expand Down
Loading

0 comments on commit 6882ad4

Please sign in to comment.