Kubedeploy documentation has moved. You will be automatically redirected to kubedeploy.app in couple of seconds.



kubedeploy

Generalized chart for deploying single containerized application into Kubernetes clusters

Version: 1.0.0 Type: application AppVersion: 1.0.0

Homepage: https://charts.sysbee.io/kubedeploy/

Maintainers

Name Email Url
Branko Toic https://www.sysbee.net

Contributors

Name Email Url
Sasa Tekovic https://www.sysbee.net
Sinisa Dukaric

Additional Information

This simple chart is created to deploy any generic containerized application to kubernetes cluster. Main idea behind this chart is having a simple framework for deploying docker images by changing just few charts values, like image.repository and image.tag. Chart is generalized as it aims to be compatible with as many possible deployment scenarios. As such it might not be the perfect fit for every workload, however it will allow you to run most of generic applications.

If you have multiple different containers it is recommended to install each container in its own release. Using helmfile is strongly encouraged when dealing with multiple releases.

List of currently available features configurable through chart values.yaml:

Installing the Chart

To install the chart with the release name my-release:

$ helm repo add sysbee https://charts.sysbee.io/stable/sysbee
$ helm install my-release sysbee/kubedeploy

Values

Key Type Default Description
additionalContainers.containers list see below list of additional containers.
additionalContainers.containers[0].args list [] Define custom arguments for additionalContainer
additionalContainers.containers[0].command list ["sh","-c","while true; do sleep 30; done;"] Define custom command for additionalContainer to run
additionalContainers.containers[0].healthcheck.enabled bool false Define custom healthcheck probes for container
additionalContainers.containers[0].healthcheck.probes.livenessProbe object {} Define livenessProbe
additionalContainers.containers[0].healthcheck.probes.readinessProbe object {} Define readinessProbe
additionalContainers.containers[0].ports list [] Define container ports that will be exposed see: containerPort
additionalContainers.containers[0].repository required "busybox" define additionalContainer repository
additionalContainers.containers[0].resources object {} Define custom resources for this specific additional container. If not specified default resources from additionalContainer.resources will be used
additionalContainers.containers[0].tag string "latest" Overrides the image tag whose default is latest
additionalContainers.enabled bool false define if we should deploy additional containers within a pod see https://kubernetes.io/docs/concepts/workloads/pods/
additionalContainers.pullPolicy string "IfNotPresent" default additionalContainers pull policy
additionalContainers.resources object {} Define default resources for all additional containers
affinity object {} Define pod affinity
autoscaling.enabled bool false Enable autoscaling feature. This will only work when deploymentMode is set to Deployment
autoscaling.maxReplicas int 10 Number of max replicas for autoscaling
autoscaling.minReplicas int 1 Number of minimum replicas for autoscaling
autoscaling.targetCPUUtilizationPercentage int 80 Target cpu utilization as percentage of resources.requests.cpu
autoscaling.targetMemoryUtilizationPercentage int nil Target memory utilization as percentage of resources.requests.mem
configMaps list [] Define a list of hashes containing name and data that will be used in generating additional configmaps please see values.yaml for example
cronjobspec.args list [] define args for cronjob
cronjobspec.backoffLimit int 3 define job backoff limit, see: https://kubernetes.io/docs/concepts/workloads/controllers/job/#pod-backoff-failure-policy
cronjobspec.command list [] define command for cronjob
cronjobspec.concurrencyPolicy string "" concurrency policy options: Allow (default), Forbid or Replace, see: https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#concurrency-policy
cronjobspec.failedJobsHistoryLimit int 1 define number of failed job logs to keep
cronjobspec.restartPolicy string "OnFailure"
cronjobspec.schedule string "0 * * * *" define cronjob schedule, for details see: https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#writing-a-cronjob-spec
cronjobspec.startingDeadlineSeconds optional 180 define deadline for starting the job, see: https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#starting-deadline
cronjobspec.successfulJobsHistoryLimit int 3 define number of successful job logs to keep
deploymentMode string "Deployment" available deployment modes currently supported:
env list [] Define environment variables for containers for reference see: env. Environment variables set will be exposed both to main container and all of the initContainers
fullnameOverride string "" Override full resource names instead of using calculated “releasename-chartname” default naming convention
healthcheck.disableAutomatic bool false Disable automatic healthcheck probes. Automatic probes will always create a http healthcheck probe if there is a port named http
healthcheck.enabled bool false Define custom healthcheck probes for container, overriding any automatic probes
healthcheck.probes.livenessProbe object {} Define livenessProbe
healthcheck.probes.readinessProbe object {} Define readinessProbe
image.args list [] Define custom arguments for image to run. Reference
image.command list [] Define custom command for image to run. Reference
image.lifecycle object {} Define custom container lifecycle hooks. More info
image.pullPolicy string "IfNotPresent" Default container pull policy
image.repository string "nginx" Define container repository
image.tag string "latest" Define the image tag defaulting to latest.
image.terminationGracePeriodSeconds int 30 Define custom terminationGracePeriodSeconds. Should be greater then expected run time of lifecycle hooks
imagePullSecrets list [] Define ImagePullSecrets
ingress object see ingress object values Define Ingress object
ingress.annotations object defaults to support cert-manager letsencrypt issuer Additional Ingress annotations
ingress.className string "haproxy" Ingress class name
ingress.enabled bool false Enable Ingres for release
ingress.hosts list see ingress.hosts[0] values Ingress host list.
ingress.hosts[0].host string, required chart-example.local Define Ingress hostname
ingress.hosts[0].paths list [{"path":"/"}] Ingress host paths
ingress.pathType string "ImplementationSpecific" Default Ingress pathType
ingress.tls list see ingress.tls[0] values Ingress TLS list
ingress.tls[0].hosts list ["chart-example.local"] List of TLS enabled Ingress hosts
ingress.tls[0].secretName string, required chart-example-tls Name of the secret to use for storing ssl certificate
initContainers.containers list see below sequential list of init containers. Each init container must complete successfully before the next one starts
initContainers.containers[0].args list [] Define custom arguments for initContainer
initContainers.containers[0].command list ["sh","-c","exit 0"] Define custom command for initContainer to run
initContainers.containers[0].name required busybox-init define init container name
initContainers.containers[0].repository required "busybox" define initContainer repository
initContainers.containers[0].resources object {} Define custom resources for this specific init container. If not specified default resources from initContainer.resources will be used
initContainers.containers[0].tag string "latest" Overrides the image tag whose default is latest
initContainers.enabled bool false define if we should deploy init containers within a pod see https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
initContainers.pullPolicy string "IfNotPresent" default initContainers pull policy
initContainers.resources object {} Define init containers resources
jobspec.args list [] define args for job
jobspec.backoffLimit int 3 define job backoff limit, see: https://kubernetes.io/docs/concepts/workloads/controllers/job/#pod-backoff-failure-policy
jobspec.command list [] define command for job
jobspec.parallelism int 1 define job paralelisam see: https://kubernetes.io/docs/concepts/workloads/controllers/job/#controlling-parallelism
jobspec.restartPolicy string "OnFailure" define restart policy for jobs if deploymentMode is: Job. Please see https://kubernetes.io/docs/concepts/workloads/controllers/job/#handling-pod-and-container-failures
keda.behavior object {} HPA configurable scaling behavior see ref
keda.cooldownPeriod int 300 The period to wait after the last trigger reported active before scaling the resource back to 0 ref
keda.enabled bool false Kubernetes Event-driven Autoscaling: KEDA 2.x ref Note: mutually exclusive with HPA, enabling KEDA disables HPA
keda.maxReplicas int 10 Number of maximum replicas for KEDA autoscaling
keda.minReplicas int 1 Number of minimum replicas for KEDA autoscaling
keda.pollingInterval int 30 Interval for checking each trigger ref
keda.restoreToOriginalReplicaCount bool false After scaled object is deleted return workload to initial replica count ref
keda.scaledObject.annotations object {} Scaled object annotations, can be used to pause scaling ref
keda.triggers list [] Keda triggers ref see values for prometheus example
kubeVersionOverride string "" Allow override of kubernetes version by default this will be automatically detected and requires no modification
minReadySeconds int 10 Define minReadySeconds for deployments and statefulsets
monitoring object see below Parameters for the Prometheus ServiceMonitor or PodMonitor objects.
monitoring.enabled bool false Enable monitoring. If service.enabled is true chart will generate ServiceMonitor object, otherwise PodMonitor will be used.
monitoring.labels object {} Provide additional labels to the ServiceMonitor metadata
monitoring.metricRelabelings list [] Provide additional metricRelabelings to apply to samples before ingestion.
monitoring.relabelings list [] Provide additional relabelings to apply to samples before scraping
monitoring.scheme string "http" HTTP scheme to use for scraping.
monitoring.scrapeInterval string "20s" Provide interval at which metrics should be scraped
monitoring.scrapePath string "/metrics" Provide HTTP path to scrape for metrics.
monitoring.scrapePort string "metrics" Provide named service port used for scraping
monitoring.scrapeTimeout string "15s" Timeout after which the scrape is ended (must be less than scrapeInterval)
monitoring.targetLabels list [] Additional metric labels
monitoring.tlsConfig object {} TLS configuration to use when scraping the endpoint
nameOverride string "" Override release name used in calculated “releasename-chartname” default naming convention
networkPolicy.egress list [] Define spec.egress for NetowkPolicy rules
networkPolicy.enabled bool false Enables pod based NetworkPolicy
networkPolicy.ingress list [] Define spec.ingress for NetowkPolicy rules
networkPolicy.ingressNamespace string "ingress" Define namespace where ingress controllers are deployed Used to generate automatic policy to enable ingress access when .Values.ingress is enabled
networkPolicy.monitoringNamespace string "monitoring" Define namespace where monitoring stack is deployed Used to generate automatic policy to enable monitoring access when .Values.monitoring is enabled
nodeSelector object {} Define custom node selectors
persistency.accessModes list ["ReadWriteOnce"] Define storage access modes. Must be supported by available storageClass
persistency.capacity.storage string "5Gi" Define storage capacity
persistency.enabled bool false Enable support for persistent volumes. Supported only in Statefulset deploymentMode with any number of replicas
persistency.mountPath string "/data" Define path where persistent volume will be mounted in container
persistency.storageClassName string uses cluster default storageClassName Define custom name for persistent storage class name
podAnnotations object {} Define pod’s annotations
podAntiAffinity string "" Pod anti-affinity can prevent the scheduler from placing application replicas on the same node. The default value “soft” means that the scheduler should prefer to not schedule two replica pods onto the same node but no guarantee is provided. The value “hard” means that the scheduler is required to not schedule two replica pods onto the same node. The value “” will disable pod anti-affinity so that no anti-affinity rules will be configured.
podAntiAffinityTopologyKey string "kubernetes.io/hostname" If anti-affinity is enabled sets the topologyKey to use for anti-affinity. This can be changed to, for example, failure-domain.beta.kubernetes.io/zone
podDisruptionBudget.enabled bool false Enable and define pod disruption budget default (off) see: podDisruptionBudget
podDisruptionBudget.maxUnavailable int nil Maximum unavailable replicas
podDisruptionBudget.minAvailable int 1 Minimum available replicas
podSecurityContext object {} Define pod’s securityContext
ports list [] Define container ports that will be exposed see: containerPort
replicaCount int 1 Number of pods to load balance across
resources object {} 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. See resources for syntax
securityContext object {} Define container’s securityContext
service.enabled bool true Controls if the service should be deployed for this release
service.ports list see service.ports[] Define listening port for service see: servicePort
service.ports[0].name string, required "http" Name of the service port. This should match container’s port name
service.ports[0].protocol required "TCP" Define service protocol. Supported protocols
service.ports[0].targetPort string, required "http" Define name for the exposed container port that the service will target.
service.type string "ClusterIP" Service type see Reference for available options.
serviceAccount.annotations object {} Annotations to add to the service account
serviceAccount.create bool true Specifies whether a service account should be created
serviceAccount.name string "" The name of the service account to use. If not set and create is true, a name is generated using the fullname template
tolerations list [] Define pod tolerations
topologySpreadConstraints list [] Define custom topologySpreadConstraings

Autogenerated from chart metadata using helm-docs v1.11.0

Changelog

1.0.0

Breaking changes:

New Features:

0.9.0

0.8.2

0.8.1

Breaking change - Use fullname helper for defining app.kubernetes.io/name. This fixes scenario where app.kubernetes.io/name would always be kubedeploy if nameOverride is not set. In this fix, fullNameOverride will be used first, then nameOverride if present, if none are present, use release name + chart name as app name label - Use image.tag value if available for app.kubernetes.io/version

0.8.0

0.7.1

0.7.0

0.6.0

0.5.1

0.5.0

0.4.4

0.4.3

0.4.2

0.4.1

0.4.0

0.3.2

0.3.1

0.3.0

0.2.1

Initial release