Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/polymorphic-app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ description: A Helm chart for deploying any custom applications, specifically po
maintainers:
- name: improwised
type: application
version: 2.7.0
version: 3.0.0
appVersion: 1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ This chart is ideal for deploying applications that support polymorphic containe
* Worker: Consists of a kubernetes `Deployment` and optionally a `HorizontalPodAutoscaler`. Typically used to deploy long-running services that are not consumed through a TCP/HTTP server. e.g. Queue Workers and Stream Processors
* Jobs: Typically used to run one-off jobs, mostly helm hooks, to be run when installing/uninstalling/upgrading the helm deployment. Used to run database migrations by default. Backed by Kubernetes `Job`.
* CronJobs: Typically used to run scheduled jobs. Used for triggering events and batch processing jobs at a regular interval. Backed by Kubernetes `CronJob`.
* **Multi-Container Support**: Deploy multiple containers in a single pod for both Deployments and StatefulSets. This enables sidecar patterns, log collection, monitoring agents, and more. Each service must define a `containers` array, supporting both single and multiple containers with a consistent structure. See [MULTI_CONTAINER.md](./MULTI_CONTAINER.md) for detailed documentation.
* Designed to be used with [Flux Helm Controller](https://github.com/fluxcd/helm-controller), [Helmfile](https://github.com/roboll/helmfile), and any other mechanism that is backed by helm values-file override.
Loading
Loading