-
Notifications
You must be signed in to change notification settings - Fork 983
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a bug where daemonsets weren't correctly factored in
- Loading branch information
Showing
7 changed files
with
141 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package test | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/Pallinder/go-randomdata" | ||
"github.com/imdario/mergo" | ||
appsv1 "k8s.io/api/apps/v1" | ||
v1 "k8s.io/api/core/v1" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// DaemonSetOptions customizes a DaemonSet. | ||
type DaemonSetOptions struct { | ||
Name string | ||
Namespace string | ||
Selector map[string]string | ||
PodOptions PodOptions | ||
} | ||
|
||
// DaemonSet creates a test pod with defaults that can be overriden by DaemonSetOptions. | ||
// Overrides are applied in order, with a last write wins semantic. | ||
func DaemonSet(overrides ...DaemonSetOptions) *appsv1.DaemonSet { | ||
options := DaemonSetOptions{} | ||
for _, opts := range overrides { | ||
if err := mergo.Merge(&options, opts, mergo.WithOverride); err != nil { | ||
panic(fmt.Sprintf("Failed to merge pod options: %s", err.Error())) | ||
} | ||
} | ||
if options.Name == "" { | ||
options.Name = strings.ToLower(randomdata.SillyName()) | ||
} | ||
if options.Namespace == "" { | ||
options.Namespace = "default" | ||
} | ||
if options.Selector == nil { | ||
options.Selector = map[string]string{"app": options.Name} | ||
} | ||
return &appsv1.DaemonSet{ | ||
ObjectMeta: metav1.ObjectMeta{Name: options.Name, Namespace: options.Namespace}, | ||
Spec: appsv1.DaemonSetSpec{ | ||
Selector: &metav1.LabelSelector{MatchLabels: options.Selector}, | ||
Template: v1.PodTemplateSpec{ | ||
ObjectMeta: metav1.ObjectMeta{Labels: options.Selector}, | ||
Spec: Pod(options.PodOptions).Spec, | ||
}}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters