|
| 1 | +# Changelog |
| 2 | + |
| 3 | +- [Changelog](#changelog) |
| 4 | + - [0.4.0 (2026-05-26)](#040-2026-05-26) |
| 5 | + - [Added](#added) |
| 6 | + - [Changed](#changed) |
| 7 | + |
| 8 | +## 0.4.0 (2026-05-26) |
| 9 | + |
| 10 | +First public release of the Maestrod Helm chart on |
| 11 | +[`https://pspdfkit.github.io/helm-charts`](https://pspdfkit.github.io/helm-charts). |
| 12 | +Continues the version line from the internal `0.3.4` chart with full |
| 13 | +backwards-compatibility for existing value paths. |
| 14 | + |
| 15 | +### Added |
| 16 | + |
| 17 | +* `licenseSecret.name: ""` now skips wiring the `NUTRIENT_LICENSE_KEY` env var |
| 18 | + entirely (vs. the internal `0.3.4` chart which always rendered the |
| 19 | + `secretKeyRef`, leaving pods in `CreateContainerConfigError` whenever the |
| 20 | + Secret was missing). The default `licenseSecret.name: maestrod-secret` |
| 21 | + preserves the previous behaviour for existing consumers. |
| 22 | +* `podDisruptionBudget.{minAvailable,maxUnavailable}` accept integer or |
| 23 | + percentage string (e.g. `"50%"`); the schema reflects that. |
| 24 | +* Sectioned `values.yaml` with `# @section`, `# --`, `# @schema`, and `# @notationType` |
| 25 | + annotations for [helm-docs](https://github.com/norwoodj/helm-docs) and |
| 26 | + [helm-values-schema-json](https://github.com/losisin/helm-values-schema-json). |
| 27 | +* Generated `README.md` (helm-docs) and `values.schema.json` |
| 28 | + (helm-values-schema-json). |
| 29 | +* Optional `ServiceAccount` via `serviceAccount.{create,name,annotations,automount}` |
| 30 | + (defaults to `create: false` so existing pod specs are unchanged). |
| 31 | +* Optional [HorizontalPodAutoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) |
| 32 | + via `autoscaling.*` (defaults to disabled). |
| 33 | +* Optional [PodDisruptionBudget](https://kubernetes.io/docs/tasks/run-application/configure-pdb/) |
| 34 | + via `podDisruptionBudget.*` (defaults to disabled). |
| 35 | +* Optional `startupProbe`, `livenessProbe`, and `lifecycle` hooks alongside the |
| 36 | + existing `readinessProbe`. |
| 37 | +* `extraEnvs`, `extraEnvFrom`, `extraEnvFromSecrets`, `extraVolumes`, |
| 38 | + `extraVolumeMounts`, `sidecars`, `initContainers` for extending the |
| 39 | + pod spec without modifying templates. |
| 40 | +* `deploymentAnnotations`, `topologySpreadConstraints`, `schedulerName` knobs. |
| 41 | +* `helm test` connection probe under `templates/tests/test-connection.yaml`. |
| 42 | +* `ci/` test value files for `helm-chart-testing`. |
| 43 | + |
| 44 | +### Changed |
| 45 | + |
| 46 | +* **Migration from internal `0.3.4`:** the following defaults changed; users who |
| 47 | + previously relied on them must set them explicitly in their values file: |
| 48 | + |
| 49 | + ```yaml |
| 50 | + image: |
| 51 | + repository: 111300957880.dkr.ecr.eu-west-1.amazonaws.com/maestrod # was the default |
| 52 | + tag: stable # was the default |
| 53 | + pullPolicy: Always # was the default |
| 54 | + |
| 55 | + imagePullSecrets: |
| 56 | + - name: image-registry-mcleod-ecr # was the default |
| 57 | + |
| 58 | + podLabels: |
| 59 | + component_name: maestrod # was the default |
| 60 | + otel/logging-enabled: "true" # was the default |
| 61 | + |
| 62 | + # only if restartJob.enabled: true |
| 63 | + restartJob: |
| 64 | + registryAuthSecretName: image-registry-mcleod-ecr # was the default |
| 65 | + ``` |
| 66 | +
|
| 67 | + All other values keys (`licenseSecret`, `maestro.*`, `service`, `ingress`, |
| 68 | + `subdomainHostName`, `subdomainRootName`, `environmentShortName`, scheduling, |
| 69 | + resources, `updateStrategy`, `restartJob.*`) keep identical defaults and |
| 70 | + semantics. |
| 71 | + |
| 72 | +* `image.repository` no longer has a default; the JSON schema rejects an empty |
| 73 | + string at install time. Set it to the registry/repository hosting your |
| 74 | + Maestrod image. |
| 75 | +* `image.tag` defaults to the chart's `appVersion` when unset (matches the |
| 76 | + convention used by the other charts in this repo). |
| 77 | +* `image.pullPolicy` defaults to `IfNotPresent` (consistent with a pinned tag). |
| 78 | +* `imagePullSecrets` defaults to `[]`. |
| 79 | +* `podLabels` defaults to `{}`. |
| 80 | +* Restart Job templates moved to `templates/restart-job/`. The CronJob remains |
| 81 | + opt-in (`restartJob.enabled: false` by default) and now requires |
| 82 | + `restartJob.registryAuthSecretName` to be set explicitly when enabled. |
| 83 | + |
| 84 | +### Fixed |
| 85 | + |
| 86 | +* `PodDisruptionBudget` template no longer renders both `minAvailable` and |
| 87 | + `maxUnavailable` simultaneously (which Kubernetes rejects). When |
| 88 | + `maxUnavailable` is non-empty it takes precedence; otherwise `minAvailable` |
| 89 | + is rendered. |
0 commit comments