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

dev to beta #7227

Merged
merged 12 commits into from
Apr 2, 2024
5 changes: 2 additions & 3 deletions cluster/config-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,14 @@ skipper_ingress_binpack: "false"
{{end}}
# skipper node-pool
enable_dedicate_nodepool_skipper: "true"
skipper_topology_spread_enabled: "true"
{{if eq .Cluster.Environment "e2e"}}
skipper_attach_only_to_skipper_node_pool: "false"
skipper_topology_spread_enabled: "true"
{{else}}
skipper_attach_only_to_skipper_node_pool: "true"
skipper_topology_spread_enabled: "false"
{{end}}
skipper_suppress_route_update_logs: "true"

skipper_suppress_route_update_logs: "true"
skipper_validate_query: "true"
skipper_validate_query_log: "false"

Expand Down
73 changes: 51 additions & 22 deletions cluster/manifests/01-vertical-pod-autoscaler/01-crd.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes/kubernetes/pull/63797
controller-gen.kubebuilder.io/version: v0.4.0
controller-gen.kubebuilder.io/version: v0.9.2
creationTimestamp: null
name: verticalpodautoscalercheckpoints.autoscaling.k8s.io
spec:
Expand Down Expand Up @@ -36,7 +37,7 @@ spec:
metadata:
type: object
spec:
description: 'Specification of the checkpoint. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.'
description: 'Specification of the checkpoint. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.'
properties:
containerName:
description: Name of the checkpointed container.
Expand Down Expand Up @@ -129,7 +130,7 @@ spec:
metadata:
type: object
spec:
description: 'Specification of the checkpoint. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.'
description: 'Specification of the checkpoint. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.'
properties:
containerName:
description: Name of the checkpointed container.
Expand Down Expand Up @@ -203,19 +204,13 @@ spec:
type: object
served: true
storage: false
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes/kubernetes/pull/63797
controller-gen.kubebuilder.io/version: v0.4.0
controller-gen.kubebuilder.io/version: v0.9.2
creationTimestamp: null
name: verticalpodautoscalers.autoscaling.k8s.io
spec:
Expand Down Expand Up @@ -266,7 +261,7 @@ spec:
type: object
spec:
description: 'Specification of the behavior of the autoscaler. More info:
https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.'
https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.'
properties:
recommenders:
description: Recommender responsible for generating recommendation
Expand Down Expand Up @@ -369,7 +364,7 @@ spec:
description: API version of the referent
type: string
kind:
description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"'
description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names'
Expand All @@ -378,11 +373,45 @@ spec:
- kind
- name
type: object
x-kubernetes-map-type: atomic
updatePolicy:
description: Describes the rules on how changes are applied to the
pods. If not specified, all fields in the `PodUpdatePolicy` are
set to their default values.
properties:
evictionRequirements:
description: EvictionRequirements is a list of EvictionRequirements
that need to evaluate to true in order for a Pod to be evicted.
If more than one EvictionRequirement is specified, all of them
need to be fulfilled to allow eviction.
items:
description: EvictionRequirement defines a single condition
which needs to be true in order to evict a Pod
properties:
changeRequirement:
description: EvictionChangeRequirement refers to the relationship
between the new target recommendation for a Pod and its
current requests, what kind of change is necessary for
the Pod to be evicted
enum:
- TargetHigherThanRequests
- TargetLowerThanRequests
type: string
resource:
description: Resources is a list of one or more resources
that the condition applies to. If more than one resource
is given, the EvictionRequirement is fulfilled if at least
one resource meets `changeRequirement`.
items:
description: ResourceName is the name identifying various
resources in a ResourceList.
type: string
type: array
required:
- changeRequirement
- resource
type: object
type: array
minReplicas:
description: Minimal number of replicas which need to be alive
for Updater to attempt pod eviction (pending other checks like
Expand Down Expand Up @@ -517,8 +546,11 @@ spec:
type: object
served: true
storage: true
subresources: {}
- name: v1beta2
subresources:
status: {}
- deprecated: true
deprecationWarning: autoscaling.k8s.io/v1beta2 API is deprecated
name: v1beta2
schema:
openAPIV3Schema:
description: VerticalPodAutoscaler is the configuration for a vertical pod
Expand All @@ -539,7 +571,7 @@ spec:
type: object
spec:
description: 'Specification of the behavior of the autoscaler. More info:
https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.'
https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.'
properties:
resourcePolicy:
description: Controls how the autoscaler computes recommended resources.
Expand Down Expand Up @@ -608,7 +640,7 @@ spec:
description: API version of the referent
type: string
kind:
description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"'
description: 'Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names'
Expand All @@ -617,6 +649,7 @@ spec:
- kind
- name
type: object
x-kubernetes-map-type: atomic
updatePolicy:
description: Describes the rules on how changes are applied to the
pods. If not specified, all fields in the `PodUpdatePolicy` are
Expand Down Expand Up @@ -749,9 +782,5 @@ spec:
type: object
served: true
storage: false
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
subresources:
status: {}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
hostNetwork: true
containers:
- name: kube-aws-iam-controller
image: container-registry.zalando.net/teapot/kube-aws-iam-controller:v0.2.0-12-g8d2448c
image: container-registry.zalando.net/teapot/kube-aws-iam-controller:v0.3.0
args:
- --debug
- "--assume-role={{.Cluster.LocalID}}-worker"
Expand Down
10 changes: 5 additions & 5 deletions cluster/manifests/03-ebs-csi/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
runAsUser: 1000
containers:
- name: ebs-plugin
image: container-registry.zalando.net/teapot/aws-ebs-csi-driver:v1.21.0-master-14
image: container-registry.zalando.net/teapot/aws-ebs-csi-driver:v1.27.0-master-15
args:
- controller
- --endpoint=$(CSI_ENDPOINT)
Expand Down Expand Up @@ -82,7 +82,7 @@ spec:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
- name: csi-provisioner
image: container-registry.zalando.net/teapot/external-provisioner:v3.5.0-eks-1-24-22-master-14
image: container-registry.zalando.net/teapot/external-provisioner:v4.0.0-eks-1-27-25-master-15
args:
- --csi-address=$(ADDRESS)
- --v=2
Expand All @@ -107,7 +107,7 @@ spec:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
- name: csi-attacher
image: container-registry.zalando.net/teapot/external-attacher:v4.3.0-eks-1-24-22-master-14
image: container-registry.zalando.net/teapot/external-attacher:v4.5.0-eks-1-27-25-master-15
args:
- --csi-address=$(ADDRESS)
- --v=2
Expand All @@ -129,7 +129,7 @@ spec:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
- name: csi-resizer
image: container-registry.zalando.net/teapot/external-resizer:v1.8.0-eks-1-24-22-master-14
image: container-registry.zalando.net/teapot/external-resizer:v1.10.0-eks-1-27-25-master-15
args:
- --csi-address=$(ADDRESS)
- --v=2
Expand All @@ -151,7 +151,7 @@ spec:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
- name: liveness-probe
image: container-registry.zalando.net/teapot/livenessprobe:v2.10.0-eks-1-24-22-master-14
image: container-registry.zalando.net/teapot/livenessprobe:v2.12.0-eks-1-27-25-master-15
args:
- --csi-address=/csi/csi.sock
resources:
Expand Down
6 changes: 3 additions & 3 deletions cluster/manifests/03-ebs-csi/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
runAsUser: 0
containers:
- name: ebs-plugin
image: container-registry.zalando.net/teapot/aws-ebs-csi-driver:v1.21.0-master-14
image: container-registry.zalando.net/teapot/aws-ebs-csi-driver:v1.27.0-master-15
args:
- node
- --endpoint=$(CSI_ENDPOINT)
Expand Down Expand Up @@ -77,7 +77,7 @@ spec:
privileged: true
readOnlyRootFilesystem: true
- name: node-driver-registrar
image: container-registry.zalando.net/teapot/node-driver-registrar:v2.8.0-eks-1-24-22-master-14
image: container-registry.zalando.net/teapot/node-driver-registrar:v2.10.0-eks-1-27-25-master-15
args:
- --csi-address=$(ADDRESS)
- --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
Expand Down Expand Up @@ -114,7 +114,7 @@ spec:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
- name: liveness-probe
image: container-registry.zalando.net/teapot/livenessprobe:v2.10.0-eks-1-24-22-master-14
image: container-registry.zalando.net/teapot/livenessprobe:v2.12.0-eks-1-27-25-master-15
args:
- --csi-address=/csi/csi.sock
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion cluster/manifests/skipper/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ $internal_version := "v0.21.25-853" }}
{{ $internal_version := "v0.21.36-864" }}
{{ $canary_internal_version := "v0.21.36-864" }}

{{/* Optional canary arguments separated by "[cf724afc]" to allow whitespaces, e.g. "-foo=has a whitespace[cf724afc]-baz=qux" */}}
Expand Down