Skip to content

Commit

Permalink
k8ssandra#1240 set the PullSecretRef configured for medusa as imagePu…
Browse files Browse the repository at this point in the history
…llSecrets at the standalone deployment
  • Loading branch information
tuxBurner committed Mar 12, 2024
1 parent 94bc1d8 commit 7385c2c
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
2 changes: 1 addition & 1 deletion controllers/k8ssandra/medusa_reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (r *K8ssandraClusterReconciler) reconcileMedusa(
}

// Create the Medusa standalone pod
desiredMedusaStandalone := medusa.StandaloneMedusaDeployment(*medusaContainer, kc.SanitizedName(), dcConfig.SanitizedName(), namespace, logger)
desiredMedusaStandalone := medusa.StandaloneMedusaDeployment(*medusaContainer, kc.SanitizedName(), dcConfig.SanitizedName(), namespace, logger, kc.Spec.Medusa.ContainerImage)

// Add the volumes previously computed to the Medusa standalone pod
for _, volume := range volumes {
Expand Down
7 changes: 4 additions & 3 deletions pkg/medusa/reconcile.go
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ func MedusaPurgeCronJobName(clusterName string, dcName string) string {
return fmt.Sprintf("%s-%s-medusa-purge", clusterName, dcName)
}

func StandaloneMedusaDeployment(medusaContainer corev1.Container, clusterName, dcName, namespace string, logger logr.Logger) *appsv1.Deployment {
func StandaloneMedusaDeployment(medusaContainer corev1.Container, clusterName, dcName, namespace string, logger logr.Logger, medusaImage *images.Image) *appsv1.Deployment {
// The standalone medusa pod won't be able to resolve its own IP address using DNS entries
medusaContainer.Env = append(medusaContainer.Env, corev1.EnvVar{Name: "MEDUSA_RESOLVE_IP_ADDRESSES", Value: "False"})
medusaDeployment := &appsv1.Deployment{
Expand All @@ -526,8 +526,9 @@ func StandaloneMedusaDeployment(medusaContainer corev1.Container, clusterName, d
Containers: []corev1.Container{
medusaContainer,
},
Volumes: []corev1.Volume{},
Hostname: MedusaStandaloneDeploymentName(clusterName, dcName),
ImagePullSecrets: images.CollectPullSecrets(medusaImage.ApplyDefaults(*medusaImage)),
Volumes: []corev1.Volume{},
Hostname: MedusaStandaloneDeploymentName(clusterName, dcName),
},
},
},
Expand Down
36 changes: 36 additions & 0 deletions pkg/medusa/reconcile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
api "github.com/k8ssandra/k8ssandra-operator/apis/k8ssandra/v1alpha1"
medusaapi "github.com/k8ssandra/k8ssandra-operator/apis/medusa/v1alpha1"
"github.com/k8ssandra/k8ssandra-operator/pkg/cassandra"
"github.com/k8ssandra/k8ssandra-operator/pkg/images"
"github.com/stretchr/testify/assert"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
Expand Down Expand Up @@ -527,6 +528,41 @@ func TestInitContainerCustomResources(t *testing.T) {

}

func TestStandaloneMedusaDeploymentImageSettings(t *testing.T) {
medusaSpec := &medusaapi.MedusaClusterTemplate{
StorageProperties: medusaapi.Storage{
StorageProvider: "s3",
StorageSecretRef: corev1.LocalObjectReference{
Name: "secret",
},
BucketName: "bucket",
},
ContainerImage: &images.Image{
Registry: "reg1",
Name: "img1",
Repository: "repo1",
Tag: "tag1",
PullPolicy: "Always",
PullSecretRef: &corev1.LocalObjectReference{Name: "main-secret"},
},
}

dcConfig := cassandra.DatacenterConfig{}

logger := logr.New(logr.Discard().GetSink())

medusaContainer, err := CreateMedusaMainContainer(&dcConfig, medusaSpec, false, "test", logger)
assert.NoError(t, err)
UpdateMedusaInitContainer(&dcConfig, medusaSpec, false, "test", logger)
UpdateMedusaMainContainer(&dcConfig, medusaContainer)

desiredMedusaStandalone := StandaloneMedusaDeployment(*medusaContainer, "dc1", dcConfig.SanitizedName(), "test", logger, medusaSpec.ContainerImage)

assert.Equal(t, "main-secret", *&desiredMedusaStandalone.Spec.Template.Spec.ImagePullSecrets[0].Name, "expected standalone container image pull secret to be set")
assert.Equal(t, "reg1/repo1/img1:tag1", *&desiredMedusaStandalone.Spec.Template.Spec.Containers[0].Image, "expected standalone container image to be set to reg1/repo1/img1:tag1")
assert.Equal(t, corev1.PullAlways, *&desiredMedusaStandalone.Spec.Template.Spec.Containers[0].ImagePullPolicy, "expected standalone pull policy to be set to Always")
}

func TestExternalSecretsFlag(t *testing.T) {
medusaSpec := &medusaapi.MedusaClusterTemplate{
StorageProperties: medusaapi.Storage{
Expand Down

0 comments on commit 7385c2c

Please sign in to comment.