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

GKE Autopilot: Add support for Extended Duration pods #3387

Merged
merged 2 commits into from
Dec 8, 2023
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
3 changes: 3 additions & 0 deletions install/helm/agones/defaultfeaturegates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ PlayerTracking: false
DisableResyncOnSDKServer: false
CountsAndLists: false

# Dev features
FeatureGKEAutopilotExtendedDurationPods: false

# Example feature
Example: false

57 changes: 57 additions & 0 deletions pkg/cloudproduct/eviction/eviction.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
// Copyright 2023 Google LLC All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Package eviction implements a generic SetEviction interface for cloud products
package eviction

import (
agonesv1 "agones.dev/agones/pkg/apis/agones/v1"
"github.com/pkg/errors"
corev1 "k8s.io/api/core/v1"
)

// SetEviction sets disruptions controls on a Pod based on GameServer.Status.Eviction.
func SetEviction(eviction *agonesv1.Eviction, pod *corev1.Pod) error {
if eviction == nil {
return errors.New("No eviction value set. Should be the default value")
}
if _, exists := pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation]; !exists {
switch eviction.Safe {
case agonesv1.EvictionSafeAlways:
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.True
case agonesv1.EvictionSafeOnUpgrade, agonesv1.EvictionSafeNever:
// For EvictionSafeOnUpgrade and EvictionSafeNever, we block Cluster Autoscaler
// (on Autopilot, this enables Extended Duration pods, which is equivalent).
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.False
default:
return errors.Errorf("unknown eviction.safe value %q", string(eviction.Safe))
}
}
if _, exists := pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel]; !exists {
zmerlynn marked this conversation as resolved.
Show resolved Hide resolved
switch eviction.Safe {
case agonesv1.EvictionSafeAlways, agonesv1.EvictionSafeOnUpgrade:
// For EvictionSafeAlways and EvictionSafeOnUpgrade, we use a label value
// that does not match the agones-gameserver-safe-to-evict-false PDB. But
// we go ahead and label it, in case someone wants to adopt custom logic
// for this group of game servers.
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.True
case agonesv1.EvictionSafeNever:
// For EvictionSafeNever, match gones-gameserver-safe-to-evict-false PDB.
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.False
default:
return errors.Errorf("unknown eviction.safe value %q", string(eviction.Safe))
}
}
return nil
}
105 changes: 105 additions & 0 deletions pkg/cloudproduct/eviction/eviction_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
// Copyright 2023 Google LLC All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package eviction

import (
"testing"

agonesv1 "agones.dev/agones/pkg/apis/agones/v1"
"github.com/stretchr/testify/assert"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

func TestSetEviction(t *testing.T) {
emptyPodAnd := func(f func(*corev1.Pod)) *corev1.Pod {
pod := &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Annotations: map[string]string{},
Labels: map[string]string{},
},
}
f(pod)
return pod
}
for desc, tc := range map[string]struct {
eviction *agonesv1.Eviction
pod *corev1.Pod
wantPod *corev1.Pod
}{
"eviction: safe: Always, no incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeAlways},
pod: emptyPodAnd(func(*corev1.Pod) {}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.True
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.True
}),
},
"eviction: safe: OnUpgrade, no incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeOnUpgrade},
pod: emptyPodAnd(func(*corev1.Pod) {}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.False
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.True
}),
},
"eviction: safe: Never, no incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeNever},
pod: emptyPodAnd(func(*corev1.Pod) {}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.False
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.False
}),
},
"eviction: safe: Always, incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeAlways},
pod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "just don't touch, ok?"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "seriously, leave it"
}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "just don't touch, ok?"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "seriously, leave it"
}),
},
"eviction: safe: OnUpgrade, incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeOnUpgrade},
pod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "better not touch"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "not another one"
}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "better not touch"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "not another one"
}),
},
"eviction: safe: Never, incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeNever},
pod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "a passthrough"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "or is it passthru?"
}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "a passthrough"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "or is it passthru?"
}),
},
} {
t.Run(desc, func(t *testing.T) {
assert.NoError(t, SetEviction(tc.eviction, tc.pod))
assert.Equal(t, tc.wantPod, tc.pod)
})
}
}
35 changes: 3 additions & 32 deletions pkg/cloudproduct/generic/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"agones.dev/agones/pkg/apis"
agonesv1 "agones.dev/agones/pkg/apis/agones/v1"
"agones.dev/agones/pkg/client/informers/externalversions"
"agones.dev/agones/pkg/cloudproduct/eviction"
"agones.dev/agones/pkg/portallocator"
"github.com/pkg/errors"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/util/validation/field"
"k8s.io/client-go/informers"
Expand All @@ -40,37 +40,8 @@ func (*generic) ValidateScheduling(apis.SchedulingStrategy, *field.Path) field.E
func (*generic) MutateGameServerPod(*agonesv1.GameServerSpec, *corev1.Pod) error { return nil }

