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

Helm: fix schema to allow name overrides and release 3.10.2 #516

Merged
merged 2 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion charts/k6-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "0.0.18"
description: A Helm chart to install the k6-operator
name: k6-operator
version: 3.10.1
version: 3.10.2
kubeVersion: ">=1.16.0-0"
home: https://k6.io
sources:
Expand Down
5 changes: 4 additions & 1 deletion charts/k6-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# k6-operator

![Version: 3.10.1](https://img.shields.io/badge/Version-3.10.1-informational?style=flat-square) ![AppVersion: 0.0.18](https://img.shields.io/badge/AppVersion-0.0.18-informational?style=flat-square)
![Version: 3.10.2](https://img.shields.io/badge/Version-3.10.2-informational?style=flat-square) ![AppVersion: 0.0.18](https://img.shields.io/badge/AppVersion-0.0.18-informational?style=flat-square)

A Helm chart to install the k6-operator

Expand Down Expand Up @@ -36,6 +36,7 @@ Kubernetes: `>=1.16.0-0`
| authProxy.resources | object | `{}` | rbac-proxy resource limitation/request |
| customAnnotations | object | `{}` | Custom Annotations to be applied on all resources |
| customLabels | object | `{}` | Custom Label to be applied on all resources |
| fullnameOverride | string | `""` | |
| global.image | object | `{"pullSecrets":[],"registry":""}` | Global image configuration |
| global.image.pullSecrets | list | `[]` | Optional set of global image pull secrets |
| global.image.registry | string | `""` | Global image registry to use if it needs to be overridden for some specific use cases (e.g local registries, custom images, ...) |
Expand All @@ -61,10 +62,12 @@ Kubernetes: `>=1.16.0-0`
| manager.resources.requests.memory | string | `"50Mi"` | controller-manager Memory request (Min) |
| manager.serviceAccount.create | bool | `true` | create the service account (default: true) |
| manager.serviceAccount.name | string | `"k6-operator-controller"` | kubernetes service account for the k6 manager |
| nameOverride | string | `""` | |
| namespace | object | `{"create":true}` | Namespace creation |
| namespace.create | bool | `true` | create the namespace (default: true) |
| nodeSelector | object | `{}` | Node Selector to be applied on all containers |
| podAnnotations | object | `{}` | Custom Annotations to be applied on all pods |
| podLabels | object | `{}` | Custom Label to be applied on all pods |
| prometheus.enabled | bool | `false` | enables the prometheus metrics scraping (default: false) |
| tolerations | list | `[]` | Tolerations to be applied on all containers |

10 changes: 10 additions & 0 deletions charts/k6-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
"title": "customLabels",
"type": "object"
},
"fullnameOverride": {
"default": "",
"title": "fullnameOverride",
"type": "string"
},
"global": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -269,6 +274,11 @@
"title": "manager",
"type": "object"
},
"nameOverride": {
"default": "",
"title": "nameOverride",
"type": "string"
},
"namespace": {
"additionalProperties": false,
"properties": {
Expand Down
12 changes: 12 additions & 0 deletions charts/k6-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# @schema
# required: false
# type: string
# @schema
nameOverride: ""

# @schema
# required: false
# type: string
# @schema
fullnameOverride: ""

# @schema
# required: false
# type: object
Expand Down
Loading