Skip to content

Commit 26b0611

Browse files
committed
release: update for v0.0.22
1 parent e372451 commit 26b0611

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL = /usr/bin/env bash -o pipefail
44
.SHELLFLAGS = -ec
55

66
# Current Operator version
7-
VERSION ?= 0.0.21
7+
VERSION ?= 0.0.22
88
# Image to use for building Go
99
GO_BUILDER_IMG ?= "golang:1.23"
1010
# Image URL to use all building/pushing image targets

charts/k6-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: "0.0.21"
2+
appVersion: "0.0.22"
33
description: A Helm chart to install the k6-operator
44
name: k6-operator
5-
version: 3.13.1
5+
version: 3.14.0
66
kubeVersion: ">=1.16.0-0"
77
home: https://k6.io
88
sources:

charts/k6-operator/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# k6-operator
22

3-
![Version: 3.13.1](https://img.shields.io/badge/Version-3.13.1-informational?style=flat-square) ![AppVersion: 0.0.21](https://img.shields.io/badge/AppVersion-0.0.21-informational?style=flat-square)
3+
![Version: 3.14.0](https://img.shields.io/badge/Version-3.14.0-informational?style=flat-square) ![AppVersion: 0.0.22](https://img.shields.io/badge/AppVersion-0.0.22-informational?style=flat-square)
44

55
A Helm chart to install the k6-operator
66

@@ -32,14 +32,14 @@ Kubernetes: `>=1.16.0-0`
3232
| global.image.pullSecrets | list | `[]` | Optional set of global image pull secrets |
3333
| 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, ...) |
3434
| installCRDs | bool | `true` | Installs CRDs as part of the release |
35-
| manager | object | `{"containerSecurityContext":{},"env":[],"envFrom":[],"image":{"pullPolicy":"IfNotPresent","registry":"ghcr.io","repository":"grafana/k6-operator","tag":"controller-v0.0.21"},"livenessProbe":{"httpGet":{"path":"/healthz","port":8081},"initialDelaySeconds":15,"periodSeconds":20},"podSecurityContext":{},"readinessProbe":{"httpGet":{"path":"/healthz","port":8081},"initialDelaySeconds":5,"periodSeconds":10},"replicas":1,"resources":{"limits":{"cpu":"100m","memory":"100Mi"},"requests":{"cpu":"100m","memory":"50Mi"}},"serviceAccount":{"create":true,"name":"k6-operator-controller"}}` | controller-manager configuration |
35+
| manager | object | `{"containerSecurityContext":{},"env":[],"envFrom":[],"image":{"pullPolicy":"IfNotPresent","registry":"ghcr.io","repository":"grafana/k6-operator","tag":"controller-v0.0.22"},"livenessProbe":{"httpGet":{"path":"/healthz","port":8081},"initialDelaySeconds":15,"periodSeconds":20},"podSecurityContext":{},"readinessProbe":{"httpGet":{"path":"/healthz","port":8081},"initialDelaySeconds":5,"periodSeconds":10},"replicas":1,"resources":{"limits":{"cpu":"100m","memory":"100Mi"},"requests":{"cpu":"100m","memory":"50Mi"}},"serviceAccount":{"create":true,"name":"k6-operator-controller"}}` | controller-manager configuration |
3636
| manager.containerSecurityContext | object | `{}` | A security context defines privileges and access control settings for the container. |
3737
| manager.env | list | `[]` | List of environment variables to set in the controller |
3838
| manager.envFrom | list | `[]` | List of sources to populate environment variables in the controller |
39-
| manager.image | object | `{"pullPolicy":"IfNotPresent","registry":"ghcr.io","repository":"grafana/k6-operator","tag":"controller-v0.0.21"}` | controller-manager image configuration |
39+
| manager.image | object | `{"pullPolicy":"IfNotPresent","registry":"ghcr.io","repository":"grafana/k6-operator","tag":"controller-v0.0.22"}` | controller-manager image configuration |
4040
| manager.image.pullPolicy | string | `"IfNotPresent"` | pull policy for the image possible values Always, Never, IfNotPresent (default: IfNotPresent) |
4141
| manager.image.repository | string | `"grafana/k6-operator"` | controller-manager image repository |
42-
| manager.image.tag | string | `"controller-v0.0.21"` | controller-manager image tag |
42+
| manager.image.tag | string | `"controller-v0.0.22"` | controller-manager image tag |
4343
| manager.livenessProbe | object | `{"httpGet":{"path":"/healthz","port":8081},"initialDelaySeconds":15,"periodSeconds":20}` | Liveness probe in Probe format |
4444
| manager.livenessProbe.httpGet | object | `{"path":"/healthz","port":8081}` | HTTP liveness probe |
4545
| manager.podSecurityContext | object | `{}` | A security context defines privileges and access control settings for a pod. |

charts/k6-operator/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"type": "string"
101101
},
102102
"tag": {
103-
"default": "controller-v0.0.21",
103+
"default": "controller-v0.0.22",
104104
"description": "manager.image.tag -- controller-manager image tag",
105105
"title": "tag",
106106
"type": "string"

charts/k6-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ manager:
286286
# type: string
287287
# @schema
288288
# manager.image.tag -- controller-manager image tag
289-
tag: controller-v0.0.21
289+
tag: controller-v0.0.22
290290
# @schema
291291
# required: false
292292
# type: string

docs/versioning.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Since around v0.0.7 k6-operator has been releasing a default runner image togeth
3737
| v0.0.19 | [runner-v0.0.19](ghcr.io/grafana/k6-operator:runner-v0.0.19) | v0.56.0 |
3838
| v0.0.20 | [runner-v0.0.20](ghcr.io/grafana/k6-operator:runner-v0.0.20) | v1.0.0-rc1 |
3939
| v0.0.21 | [runner-v0.0.21](ghcr.io/grafana/k6-operator:runner-v0.0.21) | v1.0.0 |
40+
| v0.0.22 | [runner-v0.0.22](ghcr.io/grafana/k6-operator:runner-v0.0.22) | v1.1.0 |
4041

4142
### What was used before?
4243

0 commit comments

Comments
 (0)