This commit is contained in:
Karl Johan Grahn
2024-01-31 10:19:35 +01:00
parent 223ed538ae
commit ff12c58ee4
6 changed files with 22 additions and 9 deletions

3
.gitignore vendored
View File

@@ -11,4 +11,5 @@ vendor
dist
Reloader
!**/chart/reloader
*.tgz
*.tgz
styles/

3
.gitmodules vendored
View File

@@ -1,3 +0,0 @@
[submodule "vocabulary"]
path = vocabulary
url = git@github.com:stakater/vocabulary.git

View File

@@ -1,7 +1,8 @@
StylesPath = "vocabulary/styles"
StylesPath = styles
MinAlertLevel = warning
Vocab = "Stakater"
Packages = https://github.com/stakater/vale-package/releases/download/v0.0.6/Stakater.zip
Vocab = Stakater
# Only check MarkDown files
[*.md]

View File

@@ -4,7 +4,7 @@ Reloader can alert when it triggers a rolling upgrade on Deployments or Stateful
## Enabling the feature
In-order to enable this feature, you need to update the `reloader.env.secret` section of values.yaml providing the information needed for alert.
In-order to enable this feature, you need to update the `reloader.env.secret` section of `values.yaml` providing the information needed for alert:
```yaml
ALERT_ON_RELOAD: [ true/false ] Default: false

View File

@@ -1,6 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"labels": [
"dependencies"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
".vale.ini"
],
"matchStrings": [
"https:\/\/github\\.com\/(?<depName>.*)\/releases\/download\/(?<currentValue>.*)\/.*\\.zip"
],
"datasourceTemplate": "github-releases"
}
]
}

Submodule vocabulary deleted from 899bf2db35