Skip to content

Commit 73dbac9

Browse files
committed
fix cpu var type
1 parent 3a1de90 commit 73dbac9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/etcd-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
| etcdOperator.service.port | int | `9443` | Service port |
2828
| etcdOperator.service.type | string | `"ClusterIP"` | Service type |
2929
| etcdOperator.vpa.enabled | bool | `true` | |
30-
| etcdOperator.vpa.maxAllowed.cpu | int | `1` | |
30+
| etcdOperator.vpa.maxAllowed.cpu | string | `"1000m"` | |
3131
| etcdOperator.vpa.maxAllowed.memory | string | `"1Gi"` | |
3232
| etcdOperator.vpa.minAllowed.cpu | string | `"100m"` | |
3333
| etcdOperator.vpa.minAllowed.memory | string | `"128Mi"` | |

charts/etcd-operator/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"maxAllowed": {
141141
"properties": {
142142
"cpu": {
143-
"type": "integer"
143+
"type": "string"
144144
},
145145
"memory": {
146146
"type": "string"

charts/etcd-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ etcdOperator:
9090
cpu: 100m
9191
memory: 128Mi
9292
maxAllowed:
93-
cpu: 1
93+
cpu: 1000m
9494
memory: 1Gi
9595

9696
kubeRbacProxy:

0 commit comments

Comments
 (0)