Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eks-cluster-autoscaler
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
terraform-eks
eks-cluster-autoscaler
Commits
34a1cb7b
Commit
34a1cb7b
authored
Mar 05, 2019
by
Danny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated clusterolebinding
parent
e04ba683
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
3 deletions
+43
-3
eks-cluster-autoscaler-clusterrolebinding.tf
eks-cluster-autoscaler-clusterrolebinding.tf
+43
-3
No files found.
eks-cluster-autoscaler-clusterrolebinding.tf
View file @
34a1cb7b
...
...
@@ -5,8 +5,48 @@ resource "kubernetes_cluster_role" "cluster_autoscaler_clusterrole" {
rule
{
api_groups
=
[
""
]
resources
=
[
"configmaps"
,
"namespaces"
,
"pods"
,
"services"
,
"nodes"
,
"ingresses"
,
"secrets"
]
verbs
=
[
"get"
,
"list"
,
"watch"
,
"create"
,
"patch"
,
"delete"
]
resources
=
[
"events"
,
"endpoints"
]
verbs
=
[
"create"
,
"patch"
]
api_groups
=
[
""
]
resources
=
[
"pods/eviction"
]
verbs
=
[
"create"
]
api_groups
=
[
""
]
resources
=
[
"pods/status"
]
verbs
=
[
"update"
]
api_groups
=
[
""
]
resources
=
[
"endpoints"
]
verbs
=
[
"get"
,
"update"
]
api_groups
=
[
""
]
resources
=
[
"nodes"
]
verbs
=
[
"watch"
,
"list"
,
"get"
,
"update"
]
api_groups
=
[
""
]
resources
=
[
"pods"
,
"services"
,
"replicationControllers"
,
"persistentvolumeclaims"
,
"persistentvolumes"
]
verbs
=
[
"watch"
,
"list"
,
"get"
]
api_groups
=
[
"batch"
]
resources
=
[
"jobs"
,
"cronjobs"
]
verbs
=
[
"watch"
,
"list"
,
"get"
]
api_groups
=
[
"extensions"
]
resources
=
[
"replicasets"
,
"daemonsets"
]
verbs
=
[
"watch"
,
"list"
,
"get"
]
api_groups
=
[
"policy"
]
resources
=
[
"poddistruptionpolicy"
]
verbs
=
[
"watch"
,
"list"
]
api_groups
=
[
"apps"
]
resources
=
[
"replicasets"
,
"statefulsets"
]
verbs
=
[
"watch"
,
"list"
,
"get"
]
api_groups
=
[
"storage"
]
resources
=
[
"storageclass"
]
verbs
=
[
"watch"
,
"list"
,
"get"
]
}
}
...
...
@@ -18,7 +58,7 @@ resource "kubernetes_cluster_role_binding" "external_dns_role_bind" {
role_ref
{
api_group
=
"rbac.authorization.k8s.io"
kind
=
"ClusterRole"
name
=
"cluster-a
dmin
"
name
=
"cluster-a
utoscaler
"
}
subject
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment