diff --git a/api/v1beta1/redissentinel_conversion.go b/api/v1beta1/redissentinel_conversion.go
index 479f76cad643845a4778841cdabc7f33c796bc9d..a069e16774e8852e195e8c43c81fdcc7f70e3af9 100644
--- a/api/v1beta1/redissentinel_conversion.go
+++ b/api/v1beta1/redissentinel_conversion.go
@@ -5,7 +5,7 @@ import (
 	"sigs.k8s.io/controller-runtime/pkg/conversion"
 )
 
-// ConvertTo converts this RedisSentinel to the Hub version (vbeta2).
+// ConvertTo converts this RedisSentinel to the Hub version (v1beta2).
 func (src *RedisSentinel) ConvertTo(dstRaw conversion.Hub) error {
 	dst := dstRaw.(*redisv1beta2.RedisSentinel)
 
diff --git a/example/v1beta2/redis-cluster.yaml b/example/v1beta2/redis-cluster.yaml
index 5690c20f0edf7ed957c36754232ecf5027a5a988..87b308e3aca4dc1cf240c530c6cc27fc5ceb2800 100644
--- a/example/v1beta2/redis-cluster.yaml
+++ b/example/v1beta2/redis-cluster.yaml
@@ -20,11 +20,6 @@ spec:
       limits:
         cpu: 101m
         memory: 128Mi
-  env:
-  - name: CUSTOM_ENV_VAR_1
-    value: "custom_value_1"
-  - name: CUSTOM_ENV_VAR_2
-    value: "custom_value_2"      
     # redisSecret:
     #   name: redis-secret
     #   key: password
diff --git a/k8sutils/redis-sentinel.go b/k8sutils/redis-sentinel.go
index f05aea39c8e3cfdfe936d6ba07b6a8c8372d1cf8..d1636400ac7659c8223861eb7a19bc4da927e928 100644
--- a/k8sutils/redis-sentinel.go
+++ b/k8sutils/redis-sentinel.go
@@ -41,7 +41,7 @@ func CreateRedisSentinel(cr *redisv1beta2.RedisSentinel) error {
 		TerminationGracePeriodSeconds: cr.Spec.TerminationGracePeriodSeconds,
 	}
 
-	if cr.Spec.RedisSentinelConfig.AdditionalSentinelConfig != nil {
+	if cr.Spec.RedisSentinelConfig != nil && cr.Spec.RedisSentinelConfig.AdditionalSentinelConfig != nil {
 		prop.ExternalConfig = cr.Spec.RedisSentinelConfig.AdditionalSentinelConfig
 	}
 
@@ -242,6 +242,10 @@ func (service RedisSentinelService) CreateRedisSentinelService(cr *redisv1beta2.
 
 func getSentinelEnvVariable(cr *redisv1beta2.RedisSentinel) *[]corev1.EnvVar {
 
+	if cr.Spec.RedisSentinelConfig == nil {
+		return &[]corev1.EnvVar{}
+	}
+
 	envVar := &[]corev1.EnvVar{
 		{
 			Name:  "MASTER_GROUP_NAME",