diff --git a/helm/botkube/Chart.yaml b/helm/botkube/Chart.yaml index f75e2da0b..bb2813e71 100644 --- a/helm/botkube/Chart.yaml +++ b/helm/botkube/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: botkube home: https://botkube.io -version: v9.99.9-dev -appVersion: v9.99.9-dev +version: v1.13.0-rc.1 +appVersion: v1.13.0-rc.1 icon: https://docs.botkube.io/images/botkube-black.svg description: A virtual SRE, powered by AI. sources: diff --git a/helm/botkube/README.md b/helm/botkube/README.md index 573fc0d2d..b410b21cd 100644 --- a/helm/botkube/README.md +++ b/helm/botkube/README.md @@ -1,6 +1,6 @@ # Botkube -![Version: v9.99.9-dev](https://img.shields.io/badge/Version-v9.99.9--dev-informational?style=flat-square) ![AppVersion: v9.99.9-dev](https://img.shields.io/badge/AppVersion-v9.99.9--dev-informational?style=flat-square) +![Version: v1.13.0-rc.1](https://img.shields.io/badge/Version-v1.13.0--rc.1-informational?style=flat-square) ![AppVersion: v1.13.0-rc.1](https://img.shields.io/badge/AppVersion-v1.13.0--rc.1-informational?style=flat-square) A virtual SRE, powered by AI. @@ -22,7 +22,7 @@ A virtual SRE, powered by AI. | [image.registry](./values.yaml#L14) | string | `"ghcr.io"` | Botkube container image registry. | | [image.repository](./values.yaml#L16) | string | `"kubeshop/botkube"` | Botkube container image repository. | | [image.pullPolicy](./values.yaml#L18) | string | `"IfNotPresent"` | Botkube container image pull policy. | -| [image.tag](./values.yaml#L20) | string | `"v9.99.9-dev"` | Botkube container image tag. Default tag is `appVersion` from Chart.yaml. | +| [image.tag](./values.yaml#L20) | string | `"v1.13.0-rc.1"` | Botkube container image tag. Default tag is `appVersion` from Chart.yaml. | | [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/). | | [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). | | [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. | [configWatcher.enabled](./values.yaml#L896) | bool | `true` | If true, restarts the Botkube Pod on config changes. | | [configWatcher.inCluster](./values.yaml#L898) | object | `{"informerResyncPeriod":"10m"}` | In-cluster Config Watcher configuration. It is used when remote configuration is not provided. | | [configWatcher.inCluster.informerResyncPeriod](./values.yaml#L900) | string | `"10m"` | Resync period for the Config Watcher informers. | -| [plugins](./values.yaml#L903) | object | `{"cacheDir":"/tmp","healthCheckInterval":"10s","incomingWebhook":{"enabled":true,"port":2115,"targetPort":2115},"repositories":{"botkube":{"url":"https://storage.googleapis.com/botkube-plugins-latest/plugins-index.yaml"}},"restartPolicy":{"threshold":10,"type":"DeactivatePlugin"}}` | Configuration for Botkube executors and sources plugins. | +| [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.13.0-rc.1/plugins-index.yaml"}},"restartPolicy":{"threshold":10,"type":"DeactivatePlugin"}}` | Configuration for Botkube executors and sources plugins. | | [plugins.cacheDir](./values.yaml#L905) | string | `"/tmp"` | Directory, where downloaded plugins are cached. | -| [plugins.repositories](./values.yaml#L907) | object | `{"botkube":{"url":"https://storage.googleapis.com/botkube-plugins-latest/plugins-index.yaml"}}` | List of plugins repositories. Each repository defines the URL and optional `headers` | -| [plugins.repositories.botkube](./values.yaml#L909) | object | `{"url":"https://storage.googleapis.com/botkube-plugins-latest/plugins-index.yaml"}` | This repository serves officially supported Botkube plugins. | +| [plugins.repositories](./values.yaml#L907) | object | `{"botkube":{"url":"https://github.com/kubeshop/botkube/releases/download/v1.13.0-rc.1/plugins-index.yaml"}}` | List of plugins repositories. Each repository defines the URL and optional `headers` | +| [plugins.repositories.botkube](./values.yaml#L909) | object | `{"url":"https://github.com/kubeshop/botkube/releases/download/v1.13.0-rc.1/plugins-index.yaml"}` | This repository serves officially supported Botkube plugins. | | [plugins.incomingWebhook](./values.yaml#L914) | object | `{"enabled":true,"port":2115,"targetPort":2115}` | Configure Incoming webhook for source plugins. | | [plugins.restartPolicy](./values.yaml#L919) | object | `{"threshold":10,"type":"DeactivatePlugin"}` | Botkube Restart Policy on plugin failure. | | [plugins.restartPolicy.type](./values.yaml#L921) | string | `"DeactivatePlugin"` | Restart policy type. Allowed values: "RestartAgent", "DeactivatePlugin". | diff --git a/helm/botkube/values.yaml b/helm/botkube/values.yaml index 176cc3211..e4a8f66d8 100644 --- a/helm/botkube/values.yaml +++ b/helm/botkube/values.yaml @@ -17,7 +17,7 @@ image: # -- Botkube container image pull policy. pullPolicy: IfNotPresent # -- Botkube container image tag. Default tag is `appVersion` from Chart.yaml. - tag: v9.99.9-dev + tag: v1.13.0-rc.1 # -- Configures Pod Security Policy to allow Botkube to run in restricted clusters. # [Ref doc](https://kubernetes.io/docs/concepts/policy/pod-security-policy/). @@ -907,7 +907,7 @@ plugins: repositories: # -- This repository serves officially supported Botkube plugins. botkube: - url: https://storage.googleapis.com/botkube-plugins-latest/plugins-index.yaml + url: https://github.com/kubeshop/botkube/releases/download/v1.13.0-rc.1/plugins-index.yaml # headers: {} # optional headers for plugins repository. # -- Configure Incoming webhook for source plugins.