This repository was archived by the owner on Nov 1, 2022. It is now read-only.
Flux 1.1.0 Release
Improvements
- Flux can now release updates to DaemonSets, StatefulSets and CronJobs in addition to Deployments.
- Matching Service resources are no longer required.
Breaking Changes
As a consequence of these improvements, we have had to retire the ability to release updates to Deployment resources by specifying the name of a matching Service. In practical terms this means that you will use list-controllers instead of list-services, and refer to controllers directly using the --controller argument instead of indirectly via --service:
fluxctl list-servicesis no longer supported; usefluxctl list-controllersinsteadfluxctlcommands which used to accept a--service=<namespace>/<servicename>parameter now accept--controller=<namespace>:<kind>/<name>instead, where<kind>is one ofdeployment,daemonset,statefulsetorcronjob- Tabular outputs from
fluxctlthat used to mentionSERVICEnow mentionCONTROLLERinstead. The format of controller identifiers matches that of the new--controllerargument.