Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add persistentVolumeClaimRetentionPolicy #1633

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions .action_templates/jobs/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,5 @@ tests:
distro: ubi
- test-name: replica_set_remove_user
distro: ubi
- test-name: replica_set_custom_persistentvolumeclaimretentionpolicy_test
distro: ubi
2 changes: 2 additions & 0 deletions .github/workflows/e2e-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ jobs:
distro: ubi
- test-name: replica_set_remove_user
distro: ubi
- test-name: replica_set_custom_persistentvolumeclaimretentionpolicy_test
distro: ubi
steps:
# template: .action_templates/steps/cancel-previous.yaml
- name: Cancel Previous Runs
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ jobs:
distro: ubi
- test-name: replica_set_remove_user
distro: ubi
- test-name: replica_set_custom_persistentvolumeclaimretentionpolicy_test
distro: ubi
steps:
# template: .action_templates/steps/cancel-previous.yaml
- name: Cancel Previous Runs
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
apiVersion: mongodbcommunity.mongodb.com/v1
kind: MongoDBCommunity
metadata:
name: mongodb-specify-volumeclaimretention-values
spec:
members: 3
type: ReplicaSet
version: "6.0.5"
security:
authentication:
modes: ["SCRAM"]
users:
- name: my-user
db: admin
passwordSecretRef: # a reference to the secret that will be used to generate the user's password
name: my-user-password
roles:
- name: clusterAdmin
db: admin
- name: userAdminAnyDatabase
db: admin
scramCredentialsSecretName: my-scram
statefulSet:
spec:
persistentVolumeClaimRetentionPolicy:
WhenDeleted: "Delete"
WhenScaled: "Delete"
template:
spec:
containers:
- name: mongodb-agent
readinessProbe:
failureThreshold: 50
initialDelaySeconds: 10

# the user credentials will be generated from this secret
# once the credentials are generated, this secret is no longer required
---
apiVersion: v1
kind: Secret
metadata:
name: my-user-password
type: Opaque
stringData:
password: <your-password-here>
3 changes: 3 additions & 0 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@

## Added support for MongoDB 8.0.0 GA
MongoDB 8.0.0 GA is now officially supported by the Operator

## Added support for persistentVolumeClaimRetentionPolicy
Add persistentVolumeClaimRetentionPolicy on MongoDB statefulset.
4 changes: 4 additions & 0 deletions pkg/kube/statefulset/merge_statefulset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,15 @@ func TestGetLabelSelectorRequirementByKey(t *testing.T) {
}

