This repository has been 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-services
is no longer supported; usefluxctl list-controllers
insteadfluxctl
commands which used to accept a--service=<namespace>/<servicename>
parameter now accept--controller=<namespace>:<kind>/<name>
instead, where<kind>
is one ofdeployment
,daemonset
,statefulset
orcronjob
- Tabular outputs from
fluxctl
that used to mentionSERVICE
now mentionCONTROLLER
instead. The format of controller identifiers matches that of the new--controller
argument.