Skip to content

Commit 656302f

Browse files
[skip-ci] Helm chart update for v1.12.0
1 parent 0271728 commit 656302f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

helm/botkube/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: botkube
33
home: https://botkube.io
4-
version: v1.12.0-rc.1
5-
appVersion: v1.12.0-rc.1
4+
version: v1.12.0
5+
appVersion: v1.12.0
66
icon: https://docs.botkube.io/images/botkube-black.svg
77
description: A virtual SRE, powered by AI.
88
sources:

helm/botkube/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Botkube
22

3-
![Version: v1.12.0-rc.1](https://img.shields.io/badge/Version-v1.12.0--rc.1-informational?style=flat-square) ![AppVersion: v1.12.0-rc.1](https://img.shields.io/badge/AppVersion-v1.12.0--rc.1-informational?style=flat-square)
3+
![Version: v1.12.0](https://img.shields.io/badge/Version-v1.12.0-informational?style=flat-square) ![AppVersion: v1.12.0](https://img.shields.io/badge/AppVersion-v1.12.0-informational?style=flat-square)
44

55
A virtual SRE, powered by AI.
66

@@ -22,7 +22,7 @@ A virtual SRE, powered by AI.
2222
| [image.registry](./values.yaml#L14) | string | `"ghcr.io"` | Botkube container image registry. |
2323
| [image.repository](./values.yaml#L16) | string | `"kubeshop/botkube"` | Botkube container image repository. |
2424
| [image.pullPolicy](./values.yaml#L18) | string | `"IfNotPresent"` | Botkube container image pull policy. |
25-
| [image.tag](./values.yaml#L20) | string | `"v1.12.0-rc.1"` | Botkube container image tag. Default tag is `appVersion` from Chart.yaml. |
25+
| [image.tag](./values.yaml#L20) | string | `"v1.12.0"` | Botkube container image tag. Default tag is `appVersion` from Chart.yaml. |
2626
| [podSecurityPolicy](./values.yaml#L24) | object | `{"enabled":false}` | Configures Pod Security Policy to allow Botkube to run in restricted clusters. [Ref doc](https://kubernetes.io/docs/concepts/policy/pod-security-policy/). |
2727
| [securityContext](./values.yaml#L30) | object | Runs as a Non-Privileged user. | Configures security context to manage user Privileges in Pod. [Ref doc](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod). |
2828
| [containerSecurityContext](./values.yaml#L36) | object | `{"allowPrivilegeEscalation":false,"privileged":false,"readOnlyRootFilesystem":true}` | Configures container security context. [Ref doc](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container). |
@@ -208,10 +208,10 @@ A virtual SRE, powered by AI.
208208
| [configWatcher.enabled](./values.yaml#L896) | bool | `true` | If true, restarts the Botkube Pod on config changes. |
209209
| [configWatcher.inCluster](./values.yaml#L898) | object | `{"informerResyncPeriod":"10m"}` | In-cluster Config Watcher configuration. It is used when remote configuration is not provided. |
210210
| [configWatcher.inCluster.informerResyncPeriod](./values.yaml#L900) | string | `"10m"` | Resync period for the Config Watcher informers. |
211-
| [plugins](./values.yaml#L903) | object | `{"cacheDir":"/tmp","healthCheckInterval":"10s","incomingWebhook":{"enabled":true,"port":2115,"targetPort":2115},"repositories":{"botkube":{"url":"https://github.com/kubeshop/botkube/releases/download/v1.12.0-rc.1/plugins-index.yaml"}},"restartPolicy":{"threshold":10,"type":"DeactivatePlugin"}}` | Configuration for Botkube executors and sources plugins. |
211+
| [plugins](./values.yaml#L903) | object | `{"cacheDir":"/tmp","healthCheckInterval":"10s","incomingWebhook":{"enabled":true,"port":2115,"targetPort":2115},"repositories":{"botkube":{"url":"https://github.com/kubeshop/botkube/releases/download/v1.12.0/plugins-index.yaml"}},"restartPolicy":{"threshold":10,"type":"DeactivatePlugin"}}` | Configuration for Botkube executors and sources plugins. |
212212
| [plugins.cacheDir](./values.yaml#L905) | string | `"/tmp"` | Directory, where downloaded plugins are cached. |
213-
| [plugins.repositories](./values.yaml#L907) | object | `{"botkube":{"url":"https://github.com/kubeshop/botkube/releases/download/v1.12.0-rc.1/plugins-index.yaml"}}` | List of plugins repositories. Each repository defines the URL and optional `headers` |
214-
| [plugins.repositories.botkube](./values.yaml#L909) | object | `{"url":"https://github.com/kubeshop/botkube/releases/download/v1.12.0-rc.1/plugins-index.yaml"}` | This repository serves officially supported Botkube plugins. |
213+
| [plugins.repositories](./values.yaml#L907) | object | `{"botkube":{"url":"https://github.com/kubeshop/botkube/releases/download/v1.12.0/plugins-index.yaml"}}` | List of plugins repositories. Each repository defines the URL and optional `headers` |
214+
| [plugins.repositories.botkube](./values.yaml#L909) | object | `{"url":"https://github.com/kubeshop/botkube/releases/download/v1.12.0/plugins-index.yaml"}` | This repository serves officially supported Botkube plugins. |
215215
| [plugins.incomingWebhook](./values.yaml#L914) | object | `{"enabled":true,"port":2115,"targetPort":2115}` | Configure Incoming webhook for source plugins. |
216216
| [plugins.restartPolicy](./values.yaml#L919) | object | `{"threshold":10,"type":"DeactivatePlugin"}` | Botkube Restart Policy on plugin failure. |
217217
| [plugins.restartPolicy.type](./values.yaml#L921) | string | `"DeactivatePlugin"` | Restart policy type. Allowed values: "RestartAgent", "DeactivatePlugin". |

helm/botkube/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ image:
1717
# -- Botkube container image pull policy.
1818
pullPolicy: IfNotPresent
1919
# -- Botkube container image tag. Default tag is `appVersion` from Chart.yaml.
20-
tag: v1.12.0-rc.1
20+
tag: v1.12.0
2121

2222
# -- Configures Pod Security Policy to allow Botkube to run in restricted clusters.
2323
# [Ref doc](https://kubernetes.io/docs/concepts/policy/pod-security-policy/).
@@ -907,7 +907,7 @@ plugins:
907907
repositories:
908908
# -- This repository serves officially supported Botkube plugins.
909909
botkube:
910-
url: https://github.com/kubeshop/botkube/releases/download/v1.12.0-rc.1/plugins-index.yaml
910+
url: https://github.com/kubeshop/botkube/releases/download/v1.12.0/plugins-index.yaml
911911
# headers: {} # optional headers for plugins repository.
912912

913913
# -- Configure Incoming webhook for source plugins.

0 commit comments

Comments
 (0)