Releases: projectsveltos/healthcheck-manager
Releases · projectsveltos/healthcheck-manager
v0.37.0
🚀 Features:
- Generators: add ability to create resources in the management cluster in response to events. The naming convention for these generated ConfigMaps and Secrets is defined by the
InstantiatedResourceNameFormat
setting. This approach guarantees a predictable name for each generated resource.
🐛 Bug Fixes
v0.36.0
🚀 Features:
- Introduce ability to pause/unpause a cluster: SveltosCluster has a new field called
Schedule
that allows
to specify when to unpause a cluster. A Paused SveltosCluster will receive no update from Sveltos.
This feature so enable having a maintanence window on each managed cluster. Only during this maintanance window, update will be delivered to cluster. For instance, following will have the SveltosCluster set to unpaused only from Friday, 8PM
to Monday 7AM every week:
sveltosCluster.Spec.Schedule = &libsveltosv1beta1.Schedule{
From: "0 20 * * 5", // every friday 8PM
To: "0 7 * * 1", // every monday 7AM
}
- When creating a Profile/ClusterProfile with syncMode set to
ContinuosWithDriftDetection
, adds ability to specify a set
of fields, for certain resources, to be ignored when evaluation configuration drift. More here. For instance following will have Sveltos ignore changes inReplicas
field for any deployment
clusterProfile.Spec.DriftExclusions = []configv1beta1.DriftExclusion{
{
Target: &libsveltosv1beta1.PatchSelector{
Kind: "Deployment",
Group: "apps",
Version: "v1",
},
Paths: []string{"/spec/replicas"},
},
}
- ability to patch sub resources: referenced ConfigMaps/Secrets/Flux Sources with
projectsveltos.io/subresources
set indicates Sveltos to patch sub resources.
🌱 Others
- Bump clusterAPI to v1.8.1
- Bump golang to v1.22.5
v0.35.0
🚀 Features:
- TemplateResourceRefs in EvenTrigger instances can be expressed as templates and instantiated using cluster namespace, name, kind. PR
- Referenced resources in EventTriggers (via PolicyRefs or ValuesFrom) can be expressed as template. PR
🐛 Bug Fixes
- SveltosCluster.Status.Ready is set to true first time sveltos cluster controller successfully connects to it. It is never reset to false otherwise. If an issue occurs connecting, only the Status.FailureMessage is updated. PR
- Fix an issue in event-manager not honouring DeploymentType when creating a ClusterProfile. PR
v0.34.2
🐛 Bug Fixes
- template functions (sprig + all others implemented in Sveltos) are moved to libsveltos and so available for both ClusterProfile/Profile and EventTrigger (PR)
- Content of ConfigMap/Secret referenced in ValuesFrom section of both HelmChart and KustomizeRef is considered by Sveltos a template (and so instantiated) only if the referenced ConfigMap/Secret has the
projectsveltos.io/template
annotation
v0.34.1
🚀 Features:
• EventTrigger spec contains Patches
v0.34.0
🚀 Features:
- customise drift-detection-manager: Sveltos can be passed a ConfigMap containing pre-deployment patches which will be used to customise drift-detection-manager before deploying it. PR
- customize sveltos-agent: Sveltos can be passed a ConfigMap containing pre-deployment patches which will be used to customise sveltos-agent before deploying it. PR
🐛 Bug Fixes
- pre-deployment patches with multiple resources BUG
🌱 Others
- bump clusterapi to v1.7.4
v0.33.0
This release brings exciting new features and essential bug fixes.
🚀 Features:
- API Bump: We've upgraded the APIs to version v1beta1.
- Template Functions: enhance your templates with powerful new functions::
toToml
,fromToml
,toYaml
,fromYaml
, etc. Explore the full list of functions in PR #586 - Fine-tune your add-ons and applications with post-rendering patches: make adjustments to generated manifests before they reach managed clusters. This allows for granular control over your deployments. PR #607
- Dynamic Referenced Resources: Define referenced resources dynamically within templates. Use cluster namespace, name, and type for flexible deployments. See more in PR #610;
- Selective Drift Detection: In
ContinuosWithDriftDetection
mode, you can now exclude specific resources from configuration drift monitoring. This provides more granular control over drift detection. Details in PR 612 - User data can be stored in SveltosCluster: those data can be used among the other things with templating PR 315
🐛 Bug Fixes
v0.32.0
🐛 Bug Fixes
- Set ttlSecondsAfterFinished on Job that register management cluster. If Job is left after registration succeeds, helm upgrade for projectsveltos fails
- Correctly set version for addon-controller and classifier so on upgrade drift-detection-manager and sveltos-agent are upgraded
v0.31.0
🐛 Bug Fixes
- Fix bug: this caused resources to not be properly cleaned up when a ClusterProfile/Profile was deleted or stopped matching a cluster
- Fix but: this caused Sveltos to fail parsing certain YAML stored in secret/configMap or kustomizationRef
- Fix bug: this caused Sveltos to fail deploying content of a KustomizationRef.
- Increased memory limits for sveltos-agent and drift-detection-manager
v0.30.0
🚀 Features:
- Tiers: The concept of tier is introduced to manage deployment priority for resources targeted by multiple configurations. More info on this PR
🐛 Bug Fixes
- Correctly handle ConfigMap/Secret whose data section contains resources that in turns contains "---". Bug
- When profile contains multiple helm charts and deploying one fails, all installed charts are reported. Bug
- A (non default) separate image addon-controller is built that contains git binary. This will allow Kustomize files referencing other remote kustomize resources to be properly built. Bug
🌱 Others
- Advanced clustrerAPI to v1.7.2
- Advanced Helm SDK to v3.15.0
- Advanced kind cluster for functional verification to v1.30.0