diff --git a/CHANGELOG.md b/CHANGELOG.md index fe8937dd..6c9c1734 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Minor bug fix in how the value of `Organization.is_rbac_permissions_enabled` is determined +- Helm chart: default values file and documentation now reflect the correct key to set for the Slack + slash command name, `oncall.slack.commandName`. + ## v1.1.15 (2023-01-10) ### Changed diff --git a/helm/oncall/Chart.yaml b/helm/oncall/Chart.yaml index 76ffef88..20d414c1 100644 --- a/helm/oncall/Chart.yaml +++ b/helm/oncall/Chart.yaml @@ -7,7 +7,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.1.1 +version: 1.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/helm/oncall/README.md b/helm/oncall/README.md index 172758fe..994a9426 100644 --- a/helm/oncall/README.md +++ b/helm/oncall/README.md @@ -98,15 +98,19 @@ You can set up Slack connection via following variables: oncall: slack: enabled: true - command: ~ + commandName: oncall clientId: ~ clientSecret: ~ - apiToken: ~ - apiTokenCommon: ~ + signingSecret: ~ + existingSecret: "" + clientIdKey: "" + clientSecretKey: "" + signingSecretKey: "" + redirectHost: ~ ``` -`oncall.slack.command` is used for changing default bot slash command, -`oncall`. In slack, it could be called via `/`. +`oncall.slack.commandName` is used for changing default bot slash command, +`oncall`. In slack, it could be called via `/`. To set up Telegram tokem and webhook url use: diff --git a/helm/oncall/values.yaml b/helm/oncall/values.yaml index 9abb14fc..612e0c49 100644 --- a/helm/oncall/values.yaml +++ b/helm/oncall/values.yaml @@ -91,8 +91,8 @@ oncall: slack: # enabled enable the Slack ChatOps integration for the Oncall Engine. enabled: false - # command sets the Slack bot slash-command - command: oncall + # commandName sets the Slack bot slash-command + commandName: oncall # clientId configures the Slack app OAuth2 client ID. # api.slack.com/apps/ -> Basic Information -> App Credentials -> Client ID clientId: ~