mirror of https://github.com/kubernetes/kops.git
Add irsa support for nth
This commit is contained in:
parent
2d004b7d0c
commit
28bd45a8fa
|
|
@ -15,6 +15,7 @@ go_library(
|
||||||
"//pkg/model/components/addonmanifests/awsloadbalancercontroller:go_default_library",
|
"//pkg/model/components/addonmanifests/awsloadbalancercontroller:go_default_library",
|
||||||
"//pkg/model/components/addonmanifests/clusterautoscaler:go_default_library",
|
"//pkg/model/components/addonmanifests/clusterautoscaler:go_default_library",
|
||||||
"//pkg/model/components/addonmanifests/dnscontroller:go_default_library",
|
"//pkg/model/components/addonmanifests/dnscontroller:go_default_library",
|
||||||
|
"//pkg/model/components/addonmanifests/nodeterminationhandler:go_default_library",
|
||||||
"//pkg/model/iam:go_default_library",
|
"//pkg/model/iam:go_default_library",
|
||||||
"//upup/pkg/fi:go_default_library",
|
"//upup/pkg/fi:go_default_library",
|
||||||
"//vendor/k8s.io/api/core/v1:go_default_library",
|
"//vendor/k8s.io/api/core/v1:go_default_library",
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||||
|
|
||||||
|
go_library(
|
||||||
|
name = "go_default_library",
|
||||||
|
srcs = ["iam.go"],
|
||||||
|
importpath = "k8s.io/kops/pkg/model/components/addonmanifests/nodeterminationhandler",
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
|
deps = [
|
||||||
|
"//pkg/model/iam:go_default_library",
|
||||||
|
"//vendor/k8s.io/apimachinery/pkg/types:go_default_library",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
Copyright 2021 The Kubernetes Authors.
|
||||||
|
|
||||||
|
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 nodeterminationhandler
|
||||||
|
|
||||||
|
import (
|
||||||
|
"k8s.io/apimachinery/pkg/types"
|
||||||
|
"k8s.io/kops/pkg/model/iam"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ServiceAccount represents the service-account used by the dns-controller.
|
||||||
|
// It implements iam.Subject to get AWS IAM permissions.
|
||||||
|
type ServiceAccount struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ iam.Subject = &ServiceAccount{}
|
||||||
|
|
||||||
|
// BuildAWSPolicy generates a custom policy for a ServiceAccount IAM role.
|
||||||
|
func (r *ServiceAccount) BuildAWSPolicy(b *iam.PolicyBuilder) (*iam.Policy, error) {
|
||||||
|
|
||||||
|
clusterName := b.Cluster.ObjectMeta.Name
|
||||||
|
p := iam.NewPolicy(clusterName)
|
||||||
|
|
||||||
|
iam.AddNodeTerminationHandlerSQSPermissions(p)
|
||||||
|
|
||||||
|
return p, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ServiceAccount returns the kubernetes service account used.
|
||||||
|
func (r *ServiceAccount) ServiceAccount() (types.NamespacedName, bool) {
|
||||||
|
return types.NamespacedName{
|
||||||
|
Namespace: "kube-system",
|
||||||
|
Name: "aws-node-termination-handler",
|
||||||
|
}, true
|
||||||
|
}
|
||||||
|
|
@ -32,6 +32,7 @@ import (
|
||||||
"k8s.io/kops/pkg/model/components/addonmanifests/awsloadbalancercontroller"
|
"k8s.io/kops/pkg/model/components/addonmanifests/awsloadbalancercontroller"
|
||||||
"k8s.io/kops/pkg/model/components/addonmanifests/clusterautoscaler"
|
"k8s.io/kops/pkg/model/components/addonmanifests/clusterautoscaler"
|
||||||
"k8s.io/kops/pkg/model/components/addonmanifests/dnscontroller"
|
"k8s.io/kops/pkg/model/components/addonmanifests/dnscontroller"
|
||||||
|
"k8s.io/kops/pkg/model/components/addonmanifests/nodeterminationhandler"
|
||||||
"k8s.io/kops/pkg/model/iam"
|
"k8s.io/kops/pkg/model/iam"
|
||||||
"k8s.io/kops/upup/pkg/fi"
|
"k8s.io/kops/upup/pkg/fi"
|
||||||
)
|
)
|
||||||
|
|
@ -123,6 +124,8 @@ func getWellknownServiceAccount(name string) iam.Subject {
|
||||||
return &clusterautoscaler.ServiceAccount{}
|
return &clusterautoscaler.ServiceAccount{}
|
||||||
case "ebs-csi-controller-sa":
|
case "ebs-csi-controller-sa":
|
||||||
return &awsebscsidriver.ServiceAccount{}
|
return &awsebscsidriver.ServiceAccount{}
|
||||||
|
case "aws-node-termination-handler":
|
||||||
|
return &nodeterminationhandler.ServiceAccount{}
|
||||||
default:
|
default:
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -339,6 +339,11 @@ func (r *NodeRoleMaster) BuildAWSPolicy(b *PolicyBuilder) (*Policy, error) {
|
||||||
AddAWSLoadbalancerControllerPermissions(p)
|
AddAWSLoadbalancerControllerPermissions(p)
|
||||||
}
|
}
|
||||||
AddClusterAutoscalerPermissions(p)
|
AddClusterAutoscalerPermissions(p)
|
||||||
|
|
||||||
|
nth := b.Cluster.Spec.NodeTerminationHandler
|
||||||
|
if nth != nil && fi.BoolValue(nth.Enabled) && fi.BoolValue(nth.EnableSQSTerminationDraining) {
|
||||||
|
AddNodeTerminationHandlerSQSPermissions(p)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if b.Cluster.Spec.IAM.AllowContainerRegistry {
|
if b.Cluster.Spec.IAM.AllowContainerRegistry {
|
||||||
|
|
@ -361,11 +366,6 @@ func (r *NodeRoleMaster) BuildAWSPolicy(b *PolicyBuilder) (*Policy, error) {
|
||||||
addCalicoSrcDstCheckPermissions(p)
|
addCalicoSrcDstCheckPermissions(p)
|
||||||
}
|
}
|
||||||
|
|
||||||
nth := b.Cluster.Spec.NodeTerminationHandler
|
|
||||||
if nth != nil && fi.BoolValue(nth.Enabled) && fi.BoolValue(nth.EnableSQSTerminationDraining) {
|
|
||||||
addNodeTerminationHandlerSQSPermissions(p)
|
|
||||||
}
|
|
||||||
|
|
||||||
if b.Cluster.Spec.SnapshotController != nil && fi.BoolValue(b.Cluster.Spec.SnapshotController.Enabled) {
|
if b.Cluster.Spec.SnapshotController != nil && fi.BoolValue(b.Cluster.Spec.SnapshotController.Enabled) {
|
||||||
addSnapshotPersmissions(p)
|
addSnapshotPersmissions(p)
|
||||||
}
|
}
|
||||||
|
|
@ -1170,11 +1170,17 @@ func addAmazonVPCCNIPermissions(p *Policy, iamPrefix string) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func addNodeTerminationHandlerSQSPermissions(p *Policy) {
|
func AddNodeTerminationHandlerSQSPermissions(p *Policy) {
|
||||||
p.unconditionalAction.Insert(
|
p.unconditionalAction.Insert(
|
||||||
"autoscaling:CompleteLifecycleAction",
|
|
||||||
"autoscaling:DescribeAutoScalingInstances",
|
"autoscaling:DescribeAutoScalingInstances",
|
||||||
|
"autoscaling:DescribeTags",
|
||||||
|
"ec2:DescribeInstances",
|
||||||
|
// SQS permissions do not support conditions.
|
||||||
"sqs:DeleteMessage",
|
"sqs:DeleteMessage",
|
||||||
"sqs:ReceiveMessage",
|
"sqs:ReceiveMessage",
|
||||||
)
|
)
|
||||||
|
p.clusterTaggedAction.Insert(
|
||||||
|
"autoscaling:CompleteLifecycleAction",
|
||||||
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1234,7 +1234,6 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Action": [
|
"Action": [
|
||||||
"autoscaling:CompleteLifecycleAction",
|
|
||||||
"autoscaling:DescribeAutoScalingGroups",
|
"autoscaling:DescribeAutoScalingGroups",
|
||||||
"autoscaling:DescribeAutoScalingInstances",
|
"autoscaling:DescribeAutoScalingInstances",
|
||||||
"autoscaling:DescribeLaunchConfigurations",
|
"autoscaling:DescribeLaunchConfigurations",
|
||||||
|
|
@ -1269,6 +1268,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Action": [
|
"Action": [
|
||||||
|
"autoscaling:CompleteLifecycleAction",
|
||||||
"autoscaling:SetDesiredCapacity",
|
"autoscaling:SetDesiredCapacity",
|
||||||
"autoscaling:TerminateInstanceInAutoScalingGroup",
|
"autoscaling:TerminateInstanceInAutoScalingGroup",
|
||||||
"ec2:AttachVolume",
|
"ec2:AttachVolume",
|
||||||
|
|
|
||||||
|
|
@ -172,7 +172,6 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Action": [
|
"Action": [
|
||||||
"autoscaling:CompleteLifecycleAction",
|
|
||||||
"autoscaling:DescribeAutoScalingGroups",
|
"autoscaling:DescribeAutoScalingGroups",
|
||||||
"autoscaling:DescribeAutoScalingInstances",
|
"autoscaling:DescribeAutoScalingInstances",
|
||||||
"autoscaling:DescribeLaunchConfigurations",
|
"autoscaling:DescribeLaunchConfigurations",
|
||||||
|
|
@ -207,6 +206,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Action": [
|
"Action": [
|
||||||
|
"autoscaling:CompleteLifecycleAction",
|
||||||
"autoscaling:SetDesiredCapacity",
|
"autoscaling:SetDesiredCapacity",
|
||||||
"autoscaling:TerminateInstanceInAutoScalingGroup",
|
"autoscaling:TerminateInstanceInAutoScalingGroup",
|
||||||
"ec2:AttachVolume",
|
"ec2:AttachVolume",
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ spec:
|
||||||
k8s-addon: dns-controller.addons.k8s.io
|
k8s-addon: dns-controller.addons.k8s.io
|
||||||
- id: k8s-1.11
|
- id: k8s-1.11
|
||||||
manifest: node-termination-handler.aws/k8s-1.11.yaml
|
manifest: node-termination-handler.aws/k8s-1.11.yaml
|
||||||
manifestHash: 57274d900239a8ba937e5887c4fa8b276165f7f0
|
manifestHash: 4959667b24bdb70ded01a59a2c502ef197b0d8f4
|
||||||
name: node-termination-handler.aws
|
name: node-termination-handler.aws
|
||||||
selector:
|
selector:
|
||||||
k8s-addon: node-termination-handler.aws
|
k8s-addon: node-termination-handler.aws
|
||||||
|
|
|
||||||
|
|
@ -214,7 +214,7 @@ spec:
|
||||||
hostNetwork: false
|
hostNetwork: false
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
node-role.kubernetes.io/master: ""
|
node-role.kubernetes.io/master: ""
|
||||||
priorityClassName: system-node-critical
|
priorityClassName: system-cluster-critical
|
||||||
securityContext:
|
securityContext:
|
||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
serviceAccountName: aws-node-termination-handler
|
serviceAccountName: aws-node-termination-handler
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ spec:
|
||||||
k8s-app: aws-node-termination-handler
|
k8s-app: aws-node-termination-handler
|
||||||
kubernetes.io/os: linux
|
kubernetes.io/os: linux
|
||||||
spec:
|
spec:
|
||||||
priorityClassName: "system-node-critical"
|
priorityClassName: "system-cluster-critical"
|
||||||
affinity:
|
affinity:
|
||||||
nodeAffinity:
|
nodeAffinity:
|
||||||
requiredDuringSchedulingIgnoredDuringExecution:
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
|
@ -200,10 +200,12 @@ spec:
|
||||||
requests:
|
requests:
|
||||||
cpu: {{ .CPURequest }}
|
cpu: {{ .CPURequest }}
|
||||||
memory: {{ .MemoryRequest }}
|
memory: {{ .MemoryRequest }}
|
||||||
|
{{ if not UseServiceAccountIAM }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
node-role.kubernetes.io/master: ""
|
node-role.kubernetes.io/master: ""
|
||||||
tolerations:
|
tolerations:
|
||||||
- operator: Exists
|
- operator: Exists
|
||||||
|
{{ end }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
---
|
---
|
||||||
# Source: aws-node-termination-handler/templates/daemonset.linux.yaml
|
# Source: aws-node-termination-handler/templates/daemonset.linux.yaml
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ go_library(
|
||||||
"//pkg/model/components/addonmanifests/awsloadbalancercontroller:go_default_library",
|
"//pkg/model/components/addonmanifests/awsloadbalancercontroller:go_default_library",
|
||||||
"//pkg/model/components/addonmanifests/clusterautoscaler:go_default_library",
|
"//pkg/model/components/addonmanifests/clusterautoscaler:go_default_library",
|
||||||
"//pkg/model/components/addonmanifests/dnscontroller:go_default_library",
|
"//pkg/model/components/addonmanifests/dnscontroller:go_default_library",
|
||||||
|
"//pkg/model/components/addonmanifests/nodeterminationhandler:go_default_library",
|
||||||
"//pkg/model/iam:go_default_library",
|
"//pkg/model/iam:go_default_library",
|
||||||
"//pkg/templates:go_default_library",
|
"//pkg/templates:go_default_library",
|
||||||
"//pkg/wellknownoperators:go_default_library",
|
"//pkg/wellknownoperators:go_default_library",
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,7 @@ import (
|
||||||
"k8s.io/kops/pkg/model/components/addonmanifests/awsloadbalancercontroller"
|
"k8s.io/kops/pkg/model/components/addonmanifests/awsloadbalancercontroller"
|
||||||
"k8s.io/kops/pkg/model/components/addonmanifests/clusterautoscaler"
|
"k8s.io/kops/pkg/model/components/addonmanifests/clusterautoscaler"
|
||||||
"k8s.io/kops/pkg/model/components/addonmanifests/dnscontroller"
|
"k8s.io/kops/pkg/model/components/addonmanifests/dnscontroller"
|
||||||
|
"k8s.io/kops/pkg/model/components/addonmanifests/nodeterminationhandler"
|
||||||
"k8s.io/kops/pkg/model/iam"
|
"k8s.io/kops/pkg/model/iam"
|
||||||
"k8s.io/kops/pkg/templates"
|
"k8s.io/kops/pkg/templates"
|
||||||
"k8s.io/kops/pkg/wellknownoperators"
|
"k8s.io/kops/pkg/wellknownoperators"
|
||||||
|
|
@ -559,6 +560,10 @@ func (b *BootstrapChannelBuilder) buildAddons(c *fi.ModelBuilderContext) (*chann
|
||||||
Id: id,
|
Id: id,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if b.UseServiceAccountIAM() {
|
||||||
|
serviceAccountRoles = append(serviceAccountRoles, &nodeterminationhandler.ServiceAccount{})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
npd := b.Cluster.Spec.NodeProblemDetector
|
npd := b.Cluster.Spec.NodeProblemDetector
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue