Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update values schema to allow resources in the proxy #479

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 49 additions & 1 deletion charts/k6-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,54 @@
},
"resources": {
"additionalProperties": false,
"properties": {
"limits": {
"additionalProperties": false,
"properties": {
"cpu": {
"default": "100m",
"description": "authProxy.resources.limits.cpu -- rbac-proxy CPU limit (Max)",
"title": "cpu",
"type": "string"
},
"memory": {
"default": "100Mi",
"description": "authProxy.resources.limits.memory -- rbac-proxy Memory limit (Max)",
"title": "memory",
"type": "string"
}
},
"title": "limits",
"type": "object",
"required": [
"cpu",
"memory"
]
},
"requests": {
"additionalProperties": false,
"properties": {
"cpu": {
"default": "100m",
"description": "authProxy.resources.requests.cpu -- rbac-proxy CPU request (Min)",
"title": "cpu",
"type": "string"
},
"memory": {
"default": "50Mi",
"description": "authProxy.resources.requests.memory -- rbac-proxy Memory request (Min)",
"title": "memory",
"type": "string"
}
},
"title": "requests",
"type": "object",
"required": [
"cpu",
"memory"
]
}
},
"description": "authProxy.resources -- rbac-proxy resource limitation/request",
"title": "resources",
"type": "object"
Expand Down Expand Up @@ -360,4 +408,4 @@
"authProxy",
"manager"
]
}
}
Loading