Files
charts/bitnami/kubewatch/values.yaml
2022-02-17 09:26:39 +00:00

366 lines
12 KiB
YAML

## @section Global parameters
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
##
global:
imageRegistry: ""
## E.g.
## imagePullSecrets:
## - myRegistryKeySecretName
##
imagePullSecrets: []
## @section Common parameters
## @param nameOverride String to partially override common.names.fullname template
##
nameOverride: ""
## @param fullnameOverride String to fully override common.names.fullname template
##
fullnameOverride: ""
## @param commonLabels Labels to add to all deployed objects
##
commonLabels: {}
## @param commonAnnotations Annotations to add to all deployed objects
##
commonAnnotations: {}
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []
## @section Kubewatch parameters
## Bitnami Kubewatch image version
## ref: https://hub.docker.com/r/bitnami/kubewatch/tags/
## @param image.registry Kubewatch image registry
## @param image.repository Kubewatch image repository
## @param image.tag Kubewatch image tag (immutable tags are recommended)
## @param image.pullPolicy Kubewatch image pull policy
## @param image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: docker.io
repository: bitnami/kubewatch
tag: 0.1.0-debian-10-r537
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## Example:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param hostAliases Add deployment host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param slack.enabled Enable Slack notifications
## @param slack.channel Slack channel to notify
## @param slack.token Slack API token
##
slack:
enabled: true
channel: "XXXX"
## Create using: https://my.slack.com/services/new/bot and invite the bot to your channel using: /join @botname
##
token: "XXXX"
## @param hipchat.enabled Enable HipChat notifications
## @param hipchat.room HipChat room to notify
## @param hipchat.token HipChat token
## @param hipchat.url HipChat URL
##
hipchat:
enabled: false
room: ""
token: ""
url: ""
## @param mattermost.enabled Enable Mattermost notifications
## @param mattermost.channel Mattermost channel to notify
## @param mattermost.url Mattermost URL
## @param mattermost.username Mattermost user to notify
##
mattermost:
enabled: false
channel: ""
url: ""
username: ""
## @param flock.enabled Enable Flock notifications
## @param flock.url Flock URL
##
flock:
enabled: false
url: ""
## @param msteams.enabled Enable Microsoft Teams notifications
## @param msteams.webhookurl Microsoft Teams webhook URL
##
msteams:
enabled: false
webhookurl: ""
## @param webhook.enabled Enable Webhook notifications
## @param webhook.url Webhook URL
##
webhook:
enabled: false
url: ""
smtp:
## @param smtp.enabled Enable SMTP (email) notifications
##
enabled: false
## @param smtp.to Destination email address (required)
##
to: ""
## @param smtp.from Source email address (required)
##
from: ""
## @param smtp.hello SMTP hello field (optional)
##
hello: ""
## @param smtp.smarthost SMTP server address (name:port) (required)
##
smarthost: ""
## @param smtp.subject Source email subject
##
subject: ""
## @param smtp.auth.username Username for LOGIN and PLAIN auth mech
## @param smtp.auth.password Password for LOGIN and PLAIN auth mech
## @param smtp.auth.secret Secret for CRAM-MD5 auth mech
## @param smtp.auth.identity Identity for PLAIN auth mech
##
auth:
username: ""
password: ""
secret: ""
identity: ""
## @param smtp.requireTLS Force STARTTLS. Set to `true` or `false`
##
requireTLS: ""
## @param namespaceToWatch Namespace to watch, leave it empty for watching all
##
namespaceToWatch: ""
## Resources to watch
## @param resourcesToWatch.deployment Watch changes to Deployments
## @param resourcesToWatch.replicationcontroller Watch changes to ReplicationControllers
## @param resourcesToWatch.replicaset Watch changes to ReplicaSets
## @param resourcesToWatch.daemonset Watch changes to DaemonSets
## @param resourcesToWatch.services Watch changes to Services
## @param resourcesToWatch.pod Watch changes to Pods
## @param resourcesToWatch.job Watch changes to Jobs
## @param resourcesToWatch.persistentvolume Watch changes to PersistentVolumes
##
resourcesToWatch:
deployment: true
replicationcontroller: false
replicaset: false
daemonset: false
services: false
pod: true
job: false
persistentvolume: false
## @param command Override default container command (useful when using custom images)
##
command: []
## @param args Override default container args (useful when using custom images)
##
args: []
## @param extraEnvVars Extra environment variables to be set on Kubewatch container
## Example:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param extraEnvVarsCM Name of existing ConfigMap containing extra env vars
##
extraEnvVarsCM: ""
## @param extraEnvVarsSecret Name of existing Secret containing extra env vars
##
extraEnvVarsSecret: ""
## @section Kubewatch deployment parameters
## @param replicaCount Number of Kubewatch replicas to deploy
##
replicaCount: 1
## Kubewatch containers' SecurityContext
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param podSecurityContext.enabled Enable Kubewatch containers' SecurityContext
## @param podSecurityContext.fsGroup Set Kubewatch containers' SecurityContext fsGroup
##
podSecurityContext:
enabled: false
fsGroup: ""
## Kubewatch pods' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param containerSecurityContext.enabled Enable Kubewatch pods' Security Context
## @param containerSecurityContext.runAsUser Set Kubewatch pods' SecurityContext runAsUser
## @param containerSecurityContext.runAsNonRoot Set Kubewatch pods' SecurityContext runAsNonRoot
##
containerSecurityContext:
enabled: false
runAsUser: ""
runAsNonRoot: ""
## Kubewatch resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param resources.limits The resources limits for the Kubewatch container
## @param resources.requests The requested resources for the Kubewatch container
##
resources:
## Example:
## limits:
## cpu: 200m
## memory: 256Mi
limits: {}
## Examples:
## requests:
## cpu: 100m
## memory: 10Mi
requests: {}
## Configure extra options for liveness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param livenessProbe.enabled Enable livenessProbe
## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param livenessProbe.periodSeconds Period seconds for livenessProbe
## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: false
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
## Configure extra options for readiness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param readinessProbe.enabled Enable readinessProbe
## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param readinessProbe.periodSeconds Period seconds for readinessProbe
## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: false
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
## @param customLivenessProbe Override default liveness probe
##
customLivenessProbe: {}
## @param customReadinessProbe Override default readiness probe
##
customReadinessProbe: {}
## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set.
## E.g.
## key: "kubernetes.io/e2e-az-name"
##
key: ""
## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set.
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param affinity Affinity for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set
##
affinity: {}
## @param nodeSelector Node labels for pod assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param tolerations Tolerations for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param priorityClassName Controller priorityClassName
## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
##
priorityClassName: ""
## @param podLabels Extra labels for Kubewatch pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param podAnnotations Annotations for Kubewatch pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param extraVolumes Optionally specify extra list of additional volumes for Kubewatch pods
##
extraVolumes: []
## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for Kubewatch container(s)
##
extraVolumeMounts: []
## @param initContainers Add additional init containers to the Kubewatch pods
## Example:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
initContainers: []
## @param sidecars Add additional sidecar containers to the Kubewatch pods
## Example:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @section RBAC parameters
## @param rbac.create Whether to create & use RBAC resources or not
##
rbac:
create: false
## Specifies whether a ServiceAccount should be created
##
serviceAccount:
## @param serviceAccount.create Enable the creation of a ServiceAccount for Kubewatch pods
##
create: true
## @param serviceAccount.name Name of the created ServiceAccount
## If not set and create is true, a name is generated using the fullname template
##
name: ""