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

Respect optional param for ConfigMaps and Secrets #562

Merged
merged 3 commits into from Jan 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkg/handler/scale_handler.go
Expand Up @@ -60,6 +60,9 @@ func (h *ScaleHandler) resolveEnv(container *corev1.Container, namespace string)
for k, v := range configMap {
resolved[k] = v
}
} else if source.ConfigMapRef.Optional != nil && *source.ConfigMapRef.Optional {
// ignore error when ConfigMap is marked as optional
continue
} else {
return nil, fmt.Errorf("error reading config ref %s on namespace %s/: %s", source.ConfigMapRef, namespace, err)
}
Expand All @@ -68,6 +71,9 @@ func (h *ScaleHandler) resolveEnv(container *corev1.Container, namespace string)
for k, v := range secretsMap {
resolved[k] = v
}
} else if source.SecretRef.Optional != nil && *source.SecretRef.Optional {
// ignore error when Secret is marked as optional
continue
} else {
return nil, fmt.Errorf("error reading secret ref %s on namespace %s: %s", source.SecretRef, namespace, err)
}
Expand Down
123 changes: 123 additions & 0 deletions pkg/handler/scale_handler_test.go
@@ -0,0 +1,123 @@
package handler

import (
"testing"

corev1 "k8s.io/api/core/v1"
"k8s.io/client-go/kubernetes/scheme"
"sigs.k8s.io/controller-runtime/pkg/client/fake"
)

var (
namespace string = "test-namespace"
trueValue bool = true
falseValue bool = false
)

type testMetadata struct {
isError bool
comment string
container *corev1.Container
}

var testMetadatas = []testMetadata{
{
isError: true,
comment: "configmap does not exist, and it is not marked as an optional, there should be an error",
container: &corev1.Container{
EnvFrom: []corev1.EnvFromSource{{
ConfigMapRef: &corev1.ConfigMapEnvSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: "do-not-exist-not-optional",
},
},
}},
},
},
{
isError: true,
comment: "secret does not exist, and it is not marked as an optional, there should be an error",
container: &corev1.Container{
EnvFrom: []corev1.EnvFromSource{{
SecretRef: &corev1.SecretEnvSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: "do-not-exist-not-optional",
},
},
}},
},
},
{
isError: false,
comment: "configmap does not exist, but it is marked as an optional, there should not be an error",
container: &corev1.Container{
EnvFrom: []corev1.EnvFromSource{{
ConfigMapRef: &corev1.ConfigMapEnvSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: "do-not-exist-but-optional",
},
Optional: &trueValue,
},
}},
},
},
{
isError: false,
comment: "secret does not exist, but it is marked as an optional, there should not be an error",
container: &corev1.Container{
EnvFrom: []corev1.EnvFromSource{{
SecretRef: &corev1.SecretEnvSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: "do-not-exist-but-optional",
},
Optional: &trueValue,
},
}},
},
},
{
isError: true,
comment: "configmap does not exist, and it is not marked as an optional, there should be an error",
container: &corev1.Container{
EnvFrom: []corev1.EnvFromSource{{
ConfigMapRef: &corev1.ConfigMapEnvSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: "do-not-exist-and-not-optional-explicitly",
},
Optional: &falseValue,
},
}},
},
},
{
isError: true,
comment: "secret does not exist, and it is not marked as an optional, there should be an error",
container: &corev1.Container{
EnvFrom: []corev1.EnvFromSource{{
SecretRef: &corev1.SecretEnvSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: "do-not-exist-and-not-optional-explicitly",
},
Optional: &falseValue,
},
}},
},
},
}

func TestResolveNonExistingConfigMapsOrSecretsEnv(t *testing.T) {

for _, testData := range testMetadatas {
testScaleHandler := NewScaleHandler(fake.NewFakeClient(), scheme.Scheme)

_, err := testScaleHandler.resolveEnv(testData.container, namespace)

if err != nil && !testData.isError {
t.Errorf("Expected success because %s got error, %s", testData.comment, err)
}

if testData.isError && err == nil {
t.Errorf("Expected error because %s but got success, %#v", testData.comment, testData)
}
}
}