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

release: update for v0.0.15 #423

Merged
merged 1 commit into from
Jul 5, 2024
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 Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Current Operator version
VERSION ?= 0.0.14
VERSION ?= 0.0.15
# Default bundle image tag
BUNDLE_IMG ?= k6-controller-bundle:$(VERSION)
# Options for 'bundle-build'
Expand Down
4 changes: 2 additions & 2 deletions charts/k6-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: "0.0.14"
appVersion: "0.0.15"
description: A Helm chart to install the k6-operator
name: k6-operator
version: 3.6.0
version: 3.7.0
kubeVersion: ">=1.16.0-0"
home: https://k6.io
sources:
Expand Down
7 changes: 4 additions & 3 deletions charts/k6-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# k6-operator

![Version: 3.6.0](https://img.shields.io/badge/Version-3.6.0-informational?style=flat-square) ![AppVersion: 0.0.14](https://img.shields.io/badge/AppVersion-0.0.14-informational?style=flat-square)
![Version: 3.7.0](https://img.shields.io/badge/Version-3.7.0-informational?style=flat-square) ![AppVersion: 0.0.15](https://img.shields.io/badge/AppVersion-0.0.15-informational?style=flat-square)

A Helm chart to install the k6-operator

Expand Down Expand Up @@ -44,7 +44,7 @@ Kubernetes: `>=1.16.0-0`
| manager.image.pullPolicy | string | `"IfNotPresent"` | pull policy for the image possible values Always, Never, IfNotPresent (default: IfNotPresent) |
| manager.image.registry | string | `"ghcr.io"` | |
| manager.image.repository | string | `"grafana/k6-operator"` | controller-manager image repository |
| manager.image.tag | string | `"controller-v0.0.14"` | controller-manager image tag |
| manager.image.tag | string | `"controller-v0.0.15"` | controller-manager image tag |
| manager.livenessProbe | object | `{}` | Liveness probe in Probe format |
| manager.readinessProbe | object | `{}` | Readiness probe in Probe format |
| manager.replicas | int | `1` | number of controller-manager replicas (default: 1) |
Expand All @@ -57,9 +57,10 @@ Kubernetes: `>=1.16.0-0`
| manager.serviceAccount.name | string | `"k6-operator-controller"` | kubernetes service account for the k6 manager |
| 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 | object | `{}` | Tolerations to be applied on all containers |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3)
2 changes: 1 addition & 1 deletion charts/k6-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ manager:
# manager.image.repository -- controller-manager image repository
repository: grafana/k6-operator
# manager.image.tag -- controller-manager image tag
tag: controller-v0.0.14
tag: controller-v0.0.15
# manager.image.pullPolicy -- pull policy for the image possible values Always, Never, IfNotPresent (default: IfNotPresent)
pullPolicy: IfNotPresent
# manager.livenessProbe -- Liveness probe in Probe format
Expand Down
1 change: 1 addition & 0 deletions docs/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Since around v0.0.7 k6-operator has been releasing a default runner image togeth
| v0.0.13rc1 | [runner-v0.0.13rc1](ghcr.io/grafana/k6-operator:runner-v0.0.13rc1) | v0.48.0 |
| v0.0.13 | [runner-v0.0.13](ghcr.io/grafana/k6-operator:runner-v0.0.13) | v0.49.0 |
| v0.0.14 | [runner-v0.0.14](ghcr.io/grafana/k6-operator:runner-v0.0.14) | v0.50.0 |
| v0.0.15 | [runner-v0.0.15](ghcr.io/grafana/k6-operator:runner-v0.0.15) | v0.52.0 |

### What was used before?

Expand Down
Loading