How to Upgrade the AI Foundry chart
To upgrade the ai-foundry chart, update the chart version and run helm upgrade.
tip
The chart follows semver: breaking changes are introduced only in major version bumps. Minor releases add new optional configuration; patch releases contain only fixes. Always review the changelog before upgrading across a major boundary.
Direct chart upgrade
If you installed the chart directly:
helm repo update
helm upgrade ai-foundry mia-platform/ai-foundry \
--namespace ai-foundry \
--values values.yaml \
--atomic \
--timeout 5m
Upgrade via the ai-foundry-deployment wrapper
If you use the ai-foundry-deployment wrapper repository, update the pinned chart version in Chart.yaml:
dependencies:
- name: ai-foundry
alias: aiFoundry
version: "~0.X" # ← bump to the new target version constraint
repository: "https://nexus.mia-platform.eu/repository/helm-internal/"
Then update and deploy:
helm dependency update
helm upgrade ai-foundry . \
--namespace ai-foundry \
--values values/<env>.yaml \
--atomic \
--timeout 5m
Version-specific upgrade notes
No version-specific migration steps required yet.