diff --git a/charts/k6-operator/Chart.yaml b/charts/k6-operator/Chart.yaml index be0b6656..0d4e1c81 100644 --- a/charts/k6-operator/Chart.yaml +++ b/charts/k6-operator/Chart.yaml @@ -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: diff --git a/charts/k6-operator/README.md b/charts/k6-operator/README.md index 52481f20..333fb77c 100644 --- a/charts/k6-operator/README.md +++ b/charts/k6-operator/README.md @@ -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 @@ -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, ...) | @@ -61,6 +62,7 @@ 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 | @@ -68,3 +70,4 @@ Kubernetes: `>=1.16.0-0` | 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 | + diff --git a/charts/k6-operator/values.schema.json b/charts/k6-operator/values.schema.json index 22e5ca21..82555e4b 100644 --- a/charts/k6-operator/values.schema.json +++ b/charts/k6-operator/values.schema.json @@ -87,6 +87,11 @@ "title": "customLabels", "type": "object" }, + "fullnameOverride": { + "default": "", + "title": "fullnameOverride", + "type": "string" + }, "global": { "additionalProperties": false, "properties": { @@ -269,6 +274,11 @@ "title": "manager", "type": "object" }, + "nameOverride": { + "default": "", + "title": "nameOverride", + "type": "string" + }, "namespace": { "additionalProperties": false, "properties": { diff --git a/charts/k6-operator/values.yaml b/charts/k6-operator/values.yaml index 0740db18..5351c94d 100644 --- a/charts/k6-operator/values.yaml +++ b/charts/k6-operator/values.yaml @@ -1,3 +1,15 @@ +# @schema +# required: false +# type: string +# @schema +nameOverride: "" + +# @schema +# required: false +# type: string +# @schema +fullnameOverride: "" + # @schema # required: false # type: object