Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • bmi/opendesk/components/platform-development/charts/opendesk-migrations
1 result
Show changes
Commits on Source (2)
## [1.3.6](https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/opendesk-migrations/compare/v1.3.5...v1.3.6) (2024-12-12)
### Bug Fixes
* Add `cleanup` section to `values.yaml` ([a29652e](https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/opendesk-migrations/commit/a29652ed2f94297bc7d70133f3e0fc768105adb4))
## [1.3.5](https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/opendesk-migrations/compare/v1.3.4...v1.3.5) (2024-10-02)
......
......@@ -17,5 +17,5 @@ name: "opendesk-migrations"
sources:
- "https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/opendesk-migrations"
type: "application"
version: "1.3.5"
version: "1.3.6"
...
......@@ -13,13 +13,13 @@ To install the chart with the release name `my-release`, you have two options:
### Install via Repository
```console
helm repo add opendesk-migrations https://gitlab.opencode.de/api/v4/projects/3061/packages/helm/stable
helm install my-release --version 1.3.5 opendesk-migrations/opendesk-migrations
helm install my-release --version 1.3.6 opendesk-migrations/opendesk-migrations
```
### Install via OCI Registry
```console
helm repo add opendesk-migrations oci://registry.opencode.de/bmi/opendesk/components/platform-development/charts/opendesk-migrations
helm install my-release --version 1.3.5 opendesk-migrations/opendesk-migrations
helm install my-release --version 1.3.6 opendesk-migrations/opendesk-migrations
```
## Requirements
......@@ -35,6 +35,8 @@ helm install my-release --version 1.3.5 opendesk-migrations/opendesk-migrations
| additionalAnnotations | object | `{}` | Additional custom annotations to add to all deployed objects. |
| additionalLabels | object | `{}` | Additional custom labels to add to all deployed objects. |
| affinity | object | `{}` | 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. |
| cleanup.deletePodsOnSuccess | bool | `true` | Keep Pods/Job logs after successful run. |
| cleanup.deletePodsOnSuccessTimeout | int | `3600` | When deletePodsOnSuccess is enabled, the pod will be deleted after configured seconds. |
| containerSecurityContext.allowPrivilegeEscalation | bool | `false` | Enable container privileged escalation. |
| containerSecurityContext.capabilities | object | `{"drop":["ALL"]}` | Security capabilities for container. |
| containerSecurityContext.enabled | bool | `true` | Enable security context. |
......
......@@ -49,6 +49,13 @@ migrations:
# script processing with an exit code >0.
failOnUnexpectedState: true
# Helm release cleanup setting.
cleanup:
# -- Keep Pods/Job logs after successful run.
deletePodsOnSuccess: true
# -- When deletePodsOnSuccess is enabled, the pod will be deleted after configured seconds.
deletePodsOnSuccessTimeout: 3600
# Security Context.
# Ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
containerSecurityContext:
......