application
application copied to clipboard
Generic helm chart for all kind of applications
**Is your feature request related to a problem? Please describe.** Add ability to define [priorityClassName](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/) for the deployment ``` preemptionPolicy: PreemptLowerPriority priority: 1000000 priorityClassName: high-priority ``` **Describe the solution you'd...
**Is your feature request related to a problem? Please describe.** need **env values**, **valueFrom.configMapKeyRef.name** & **valueFrom.secretKeyRef.name** to evaluated as template so that they can be reusable. **Describe the solution you'd...
According to https://docs.renovatebot.com/modules/manager/helm-values/#additional-information the values.yaml need to be structured like this for it to pick up the values: ``` image: repository: 'some-docker/dependency' tag: v1.0.0 registry: registry.example.com # optional key, will...
https://github.com/stakater/application/blob/master/application/templates/cronjob.yaml HostAliases support for cronjob, probably on jobTemplate https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#podspec-v1-core ``` spec: {{- with .Values.hostAliases }} hostAliases: {{- toYaml . | indent X -}} {{- end }} ```
I'd like to see automatic release and changelog updates in such a simple repository. You can see an example implementation using [semantic-release](https://semantic-release.gitbook.io/semantic-release/) in this repository https://github.com/aslafy-z/helm-git. [semantic-release](https://semantic-release.gitbook.io/semantic-release/) also knowns how...
There are some tools out there to automatically generate helm chart documentation from the values and comments. It would ensure we don't miss any entries and enforce comments in the...
https://github.com/stakater/application/blob/master/application/values.yaml#L213-L220 - reduce to 10m - reduce to 50MB and set same limits
Thoroughly document in readme how to do local development and validation
Scenarios to test endpointmonitor creation: 1. Works when both ingress and route are enabled 2. When ingress is enabled 3. When route is enabled 4. But if none is enable...
https://docs.bitnami.com/tutorials/production-ready-charts/#use-non-root-containers In order to make your Helm chart work with non-root containers, add the securityContext section to your yaml files. e.g. ``` spec: {{- if .Values.securityContext.enabled }} securityContext: fsGroup: {{...