// SetEviction sets disruptions controls based on GameServer.Status.Eviction.
func (*generic) SetEviction(eviction *agonesv1.Eviction, pod *corev1.Pod) error {
if eviction == nil {
return errors.New("No eviction value set. Should be the default value")
}
if _, exists := pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation]; !exists {
switch eviction.Safe {
case agonesv1.EvictionSafeAlways:
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.True
case agonesv1.EvictionSafeOnUpgrade, agonesv1.EvictionSafeNever:
// For EvictionSafeOnUpgrade and EvictionSafeNever, we block Cluster Autoscaler.
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.False
default:
return errors.Errorf("unknown eviction.safe value %q", string(eviction.Safe))
}
}
if _, exists := pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel]; !exists {
switch eviction.Safe {
case agonesv1.EvictionSafeAlways, agonesv1.EvictionSafeOnUpgrade:
// For EvictionSafeAlways and EvictionSafeOnUpgrade, we use a label value
// that does not match the agones-gameserver-safe-to-evict-false PDB. But
// we go ahead and label it, in case someone wants to adopt custom logic
// for this group of game servers.
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.True
case agonesv1.EvictionSafeNever:
// For EvictionSafeNever, match gones-gameserver-safe-to-evict-false PDB.
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.False
default:
return errors.Errorf("unknown eviction.safe value %q", string(eviction.Safe))
}
}
return nil
func (*generic) SetEviction(ev *agonesv1.Eviction, pod *corev1.Pod) error {
return eviction.SetEviction(ev, pod)
}

func (*generic) SyncPodPortsToGameServer(*agonesv1.GameServer, *corev1.Pod) error { return nil }
Expand Down
82 changes: 1 addition & 81 deletions pkg/cloudproduct/generic/generic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package generic

import (
Expand All @@ -24,87 +25,6 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

func TestSetEviction(t *testing.T) {
emptyPodAnd := func(f func(*corev1.Pod)) *corev1.Pod {
pod := &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Annotations: map[string]string{},
Labels: map[string]string{},
},
}
f(pod)
return pod
}
for desc, tc := range map[string]struct {
eviction *agonesv1.Eviction
pod *corev1.Pod
wantPod *corev1.Pod
}{
"eviction: safe: Always, no incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeAlways},
pod: emptyPodAnd(func(*corev1.Pod) {}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.True
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.True
}),
},
"eviction: safe: OnUpgrade, no incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeOnUpgrade},
pod: emptyPodAnd(func(*corev1.Pod) {}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.False
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.True
}),
},
"eviction: safe: Never, no incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeNever},
pod: emptyPodAnd(func(*corev1.Pod) {}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = agonesv1.False
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = agonesv1.False
}),
},
"eviction: safe: Always, incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeAlways},
pod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "just don't touch, ok?"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "seriously, leave it"
}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "just don't touch, ok?"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "seriously, leave it"
}),
},
"eviction: safe: OnUpgrade, incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeOnUpgrade},
pod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "better not touch"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "not another one"
}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "better not touch"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "not another one"
}),
},
"eviction: safe: Never, incoming labels/annotations": {
eviction: &agonesv1.Eviction{Safe: agonesv1.EvictionSafeNever},
pod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "a passthrough"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "or is it passthru?"
}),
wantPod: emptyPodAnd(func(pod *corev1.Pod) {
pod.ObjectMeta.Annotations[agonesv1.PodSafeToEvictAnnotation] = "a passthrough"
pod.ObjectMeta.Labels[agonesv1.SafeToEvictLabel] = "or is it passthru?"
}),
},
} {
t.Run(desc, func(t *testing.T) {
assert.NoError(t, (&generic{}).SetEviction(tc.eviction, tc.pod))
assert.Equal(t, tc.wantPod, tc.pod)
})
}
}

func TestGameServerPodAutoscalerAnnotations(t *testing.T) {
testCases := []struct {
description string
Expand Down
Loading