You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"cluster_autoscaler" {
source="shamimice03/eks-cluster-autoscaler/aws"cluster_name="eks-cluster"oidc_provider_arn="arn:aws:iam::3213213213214:oidc-provider/oidc.eks.ap-northeast-1.amazonaws.com/id/DF928045AFF0184B16D3EE5AC4E52B32"irsa_role_name="ClusterAutoscalerIRSA"namespace="kube-system"create_namespace=falseserviceaccount="cluster-autoscaler-sa"chart_repo="https://kubernetes.github.io/autoscaler"chart_name="cluster-autoscaler"release_name="cluster-autoscaler"chart_version="9.29.1"set=[
{
name ="autoDiscovery.clusterName"
value ="eks-cluster"
},
{
name ="awsRegion"
value ="ap-northeast-1"
},
{
name ="rbac.serviceAccount.name"
value ="cluster-autoscaler-sa"
}
]
set_annotations=["rbac.serviceAccount.annotations.eks\\.amazonaws\\.com/role-arn"]
}
How set_annotations works:
# For adding annotations in the service-account ( set_annotations = ["rbac.serviceAccount.annotations.eks\\.amazonaws\\.com/role-arn"] )# Internally used in following way:set=[
{
name ="serviceAccount.annotations.eks\\.amazonaws\\.com/role-arn"
value =<-IRSA-ARN->
}
]