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
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/cluster_autoscaler/main.tf line 184, in resource "kubernetes_deployment" "cluster_autoscaler":
│ 184: limits = {
│
│ An argument named "limits" is not expected here. Did you mean to define a
│ block of type "limits"?
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/cluster_autoscaler/main.tf line 188, in resource "kubernetes_deployment" "cluster_autoscaler":
│ 188: requests = {
│
│ An argument named "requests" is not expected here. Did you mean to define a
│ block of type "requests"?
╵
ERRO[0042] 1 error occurred:
* exit status 1
When I correct the line 183 to :
resources{
limits {
cpu = "100m"
memory = "512Mi"
}
requests {
cpu = "100m"
memory = "512Mi"
}
}
It is correctly installed.
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/cluster_autoscaler/main.tf line 184, in resource "kubernetes_deployment" "cluster_autoscaler":
│ 184: limits = {
│
│ An argument named "limits" is not expected here. Did you mean to define a
│ block of type "limits"?
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/cluster_autoscaler/main.tf line 188, in resource "kubernetes_deployment" "cluster_autoscaler":
│ 188: requests = {
│
│ An argument named "requests" is not expected here. Did you mean to define a
│ block of type "requests"?
╵
ERRO[0042] 1 error occurred:
* exit status 1
When I correct the line 183 to :
resources{
limits {
cpu = "100m"
memory = "512Mi"
}
requests {
cpu = "100m"
memory = "512Mi"
}
}
It is correctly installed.
Kubernetes provider version: 1.13.3
AWS Provider version: 3.54
The text was updated successfully, but these errors were encountered: