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

Readiness gates implementation for eager mode #130

Merged
merged 1 commit into from
Nov 6, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions api/v1alpha1/rollingupgrade_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ type RollingUpgradeSpec struct {
IgnoreDrainFailures bool `json:"ignoreDrainFailures,omitempty"`
// ForceRefresh enables draining and terminating the node even if the launch config/template hasn't changed.
ForceRefresh bool `json:"forceRefresh,omitempty"`
// ReadinessGates allow to specify label selectors that node must match to be considered ready.
ReadinessGates []NodeReadinessGate `json:"readinessGates,omitempty"`
}

type NodeReadinessGate struct {
MatchLabels map[string]string `json:"matchLabels,omitempty" protobuf:"bytes,1,rep,name=matchLabels"`
}

// RollingUpgradeStatus defines the observed state of RollingUpgrade
Expand Down
31 changes: 30 additions & 1 deletion api/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions config/crd/bases/upgrademgr.keikoproj.io_rollingupgrades.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,17 @@ spec:
script:
type: string
type: object
readinessGates:
description: ReadinessGates allow to specify label selectors that node
must match to be considered ready.
items:
properties:
matchLabels:
additionalProperties:
type: string
type: object
type: object
type: array
strategy:
description: UpdateStrategy holds the information needed to perform
update based on different update strategies
Expand Down
15 changes: 15 additions & 0 deletions controllers/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@ func isNodeReady(node corev1.Node) bool {
return false
}

func IsNodePassesReadinessGates(node corev1.Node, requiredReadinessGates []upgrademgrv1alpha1.NodeReadinessGate) bool {

if len(requiredReadinessGates) == 0 {
return true
}
for _, gate := range requiredReadinessGates {
for key, value := range gate.MatchLabels {
if node.Labels[key] != value {
return false
}
}
}
return true
}

func getInServiceCount(instances []*autoscaling.Instance) int64 {
var count int64
for _, instance := range instances {
Expand Down
100 changes: 100 additions & 0 deletions controllers/helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package controllers
import (
"encoding/json"
"fmt"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/aws/aws-sdk-go/aws"

Expand Down Expand Up @@ -45,6 +46,105 @@ func TestIsNodeReady(t *testing.T) {
}
}

func TestIsNodePassesReadinessGates(t *testing.T) {
g := gomega.NewGomegaWithT(t)

type test struct {
gate []map[string]string
labels map[string]string
want bool
}
tests := []test{
{
gate: []map[string]string{
{
"healthy": "true",
},
},
labels: map[string]string{
"healthy": "true",
},
want: true,
},

{
gate: []map[string]string{},
labels: map[string]string{
"healthy": "true",
},
want: true,
},

{
gate: []map[string]string{
{"healthy": "true"},
},
labels: map[string]string{
"healthy": "false",
},
want: false,
},

{
gate: []map[string]string{
{"healthy": "true"},
},
labels: map[string]string{

},
want: false,
},

{
gate: []map[string]string{
{"healthy": "true"},
{"second-check": "true"},
},
labels: map[string]string{
"healthy": "true",
},
want: false,
},
{
gate: []map[string]string{
{"healthy": "true"},
{"second-check": "true"},
},
labels: map[string]string{
"healthy": "true",
"second-check": "true",
},
want: true,
},
{
gate: []map[string]string{
{"healthy": "true"},
{"second-check": "true"},
},
labels: map[string]string{
"healthy": "true",
"second-check": "false",
},
want: false,
}, }

for _, tt := range tests {
readinessGates := make([]upgrademgrv1alpha1.NodeReadinessGate, len(tt.gate))
for i, g := range tt.gate {
readinessGates[i] = upgrademgrv1alpha1.NodeReadinessGate{
MatchLabels: g,
}
}
node := corev1.Node{
ObjectMeta: v1.ObjectMeta{
Labels: tt.labels,
},
}
g.Expect(IsNodePassesReadinessGates(node, readinessGates)).To(gomega.Equal(tt.want))
}

}

func TestGetInServiceCount(t *testing.T) {
g := gomega.NewGomegaWithT(t)
tt := map[*autoscaling.Instance]int64{
Expand Down
2 changes: 1 addition & 1 deletion controllers/rollingupgrade_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ func (r *RollingUpgradeReconciler) WaitForDesiredNodes(ruObj *upgrademgrv1alpha1
for _, node := range r.NodeList.Items {
tokens := strings.Split(node.Spec.ProviderID, "/")
instanceID := tokens[len(tokens)-1]
if contains(inServiceInstances, instanceID) && isNodeReady(node) {
if contains(inServiceInstances, instanceID) && isNodeReady(node) && IsNodePassesReadinessGates(node, ruObj.Spec.ReadinessGates) {
foundCount++
}
}
Expand Down