func TestMergeSpec(t *testing.T) {
overridePersistentVolumeClaimRetentionPolicy := appsv1.StatefulSetPersistentVolumeClaimRetentionPolicy{WhenDeleted: "Delete", WhenScaled: "Delete"}

original := New(
WithName("original"),
WithServiceName("original-svc-name"),
WithReplicas(3),
WithRevisionHistoryLimit(10),
WithPodManagementPolicyType(appsv1.OrderedReadyPodManagement),
WithPersistentVolumeClaimRetentionPolicy(appsv1.StatefulSetPersistentVolumeClaimRetentionPolicy{}),
WithSelector(&metav1.LabelSelector{
MatchLabels: map[string]string{
"a": "1",
Expand Down Expand Up @@ -95,6 +97,7 @@ func TestMergeSpec(t *testing.T) {
WithReplicas(5),
WithRevisionHistoryLimit(15),
WithPodManagementPolicyType(appsv1.ParallelPodManagement),
WithPersistentVolumeClaimRetentionPolicy(overridePersistentVolumeClaimRetentionPolicy),
WithSelector(&metav1.LabelSelector{
MatchLabels: map[string]string{
"a": "10",
Expand Down Expand Up @@ -124,6 +127,7 @@ func TestMergeSpec(t *testing.T) {
assert.Equal(t, int32(5), *mergedSpec.Replicas)
assert.Equal(t, int32(15), *mergedSpec.RevisionHistoryLimit)
assert.Equal(t, appsv1.ParallelPodManagement, mergedSpec.PodManagementPolicy)
assert.Equal(t, overridePersistentVolumeClaimRetentionPolicy, *mergedSpec.PersistentVolumeClaimRetentionPolicy)
})

matchLabels := mergedSpec.Selector.MatchLabels
Expand Down
6 changes: 6 additions & 0 deletions pkg/kube/statefulset/statefulset.go
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,12 @@ func WithObjectMetadata(labels map[string]string, annotations map[string]string)
}
}

func WithPersistentVolumeClaimRetentionPolicy(persistentVolumeClaimRetentionPolicy appsv1.StatefulSetPersistentVolumeClaimRetentionPolicy) Modification {
return func(set *appsv1.StatefulSet) {
set.Spec.PersistentVolumeClaimRetentionPolicy = &persistentVolumeClaimRetentionPolicy
}
}

func findVolumeClaimIndexByName(name string, pvcs []corev1.PersistentVolumeClaim) int {
for idx, pvc := range pvcs {
if pvc.Name == name {
Expand Down
6 changes: 6 additions & 0 deletions pkg/util/merge/merge_statefulset.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ func StatefulSetSpecs(defaultSpec, overrideSpec appsv1.StatefulSetSpec) appsv1.S
mergedSpec.ServiceName = overrideSpec.ServiceName
}

if overrideSpec.PersistentVolumeClaimRetentionPolicy != nil {
overridePersistentVolumeClaimRetentionPolicy := appsv1.StatefulSetPersistentVolumeClaimRetentionPolicy{WhenDeleted: overrideSpec.PersistentVolumeClaimRetentionPolicy.WhenDeleted,
WhenScaled: overrideSpec.PersistentVolumeClaimRetentionPolicy.WhenScaled}
mergedSpec.PersistentVolumeClaimRetentionPolicy = &overridePersistentVolumeClaimRetentionPolicy
}

mergedSpec.Template = PodTemplateSpecs(defaultSpec.Template, overrideSpec.Template)
mergedSpec.VolumeClaimTemplates = VolumeClaimTemplates(defaultSpec.VolumeClaimTemplates, overrideSpec.VolumeClaimTemplates)
return mergedSpec
Expand Down
12 changes: 12 additions & 0 deletions test/e2e/mongodbtests/mongodbtests.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,18 @@ func StatefulSetHasUpdateStrategy(ctx context.Context, mdb *mdbv1.MongoDBCommuni
}
}

// StatefulSetHasPersistentVolumeClaimRetentionPolicy verifies that the StatefulSet holding this MongoDB
// resource has the correct PersistentVolumeClaim Retention Policy
func StatefulSetHasPersistentVolumeClaimRetentionPolicy(ctx context.Context, mdb *mdbv1.MongoDBCommunity, persistentVolumeClaimRetentionPolicy appsv1.StatefulSetPersistentVolumeClaimRetentionPolicy) func(t *testing.T) {
return func(t *testing.T) {
err := wait.ForStatefulSetToHavePersistentVolumeClaimRetentionPolicy(ctx, t, mdb, persistentVolumeClaimRetentionPolicy, wait.RetryInterval(time.Second*15), wait.Timeout(time.Minute*8))
if err != nil {
t.Fatal(err)
}
t.Logf("StatefulSet %s/%s is ready!", mdb.Namespace, mdb.Name)
}
}

// GetPersistentVolumes returns all persistent volumes on the cluster
func getPersistentVolumesList(ctx context.Context) (*corev1.PersistentVolumeList, error) {
return e2eutil.TestClient.CoreV1Client.PersistentVolumes().List(ctx, metav1.ListOptions{})
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
package replica_set_custom_persistentvolumclaimretentionpolicy_test

import (
"context"
"fmt"
"os"
"testing"

e2eutil "github.com/mongodb/mongodb-kubernetes-operator/test/e2e"
"github.com/mongodb/mongodb-kubernetes-operator/test/e2e/mongodbtests"
"github.com/mongodb/mongodb-kubernetes-operator/test/e2e/setup"
. "github.com/mongodb/mongodb-kubernetes-operator/test/e2e/util/mongotester"
appsv1 "k8s.io/api/apps/v1"
)

func TestMain(m *testing.M) {
code, err := e2eutil.RunTest(m)
if err != nil {
fmt.Println(err)
}
os.Exit(code)
}

func TestReplicaSetCustomPersistentVolumeClaimRetentionPolicy(t *testing.T) {
ctx := context.Background()
testCtx := setup.Setup(ctx, t)
defer testCtx.Teardown()

mdb, user := e2eutil.NewTestMongoDB(testCtx, "mdb0", "")
overridePersistentVolumeClaim := appsv1.StatefulSetPersistentVolumeClaimRetentionPolicy{WhenDeleted: "Delete", WhenScaled: "Delete"}
mdb.Spec.StatefulSetConfiguration.SpecWrapper.Spec.PersistentVolumeClaimRetentionPolicy = &overridePersistentVolumeClaim
scramUser := mdb.GetAuthUsers()[0]

_, err := setup.GeneratePasswordForUser(testCtx, user, "")
if err != nil {
t.Fatal(err)
}

tester, err := FromResource(ctx, t, mdb)
if err != nil {
t.Fatal(err)
}

t.Run("Create MongoDB Resource", mongodbtests.CreateMongoDBResource(&mdb, testCtx))
t.Run("Basic tests", mongodbtests.BasicFunctionality(ctx, &mdb))
t.Run("Keyfile authentication is configured", tester.HasKeyfileAuth(3))
t.Run("Test Basic Connectivity", tester.ConnectivitySucceeds())
t.Run("Test SRV Connectivity", tester.ConnectivitySucceeds(WithURI(mdb.MongoSRVURI("")), WithoutTls(), WithReplicaSet((mdb.Name))))
t.Run("Test Basic Connectivity with generated connection string secret",
tester.ConnectivitySucceeds(WithURI(mongodbtests.GetConnectionStringForUser(ctx, mdb, scramUser))))
t.Run("Test SRV Connectivity with generated connection string secret",
tester.ConnectivitySucceeds(WithURI(mongodbtests.GetSrvConnectionStringForUser(ctx, mdb, scramUser))))
t.Run("Ensure Authentication", tester.EnsureAuthenticationIsConfigured(3))
t.Run("AutomationConfig has the correct version", mongodbtests.AutomationConfigVersionHasTheExpectedVersion(ctx, &mdb, 1))
t.Run("Statefulset has the expected PersistentVolumeClaimRetentionPolicy", mongodbtests.StatefulSetHasPersistentVolumeClaimRetentionPolicy(ctx, &mdb, overridePersistentVolumeClaim))
}
12 changes: 12 additions & 0 deletions test/e2e/util/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,18 @@ func ForStatefulSetToHaveUpdateStrategy(ctx context.Context, t *testing.T, mdb *
})
}

// ForStatefulSetToHavePersistentVolumeClaimRetentionPolicy waits until all replicas of the StatefulSet with the given name
// have reached the ready status
func ForStatefulSetToHavePersistentVolumeClaimRetentionPolicy(ctx context.Context, t *testing.T, mdb *mdbv1.MongoDBCommunity, persistentVolumeClaimRetentionPolicy appsv1.StatefulSetPersistentVolumeClaimRetentionPolicy, opts ...Configuration) error {
options := newOptions(opts...)
return waitForStatefulSetCondition(ctx, t, mdb, options, func(sts appsv1.StatefulSet) bool {
if sts.Spec.PersistentVolumeClaimRetentionPolicy.WhenScaled == persistentVolumeClaimRetentionPolicy.WhenScaled && sts.Spec.PersistentVolumeClaimRetentionPolicy.WhenDeleted == persistentVolumeClaimRetentionPolicy.WhenDeleted {
return true
}
return false
})
}

// ForStatefulSetToBeReady waits until all replicas of the StatefulSet with the given name
// have reached the ready status
func ForStatefulSetToBeReady(ctx context.Context, t *testing.T, mdb *mdbv1.MongoDBCommunity, opts ...Configuration) error {
Expand Down