mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* [stable/kube-slack] Added imagePullSecrets option to chart Signed-off-by: Pierluigi Lenoci <pierluigi.lenoci@akelius.de> * In this way works better Signed-off-by: Pierluigi Lenoci <pierluigi.lenoci@akelius.de>
72 lines
2.0 KiB
YAML
72 lines
2.0 KiB
YAML
## Environment values for the deployment
|
|
envVars:
|
|
## URL of your Incoming Webhook in Slack
|
|
## e.g. https://hooks.slack.com/services/Txxxxxxxx/Bxxxxxxxx/XXXXXXXXXXXXXXXXXXXXXXXX
|
|
SLACK_URL: ""
|
|
## Override channel to send
|
|
SLACK_USERNAME: ""
|
|
## Override username to send
|
|
SLACK_CHANNEL: ""
|
|
## URL of HTTP proxy used to connect to Slack
|
|
SLACK_PROXY: ""
|
|
## Time to wait after pod becomes not ready before notifying
|
|
NOT_READY_MIN_TIME: "60000" # in ms
|
|
## Set to false to disable alert on pod recovery
|
|
RECOVERY_ALERT: "true"
|
|
## How often to update in milliseconds
|
|
TICK_RATE: "15000"
|
|
## Repeat notification after this many milliseconds has passed after status returned to normal
|
|
FLOOD_EXPIRE: "60000"
|
|
## Enable/disable metric alerting on cpu
|
|
METRICS_CPU: "true"
|
|
## Enable/disable metric alerting on memory
|
|
METRICS_MEMORY: "true"
|
|
## Set percentage threshold on metric alerts
|
|
METRICS_PERCENT: "80"
|
|
## If no metrics limit defined, alert if the pod utilization is more than the resource request amount
|
|
METRICS_REQUESTS: "false"
|
|
|
|
## Alternative to specify environment values for the deployment via secrets.
|
|
## See envVars above for some examples
|
|
# envVarsFromSecret:
|
|
# SLACK_URL:
|
|
# secretKeyRef: kube-slack
|
|
# key: SLACK_URL
|
|
|
|
## Configuration for the deployment:
|
|
image:
|
|
repository: willwill/kube-slack
|
|
tag: v4.2.0
|
|
pullPolicy: IfNotPresent
|
|
# If specified, use these secrets to access the image
|
|
# pullSecret: registry-secret
|
|
|
|
resources: {}
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
rbac:
|
|
# Specifies whether RBAC resources should be created
|
|
create: true
|
|
|
|
serviceAccount:
|
|
# Specifies whether a ServiceAccount should be created
|
|
create: true
|
|
# The name of the ServiceAccount to use.
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
name:
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
annotations: {}
|
|
# Specify which annotations must be added to kube-slack pods
|
|
# fluentbit.io/exclude: true
|