Merge branch 'main' into feat-persona-fleet
This commit is contained in:
commit
acb9c44458
|
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
name: Build
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
merge_group:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
cache: yarn
|
||||
|
||||
- name: Build website
|
||||
run: |
|
||||
yarn install --frozen-lockfile
|
||||
yarn build
|
||||
|
||||
|
|
@ -172,7 +172,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
|
|
@ -6,9 +6,15 @@ Enabling/disabling experimental features is done using extra environment variabl
|
|||
|
||||
See also "[Configure Fleet Install Options in Rancher](./ref-configuration#configure-fleet-install-options-in-rancher)".
|
||||
|
||||
## Enabling an experimental feature
|
||||
## Available experimental features
|
||||
|
||||
At the moment we're writing this document, Fleet has OCI storage as an experimental feature.
|
||||
Right now Fleet supports the following experimental features:
|
||||
|
||||
Fleet currently supports the following experimental features:
|
||||
* OCI storage: [`EXPERIMENTAL_OCI_STORAGE`](./oci-storage.md)
|
||||
* HelmOps: [`EXPERIMENTAL_HELM_OPS`](./helm-ops.md)
|
||||
|
||||
## Enabling an experimental feature
|
||||
|
||||
### Enabling when installing Fleet stand-alone
|
||||
|
||||
|
|
@ -31,9 +37,3 @@ The parameters are the same, but you have to add the `fleet.` prefix.
|
|||
--set-string fleet.extraEnv[0].name=EXPERIMENTAL_OCI_STORAGE \
|
||||
--set-string fleet.extraEnv[0].value=true \
|
||||
```
|
||||
|
||||
## Available experimental features
|
||||
|
||||
Right now Fleet supports the following experimental features:
|
||||
|
||||
* [`EXPERIMENTAL_OCI_STORAGE`](./oci-storage.md)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,49 @@
|
|||
# HelmOps
|
||||
|
||||
HelmOps is a simplified way of creating bundles by directly pointing to a Helm repository or to an OCI registry, without
|
||||
needing to set up a git repository.
|
||||
|
||||
It is currently an experimental feature.
|
||||
|
||||
## Summary
|
||||
|
||||
When a `GitRepo` resource is created, Fleet monitors a git repository, creating one or more bundles from paths specified
|
||||
in the `GitRepo`, following a GitOps, or git-driven, approach to continuous deployment. This requires a git repository
|
||||
to be available, possibly containing `fleet.yaml` or other configuration files.
|
||||
|
||||
HelmOps, on the other hand, enables a `HelmOp` resource to be created, with similar options to those available in a
|
||||
`GitRepo` resource and/or in a `fleet.yaml` file for targeting bundles to clusters, configuring chart values, etc.
|
||||
|
||||
The Fleet HelmOps controller will create lightweight bundles, pointing to referenced Helm charts, without downloading
|
||||
them.
|
||||
However, it will resolve chart versions, for instance if a wildcard or empty version is specified, to ensure that the
|
||||
same, and latest, version of a chart is deployed to all targeted downstream clusters.
|
||||
|
||||
When using this feature, Helm charts are downloaded from downstream clusters, which must therefore have access to Helm
|
||||
registries.
|
||||
|
||||
## Creating a HelmOp resource
|
||||
|
||||
A `HelmOp` resource can be created as follows to start deploying Helm charts directly:
|
||||
|
||||
```yaml
|
||||
apiVersion: fleet.cattle.io/v1alpha1
|
||||
kind: HelmOp
|
||||
metadata:
|
||||
name: my-awesome-helmop
|
||||
namespace: "fleet-local"
|
||||
spec:
|
||||
helm:
|
||||
releaseName: my-fantastic-chart
|
||||
repo: https://foo.bar/baz
|
||||
chart: fantastic-chart
|
||||
version: ''
|
||||
namespace: that-amazing-namespace
|
||||
helmSecretName: my-top-secret-helm-access
|
||||
insecureSkipTLSVerify: false
|
||||
```
|
||||
|
||||
For private charts, this requires a Helm access secret (referenced by field `helmSecretName`) to be created in the same
|
||||
namespace as the `HelmOp` resource.
|
||||
The Fleet HelmOps controller will take care of copying that secret to targeted downstream clusters, enabling the Fleet
|
||||
agent to access the registry.
|
||||
|
|
@ -28,3 +28,11 @@ Fleet publishes prometheus metrics. They can be retrieved from these services:
|
|||
* `monitoring-gitjob.cattle-fleet-system.svc.cluster.local:8081/metrics`
|
||||
|
||||
The [collection of exported metrics](https://book.kubebuilder.io/reference/metrics-reference) includes all the information from controller-runtime, like the number of reconciled resources, the number of errors, and the time it took to reconcile.
|
||||
|
||||
When the Fleet is used by Rancher and the `rancher-monitoring` chart is
|
||||
installed, Prometheus is automatically configured to scrape the Fleet metrics.
|
||||
|
||||
**_NOTE_** Depending on how many resources are handled by Fleet, metrics may
|
||||
cause performance issues. If you have a lot of resources, you may want to
|
||||
disable metrics. You can do this by setting `metrics.enabled` in the
|
||||
`values.yaml` file to `false` when installing Fleet.
|
||||
|
|
|
|||
|
|
@ -59,5 +59,5 @@ kubectl delete ns -l "fleet.cattle.io/managed=true"
|
|||
Fleet in Rancher cannot be uninstalled, without uninstalling Rancher. However, the GitOps feature can be disabled.
|
||||
When disabled, the gitjob deployment is no longer deployed into the Rancher server’s local cluster, and continuous-delivery is not shown in the Rancher UI.
|
||||
|
||||
More information can be found in the Rancher docs, e.g. https://documentation.suse.com/cloudnative/rancher-manager/latest/en/rancher-admin/experimental-features/continuous-delivery.html
|
||||
For more information, refer to [Continuous Delivery in Rancher](https://documentation.suse.com/cloudnative/rancher-manager/latest/en/rancher-admin/experimental-features/continuous-delivery.html)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,30 @@
|
|||
changelogs:
|
||||
- kind: github
|
||||
dir: versioned_docs/version-0.12/changelogs
|
||||
formats:
|
||||
- extension: markdown
|
||||
frontmatters: |
|
||||
---
|
||||
title: "{{ .Changelog.Name }}"
|
||||
date: "{{ .Changelog.PublishedAt }}"
|
||||
---
|
||||
indexfilename: index
|
||||
indexfrontmatters: |
|
||||
---
|
||||
title: "0.12 Changelogs"
|
||||
---
|
||||
indexfiletemplate: |
|
||||
{{ .FrontMatters }}
|
||||
{{ range $pos, $release := .Changelogs }}
|
||||
* [{{ $release.Name}}](changelogs/{{ $release.Tag }}.md) {{ if (eq $pos 0) }}(latest){{ end}}
|
||||
{{ end }}
|
||||
spec:
|
||||
owner: rancher
|
||||
repository: fleet
|
||||
versionfilter:
|
||||
kind: semver
|
||||
pattern: "~0.12"
|
||||
|
||||
- kind: github
|
||||
dir: versioned_docs/version-0.11/changelogs
|
||||
formats:
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ module.exports = {
|
|||
items:[
|
||||
'enableexperimental',
|
||||
'oci-storage',
|
||||
'helm-ops',
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
|
|||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.10.10"
|
||||
date: "2025-03-04 14:05:57 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-03-04 14:05:57 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Bump kubernetes to v1.30.10 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2893675347" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3414" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3414/hovercard" href="https://github.com/rancher/fleet/pull/3414">#3414</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.10.9...v0.10.10"><tt>v0.10.9...v0.10.10</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.10.10.tgz](https://github.com/rancher/fleet/releases/download/v0.10.10/fleet-0.10.10.tgz)
|
||||
|
||||
* [fleet-agent-0.10.10.tgz](https://github.com/rancher/fleet/releases/download/v0.10.10/fleet-agent-0.10.10.tgz)
|
||||
|
||||
* [fleet-crd-0.10.10.tgz](https://github.com/rancher/fleet/releases/download/v0.10.10/fleet-crd-0.10.10.tgz)
|
||||
|
||||
* [fleet_0.10.10_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.10/fleet_0.10.10_checksums.txt)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.10/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.10/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.10/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.10/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.10/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.10/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.10/fleet-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.10/fleet-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.10)*
|
||||
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
title: "v0.10.11"
|
||||
date: "2025-04-15 16:19:35 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-04-15 16:19:35 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Support strict host key checks by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2982463656" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3526" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3526/hovercard" href="https://github.com/rancher/fleet/pull/3526">#3526</a></li>
|
||||
<li>Add Lifecycle Secrets by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2982675941" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3530" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3530/hovercard" href="https://github.com/rancher/fleet/pull/3530">#3530</a></li>
|
||||
<li>Prevent panic when fetching latest commit by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2986059228" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3541" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3541/hovercard" href="https://github.com/rancher/fleet/pull/3541">#3541</a></li>
|
||||
<li>Bump Go modules by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2971610997" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3507" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3507/hovercard" href="https://github.com/rancher/fleet/pull/3507">#3507</a></li>
|
||||
<li>Bump Go toolchain version to 1.23.8 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2988056030" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3546" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3546/hovercard" href="https://github.com/rancher/fleet/pull/3546">#3546</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.10.10...v0.10.11"><tt>v0.10.10...v0.10.11</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-crd-0.10.11.tgz](https://github.com/rancher/fleet/releases/download/v0.10.11/fleet-crd-0.10.11.tgz)
|
||||
|
||||
* [fleet-agent-0.10.11.tgz](https://github.com/rancher/fleet/releases/download/v0.10.11/fleet-agent-0.10.11.tgz)
|
||||
|
||||
* [fleet-0.10.11.tgz](https://github.com/rancher/fleet/releases/download/v0.10.11/fleet-0.10.11.tgz)
|
||||
|
||||
* [fleet_0.10.11_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.11/fleet_0.10.11_checksums.txt)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.11/fleet-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.11/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.11/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.11/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.11/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.11/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.11/fleet-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.11/fleetagent-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.11)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.10.12"
|
||||
date: "2025-04-22 15:00:15 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-04-22 15:00:15 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Avoids returning nil map when options.Helm is used by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3011225989" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3573" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3573/hovercard" href="https://github.com/rancher/fleet/pull/3573">#3573</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.10.11...v0.10.12"><tt>v0.10.11...v0.10.12</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.10.12.tgz](https://github.com/rancher/fleet/releases/download/v0.10.12/fleet-0.10.12.tgz)
|
||||
|
||||
* [fleet-crd-0.10.12.tgz](https://github.com/rancher/fleet/releases/download/v0.10.12/fleet-crd-0.10.12.tgz)
|
||||
|
||||
* [fleet-agent-0.10.12.tgz](https://github.com/rancher/fleet/releases/download/v0.10.12/fleet-agent-0.10.12.tgz)
|
||||
|
||||
* [fleet_0.10.12_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.12/fleet_0.10.12_checksums.txt)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.12/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.12/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.12/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.12/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.12/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.12/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.12/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.12/fleetagent-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.12)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.10.13"
|
||||
date: "2025-05-16 09:09:38 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-05-16 09:09:38 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Update gomod-k8sio-dependencies (release/v0.10) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3045769698" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3659" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3659/hovercard" href="https://github.com/rancher/fleet/pull/3659">#3659</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.10.12...v0.10.13"><tt>v0.10.12...v0.10.13</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.10.13.tgz](https://github.com/rancher/fleet/releases/download/v0.10.13/fleet-agent-0.10.13.tgz)
|
||||
|
||||
* [fleet-0.10.13.tgz](https://github.com/rancher/fleet/releases/download/v0.10.13/fleet-0.10.13.tgz)
|
||||
|
||||
* [fleet-crd-0.10.13.tgz](https://github.com/rancher/fleet/releases/download/v0.10.13/fleet-crd-0.10.13.tgz)
|
||||
|
||||
* [fleet_0.10.13_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.13/fleet_0.10.13_checksums.txt)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.13/fleet-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.13/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.13/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.13/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.13/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.13/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.13/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.13/fleetcontroller-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.13)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.10.7"
|
||||
date: "2024-12-11 12:15:23 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2024-12-11 12:15:23 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Disable jobs cleanup cronjob if gitOps is disabled by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2720709934" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3125" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3125/hovercard" href="https://github.com/rancher/fleet/pull/3125">#3125</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.10.6...v0.10.7"><tt>v0.10.6...v0.10.7</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.10.7.tgz](https://github.com/rancher/fleet/releases/download/v0.10.7/fleet-0.10.7.tgz)
|
||||
|
||||
* [fleet-crd-0.10.7.tgz](https://github.com/rancher/fleet/releases/download/v0.10.7/fleet-crd-0.10.7.tgz)
|
||||
|
||||
* [fleet-agent-0.10.7.tgz](https://github.com/rancher/fleet/releases/download/v0.10.7/fleet-agent-0.10.7.tgz)
|
||||
|
||||
* [fleet_0.10.7_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.7/fleet_0.10.7_checksums.txt)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.7/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.7/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.7/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.7/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.7/fleet-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.7/fleet-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.7/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.7/fleetagent-windows-amd64.exe)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.7)*
|
||||
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
title: "v0.10.8"
|
||||
date: "2025-01-17 16:30:16 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-01-17 16:30:16 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Calculate Clusters resourceCount from BundleDeployments instead of GitRepos by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2735824418" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3146" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3146/hovercard" href="https://github.com/rancher/fleet/pull/3146">#3146</a></li>
|
||||
<li>Adds logs for new commit or error checking for the latest by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2774669593" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3185" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3185/hovercard" href="https://github.com/rancher/fleet/pull/3185">#3185</a></li>
|
||||
<li>Add template errors to bundle and gitrepo status by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2778058964" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3196" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3196/hovercard" href="https://github.com/rancher/fleet/pull/3196">#3196</a></li>
|
||||
<li>Update golang.org/x/net to v0.33.0 and golang.org/x/crypto to v0.31.0 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2766126478" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3174" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3174/hovercard" href="https://github.com/rancher/fleet/pull/3174">#3174</a></li>
|
||||
<li>Update go-git to v5.13.1 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2780424147" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3204" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3204/hovercard" href="https://github.com/rancher/fleet/pull/3204">#3204</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.10.7...v0.10.8"><tt>v0.10.7...v0.10.8</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.10.8.tgz](https://github.com/rancher/fleet/releases/download/v0.10.8/fleet-agent-0.10.8.tgz)
|
||||
|
||||
* [fleet-crd-0.10.8.tgz](https://github.com/rancher/fleet/releases/download/v0.10.8/fleet-crd-0.10.8.tgz)
|
||||
|
||||
* [fleet-0.10.8.tgz](https://github.com/rancher/fleet/releases/download/v0.10.8/fleet-0.10.8.tgz)
|
||||
|
||||
* [fleet_0.10.8_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.8/fleet_0.10.8_checksums.txt)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.8/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.8/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.8/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.8/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.8/fleet-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.8/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.8/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.8/fleetagent-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.8)*
|
||||
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
---
|
||||
title: "v0.10.9"
|
||||
date: "2025-02-19 17:08:31 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-02-19 17:08:31 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Always returns result with RequeueAfter set by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2804804224" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3239" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3239/hovercard" href="https://github.com/rancher/fleet/pull/3239">#3239</a></li>
|
||||
<li>Prevent empty Patch updates by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2809743314" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3254" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3254/hovercard" href="https://github.com/rancher/fleet/pull/3254">#3254</a></li>
|
||||
<li>Bump Go to 1.23.6 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2850233904" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3339" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3339/hovercard" href="https://github.com/rancher/fleet/pull/3339">#3339</a></li>
|
||||
<li>Add affected cluster to template error message by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2853051486" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3346" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3346/hovercard" href="https://github.com/rancher/fleet/pull/3346">#3346</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.10.8...v0.10.9"><tt>v0.10.8...v0.10.9</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-crd-0.10.9.tgz](https://github.com/rancher/fleet/releases/download/v0.10.9/fleet-crd-0.10.9.tgz)
|
||||
|
||||
* [fleet-0.10.9.tgz](https://github.com/rancher/fleet/releases/download/v0.10.9/fleet-0.10.9.tgz)
|
||||
|
||||
* [fleet-agent-0.10.9.tgz](https://github.com/rancher/fleet/releases/download/v0.10.9/fleet-agent-0.10.9.tgz)
|
||||
|
||||
* [fleet_0.10.9_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.9/fleet_0.10.9_checksums.txt)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.9/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.9/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.9/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.9/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.9/fleet-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.9/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.9/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.9/fleetagent-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.9)*
|
||||
|
||||
|
|
@ -3,7 +3,21 @@ title: "0.10 Changelogs"
|
|||
---
|
||||
|
||||
|
||||
* [v0.10.6](changelogs/v0.10.6.md) (latest)
|
||||
* [v0.10.13](changelogs/v0.10.13.md) (latest)
|
||||
|
||||
* [v0.10.12](changelogs/v0.10.12.md)
|
||||
|
||||
* [v0.10.11](changelogs/v0.10.11.md)
|
||||
|
||||
* [v0.10.10](changelogs/v0.10.10.md)
|
||||
|
||||
* [v0.10.9](changelogs/v0.10.9.md)
|
||||
|
||||
* [v0.10.8](changelogs/v0.10.8.md)
|
||||
|
||||
* [v0.10.7](changelogs/v0.10.7.md)
|
||||
|
||||
* [v0.10.6](changelogs/v0.10.6.md)
|
||||
|
||||
* [v0.10.4](changelogs/v0.10.4.md)
|
||||
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,54 @@
|
|||
---
|
||||
title: "v0.11.2"
|
||||
date: "2024-12-12 15:16:49 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2024-12-12 15:16:49 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Deduplicate status messages (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2627301320" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3042" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3042/hovercard" href="https://github.com/rancher/fleet/pull/3042">#3042</a>) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2715422023" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3119" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3119/hovercard" href="https://github.com/rancher/fleet/pull/3119">#3119</a></li>
|
||||
<li>Disable jobs cleanup cronjob if gitOps is disabled by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2727337922" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3129" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3129/hovercard" href="https://github.com/rancher/fleet/pull/3129">#3129</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.1...v0.11.2"><tt>v0.11.1...v0.11.2</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.11.2.tgz](https://github.com/rancher/fleet/releases/download/v0.11.2/fleet-0.11.2.tgz)
|
||||
|
||||
* [fleet-crd-0.11.2.tgz](https://github.com/rancher/fleet/releases/download/v0.11.2/fleet-crd-0.11.2.tgz)
|
||||
|
||||
* [fleet-agent-0.11.2.tgz](https://github.com/rancher/fleet/releases/download/v0.11.2/fleet-agent-0.11.2.tgz)
|
||||
|
||||
* [fleet_0.11.2_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.2/fleet_0.11.2_checksums.txt)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.2/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.2/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.2/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.2/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.2/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.2/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.2/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.2/fleet-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.2)*
|
||||
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
title: "v0.11.3"
|
||||
date: "2025-01-17 16:03:21 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-01-17 16:03:21 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Calculate Clusters resourceCount from BundleDeployments instead of GitRepos by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2735809651" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3145" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3145/hovercard" href="https://github.com/rancher/fleet/pull/3145">#3145</a></li>
|
||||
<li>Make agent worker counts configurable by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2750071295" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3162" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3162/hovercard" href="https://github.com/rancher/fleet/pull/3162">#3162</a></li>
|
||||
<li>Adds logs for new commit or error checking for the latest by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2774663136" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3184" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3184/hovercard" href="https://github.com/rancher/fleet/pull/3184">#3184</a></li>
|
||||
<li>Backport of Add jitter and resync to polling by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2778143419" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3198" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3198/hovercard" href="https://github.com/rancher/fleet/pull/3198">#3198</a></li>
|
||||
<li>Add template errors to bundle and gitrepo status by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2777691103" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3193" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3193/hovercard" href="https://github.com/rancher/fleet/pull/3193">#3193</a></li>
|
||||
<li>Bump golang.org/x/crypto to v0.31.0 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2747233586" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3154" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3154/hovercard" href="https://github.com/rancher/fleet/pull/3154">#3154</a></li>
|
||||
<li>Update golang.org/x/net to v0.33.0 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2766121041" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3173" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3173/hovercard" href="https://github.com/rancher/fleet/pull/3173">#3173</a></li>
|
||||
<li>Update go-git to v5.13.1 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2780429828" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3206" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3206/hovercard" href="https://github.com/rancher/fleet/pull/3206">#3206</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.2...v0.11.3"><tt>v0.11.2...v0.11.3</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.11.3.tgz](https://github.com/rancher/fleet/releases/download/v0.11.3/fleet-agent-0.11.3.tgz)
|
||||
|
||||
* [fleet-0.11.3.tgz](https://github.com/rancher/fleet/releases/download/v0.11.3/fleet-0.11.3.tgz)
|
||||
|
||||
* [fleet-crd-0.11.3.tgz](https://github.com/rancher/fleet/releases/download/v0.11.3/fleet-crd-0.11.3.tgz)
|
||||
|
||||
* [fleet_0.11.3_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.3/fleet_0.11.3_checksums.txt)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.3/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.3/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.3/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.3/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.3/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.3/fleet-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.3/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.3/fleetagent-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.3)*
|
||||
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
---
|
||||
title: "v0.11.4"
|
||||
date: "2025-02-19 16:56:42 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-02-19 16:56:42 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Prevent empty Patch updates by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2809734274" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3251" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3251/hovercard" href="https://github.com/rancher/fleet/pull/3251">#3251</a></li>
|
||||
<li>Always return result with RequeueAfter set by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2812366161" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3257" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3257/hovercard" href="https://github.com/rancher/fleet/pull/3257">#3257</a></li>
|
||||
<li>Propagate tolerations from values to cleanup jobs by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2820770466" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3282" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3282/hovercard" href="https://github.com/rancher/fleet/pull/3282">#3282</a></li>
|
||||
<li>Change ImageScanCommit in GitRepo spec to a pointer by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2835701969" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3308" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3308/hovercard" href="https://github.com/rancher/fleet/pull/3308">#3308</a></li>
|
||||
<li>Add affected cluster to template error message by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2838324220" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3315" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3315/hovercard" href="https://github.com/rancher/fleet/pull/3315">#3315</a></li>
|
||||
<li>Bump Go to 1.23.6 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2850243054" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3340" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3340/hovercard" href="https://github.com/rancher/fleet/pull/3340">#3340</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.3...v0.11.4"><tt>v0.11.3...v0.11.4</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.11.4.tgz](https://github.com/rancher/fleet/releases/download/v0.11.4/fleet-0.11.4.tgz)
|
||||
|
||||
* [fleet-crd-0.11.4.tgz](https://github.com/rancher/fleet/releases/download/v0.11.4/fleet-crd-0.11.4.tgz)
|
||||
|
||||
* [fleet-agent-0.11.4.tgz](https://github.com/rancher/fleet/releases/download/v0.11.4/fleet-agent-0.11.4.tgz)
|
||||
|
||||
* [fleet_0.11.4_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.4/fleet_0.11.4_checksums.txt)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.4/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.4/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.4/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.4/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.4/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.4/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.4/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.4/fleetcontroller-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.4)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.11.5"
|
||||
date: "2025-03-04 15:28:53 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-03-04 15:28:53 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Update Kubernetes dependency to v1.31.6 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2893703865" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3415" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3415/hovercard" href="https://github.com/rancher/fleet/pull/3415">#3415</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.4...v0.11.5"><tt>v0.11.4...v0.11.5</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.11.5.tgz](https://github.com/rancher/fleet/releases/download/v0.11.5/fleet-0.11.5.tgz)
|
||||
|
||||
* [fleet-agent-0.11.5.tgz](https://github.com/rancher/fleet/releases/download/v0.11.5/fleet-agent-0.11.5.tgz)
|
||||
|
||||
* [fleet-crd-0.11.5.tgz](https://github.com/rancher/fleet/releases/download/v0.11.5/fleet-crd-0.11.5.tgz)
|
||||
|
||||
* [fleet_0.11.5_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.5/fleet_0.11.5_checksums.txt)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.5/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.5/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.5/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.5/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.5/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.5/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.5/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.5/fleetagent-windows-amd64.exe)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.5)*
|
||||
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
---
|
||||
title: "v0.11.6"
|
||||
date: "2025-04-17 08:11:53 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-04-17 08:11:53 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Ensure same bundle is selected for non-ready status by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2965837215" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3496" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3496/hovercard" href="https://github.com/rancher/fleet/pull/3496">#3496</a></li>
|
||||
<li>Support strict host key checks by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2982461739" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3525" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3525/hovercard" href="https://github.com/rancher/fleet/pull/3525">#3525</a></li>
|
||||
<li>Add Lifecycle Secrets by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2982672950" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3529" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3529/hovercard" href="https://github.com/rancher/fleet/pull/3529">#3529</a></li>
|
||||
<li>Prevent panic when fetching latest commit by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2986053904" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3540" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3540/hovercard" href="https://github.com/rancher/fleet/pull/3540">#3540</a></li>
|
||||
<li>Prevent breaking change in PerClusterState on rollback by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2988187876" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3549" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3549/hovercard" href="https://github.com/rancher/fleet/pull/3549">#3549</a></li>
|
||||
<li>Bump Go toolchain version to 1.23.8 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2988051650" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3545" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3545/hovercard" href="https://github.com/rancher/fleet/pull/3545">#3545</a></li>
|
||||
<li>Bump Go modules by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2971597920" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3506" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3506/hovercard" href="https://github.com/rancher/fleet/pull/3506">#3506</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.5...v0.11.6"><tt>v0.11.5...v0.11.6</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.11.6.tgz](https://github.com/rancher/fleet/releases/download/v0.11.6/fleet-agent-0.11.6.tgz)
|
||||
|
||||
* [fleet-crd-0.11.6.tgz](https://github.com/rancher/fleet/releases/download/v0.11.6/fleet-crd-0.11.6.tgz)
|
||||
|
||||
* [fleet-0.11.6.tgz](https://github.com/rancher/fleet/releases/download/v0.11.6/fleet-0.11.6.tgz)
|
||||
|
||||
* [fleet_0.11.6_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.6/fleet_0.11.6_checksums.txt)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.6/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.6/fleet-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.6/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.6/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.6/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.6/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.6/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.6/fleetcontroller-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.6)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.11.7"
|
||||
date: "2025-04-22 14:44:59 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-04-22 14:44:59 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Avoids returning nil map when options.Helm is used by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3011219032" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3572" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3572/hovercard" href="https://github.com/rancher/fleet/pull/3572">#3572</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.6...v0.11.7"><tt>v0.11.6...v0.11.7</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.11.7.tgz](https://github.com/rancher/fleet/releases/download/v0.11.7/fleet-agent-0.11.7.tgz)
|
||||
|
||||
* [fleet-crd-0.11.7.tgz](https://github.com/rancher/fleet/releases/download/v0.11.7/fleet-crd-0.11.7.tgz)
|
||||
|
||||
* [fleet-0.11.7.tgz](https://github.com/rancher/fleet/releases/download/v0.11.7/fleet-0.11.7.tgz)
|
||||
|
||||
* [fleet_0.11.7_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.7/fleet_0.11.7_checksums.txt)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.7/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.7/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.7/fleet-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.7/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.7/fleet-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.7/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.7/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.7/fleetcontroller-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.7)*
|
||||
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
---
|
||||
title: "v0.11.8"
|
||||
date: "2025-05-16 08:32:50 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-05-16 08:32:50 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Stable BundleDeployment modified/nonReady status by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2985154773" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3533" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3533/hovercard" href="https://github.com/rancher/fleet/pull/3533">#3533</a></li>
|
||||
<li>Prevent empty patches drift reconciler by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3014292770" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3578" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3578/hovercard" href="https://github.com/rancher/fleet/pull/3578">#3578</a></li>
|
||||
<li>Calls semaphore Acquire inside go routine by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3039470937" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3634" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3634/hovercard" href="https://github.com/rancher/fleet/pull/3634">#3634</a></li>
|
||||
<li>Remove serviceaccount migration by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3031590227" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3603" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3603/hovercard" href="https://github.com/rancher/fleet/pull/3603">#3603</a></li>
|
||||
<li>Update dependencies: golang.org/x/net to v0.38.0 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3057126267" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3676" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3676/hovercard" href="https://github.com/rancher/fleet/pull/3676">#3676</a></li>
|
||||
<li>Update gomod-k8sio-dependencies (release/v0.11) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3045525824" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3657" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3657/hovercard" href="https://github.com/rancher/fleet/pull/3657">#3657</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.7...v0.11.8"><tt>v0.11.7...v0.11.8</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.11.8.tgz](https://github.com/rancher/fleet/releases/download/v0.11.8/fleet-0.11.8.tgz)
|
||||
|
||||
* [fleet-crd-0.11.8.tgz](https://github.com/rancher/fleet/releases/download/v0.11.8/fleet-crd-0.11.8.tgz)
|
||||
|
||||
* [fleet-agent-0.11.8.tgz](https://github.com/rancher/fleet/releases/download/v0.11.8/fleet-agent-0.11.8.tgz)
|
||||
|
||||
* [fleet_0.11.8_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.8/fleet_0.11.8_checksums.txt)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.8/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.8/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.8/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.8/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.8/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.8/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.8/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.8/fleet-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.8)*
|
||||
|
||||
|
|
@ -3,5 +3,19 @@ title: "0.11 Changelogs"
|
|||
---
|
||||
|
||||
|
||||
* [v0.11.1](changelogs/v0.11.1.md) (latest)
|
||||
* [v0.11.8](changelogs/v0.11.8.md) (latest)
|
||||
|
||||
* [v0.11.7](changelogs/v0.11.7.md)
|
||||
|
||||
* [v0.11.6](changelogs/v0.11.6.md)
|
||||
|
||||
* [v0.11.5](changelogs/v0.11.5.md)
|
||||
|
||||
* [v0.11.4](changelogs/v0.11.4.md)
|
||||
|
||||
* [v0.11.3](changelogs/v0.11.3.md)
|
||||
|
||||
* [v0.11.2](changelogs/v0.11.2.md)
|
||||
|
||||
* [v0.11.1](changelogs/v0.11.1.md)
|
||||
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
title: "Next 🚧"
|
||||
---
|
||||
|
||||
We are still working on the next release.
|
||||
|
|
@ -0,0 +1,126 @@
|
|||
---
|
||||
title: "v0.12.0"
|
||||
date: "2025-03-24 14:21:20 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-03-24 14:21:20 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>Notes</h2>
|
||||
<p>This release adds a new HelmOps controller that allows you to manage Helm charts using the HelmApp CRD. This controller is experimental and is not enabled by default.</p>
|
||||
<p>Several log messages have been improved to provide more context and information about the errors that occurred. The conditions in the status fields of resources are used by the UI to display warnings and we are continuously improving them.</p>
|
||||
<p>When a bundle fails to deploy to a cluster, e.g. because the cluster is missing a required label that is to be used as a value, the bundle will now show the affected cluster in the error message. This makes it easier to identify which clusters are affected by the error.</p>
|
||||
<p>The agent has been switched from a StatefulSet to a Deployment. This change allows the agent to scale horizontally and is a step towards making the agent more resilient to failures. The agent now exposes the number of worker goroutines it is running, which can be used to tune the agent's performance.</p>
|
||||
<h2>Additions</h2>
|
||||
<ul>
|
||||
<li>Fall back to Rancher-configured CA bundles by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2803732060" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3233" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3233/hovercard" href="https://github.com/rancher/fleet/pull/3233">#3233</a></li>
|
||||
<li>Add experimental HelmOps controller. by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2683999754" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3092" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3092/hovercard" href="https://github.com/rancher/fleet/pull/3092">#3092</a></li>
|
||||
<li>Add benchmark suite by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2717091379" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3120" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3120/hovercard" href="https://github.com/rancher/fleet/pull/3120">#3120</a></li>
|
||||
<li>Add <code>templateValues</code> to HelmApp, Bundle, etc by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Danil-Grigorev/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Danil-Grigorev">@Danil-Grigorev</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2815606500" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3267" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3267/hovercard" href="https://github.com/rancher/fleet/pull/3267">#3267</a></li>
|
||||
<li>Add jitter and resync to polling by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2738790306" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3151" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3151/hovercard" href="https://github.com/rancher/fleet/pull/3151">#3151</a></li>
|
||||
<li>Adds tolerations from fleet-controller's deployment to local agent and git job by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2857236235" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3362" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3362/hovercard" href="https://github.com/rancher/fleet/pull/3362">#3362</a></li>
|
||||
<li>Propagate tolerations from values to cleanup jobs by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2820763717" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3281" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3281/hovercard" href="https://github.com/rancher/fleet/pull/3281">#3281</a></li>
|
||||
<li>Switch agent from StatefulSet to Deployment by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2858102079" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3364" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3364/hovercard" href="https://github.com/rancher/fleet/pull/3364">#3364</a></li>
|
||||
<li>Expose agent worker counts in fleet chart by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2742884030" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3152" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3152/hovercard" href="https://github.com/rancher/fleet/pull/3152">#3152</a></li>
|
||||
<li>Make max concurrent reconciles configurable for agent and remaining controllers by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2690823482" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3094" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3094/hovercard" href="https://github.com/rancher/fleet/pull/3094">#3094</a></li>
|
||||
<li>Use a delaying enqueue handler for drift detection by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2884288534" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3401" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3401/hovercard" href="https://github.com/rancher/fleet/pull/3401">#3401</a></li>
|
||||
<li>Support ignoring resources in bundle diffs by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2897797423" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3425" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3425/hovercard" href="https://github.com/rancher/fleet/pull/3425">#3425</a></li>
|
||||
<li>Fleet apply retries bundle creation on conflicts by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2886936506" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3407" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3407/hovercard" href="https://github.com/rancher/fleet/pull/3407">#3407</a></li>
|
||||
</ul>
|
||||
<h3>Logging and Status Conditions:</h3>
|
||||
<ul>
|
||||
<li>Add extra error info when downloading remote charts by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2859917736" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3368" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3368/hovercard" href="https://github.com/rancher/fleet/pull/3368">#3368</a></li>
|
||||
<li>Adds message context to fleet apply errors by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2868923325" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3385" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3385/hovercard" href="https://github.com/rancher/fleet/pull/3385">#3385</a></li>
|
||||
<li>Prefix log fields for resource conflicts by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2807065207" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3242" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3242/hovercard" href="https://github.com/rancher/fleet/pull/3242">#3242</a></li>
|
||||
<li>Add affected cluster to template error message by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2820637605" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3278" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3278/hovercard" href="https://github.com/rancher/fleet/pull/3278">#3278</a></li>
|
||||
<li>Add template errors to bundle and GitRepo status by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2714650421" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3114" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3114/hovercard" href="https://github.com/rancher/fleet/pull/3114">#3114</a></li>
|
||||
<li>Adds logs for new commit or error checking for the latest by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2773079726" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3182" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3182/hovercard" href="https://github.com/rancher/fleet/pull/3182">#3182</a></li>
|
||||
<li>Update gitcloner/fetcher error messages for SCP/SSH GitRepo URLs by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2902957164" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3430" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3430/hovercard" href="https://github.com/rancher/fleet/pull/3430">#3430</a></li>
|
||||
</ul>
|
||||
<h3>Resources in Status Fields:</h3>
|
||||
<ul>
|
||||
<li>Calculate Clusters resourceCount from BundleDeployments instead of GitRepos by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2698144346" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3102" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3102/hovercard" href="https://github.com/rancher/fleet/pull/3102">#3102</a></li>
|
||||
<li>Add resourceCounts and incomplete state to BundleDeploymentStatus by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2780399645" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3203" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3203/hovercard" href="https://github.com/rancher/fleet/pull/3203">#3203</a></li>
|
||||
<li>Add PerClusterResourceCounts to GitRepo status by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2780739993" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3209" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3209/hovercard" href="https://github.com/rancher/fleet/pull/3209">#3209</a></li>
|
||||
<li>Rework how resources are calculated by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2804771569" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3238" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3238/hovercard" href="https://github.com/rancher/fleet/pull/3238">#3238</a></li>
|
||||
<li>Simplify PerClusterState and include all states and cluster IDs by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2821298089" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3287" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3287/hovercard" href="https://github.com/rancher/fleet/pull/3287">#3287</a></li>
|
||||
</ul>
|
||||
<h2>Bugfixes</h2>
|
||||
<ul>
|
||||
<li>Deduplicate status messages by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2627301320" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3042" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3042/hovercard" href="https://github.com/rancher/fleet/pull/3042">#3042</a></li>
|
||||
<li>Remove reconcile error from retry by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2632466496" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3045" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3045/hovercard" href="https://github.com/rancher/fleet/pull/3045">#3045</a></li>
|
||||
<li>Fix namespace target customization support with no defaults by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2637994085" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3052" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3052/hovercard" href="https://github.com/rancher/fleet/pull/3052">#3052</a></li>
|
||||
<li>Apply defaults from gitrepo restrictions by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2641619486" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3056" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3056/hovercard" href="https://github.com/rancher/fleet/pull/3056">#3056</a></li>
|
||||
<li>Disable jobs cleanup cronjob if GitOps is disabled by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2727346689" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3130" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3130/hovercard" href="https://github.com/rancher/fleet/pull/3130">#3130</a></li>
|
||||
<li>Fix fleet-agent chart validation by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2738610173" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3150" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3150/hovercard" href="https://github.com/rancher/fleet/pull/3150">#3150</a></li>
|
||||
<li>Prevent empty Patch updates by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2807524377" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3245" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3245/hovercard" href="https://github.com/rancher/fleet/pull/3245">#3245</a></li>
|
||||
<li>Change ImageScanCommit in GitRepo spec to a pointer by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2833534019" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3302" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3302/hovercard" href="https://github.com/rancher/fleet/pull/3302">#3302</a></li>
|
||||
<li>Always returns result with RequeueAfter set by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2835509011" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3307" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3307/hovercard" href="https://github.com/rancher/fleet/pull/3307">#3307</a></li>
|
||||
<li>Update Git job permissions when GitRepo changes by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2835101700" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3305" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3305/hovercard" href="https://github.com/rancher/fleet/pull/3305">#3305</a></li>
|
||||
<li>Retry reconcile when we cannot add finalizer to content resource by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2835867990" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3310" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3310/hovercard" href="https://github.com/rancher/fleet/pull/3310">#3310</a></li>
|
||||
<li>Fix default state for GitRepo resources by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2845930078" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3329" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3329/hovercard" href="https://github.com/rancher/fleet/pull/3329">#3329</a></li>
|
||||
<li>Using a webhook sets the intervall to one hour again by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2848220286" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3337" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3337/hovercard" href="https://github.com/rancher/fleet/pull/3337">#3337</a></li>
|
||||
<li>Bundlereader needs to update OCI storage bundles, too by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2874748835" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3389" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3389/hovercard" href="https://github.com/rancher/fleet/pull/3389">#3389</a></li>
|
||||
<li>Fix BundleDeployment resource counts when a resource is missing by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2890958392" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3408" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3408/hovercard" href="https://github.com/rancher/fleet/pull/3408">#3408</a></li>
|
||||
<li>Delete both, statefulset and deployment on agent update by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2916639648" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3449" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3449/hovercard" href="https://github.com/rancher/fleet/pull/3449">#3449</a></li>
|
||||
</ul>
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Bump Copyright statements to 2025 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2767126109" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3176" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3176/hovercard" href="https://github.com/rancher/fleet/pull/3176">#3176</a></li>
|
||||
<li>Remove logrus message for finalizer handling by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2807209487" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3243" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3243/hovercard" href="https://github.com/rancher/fleet/pull/3243">#3243</a></li>
|
||||
<li>Upload Docker images to Prime registry and sign them by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2813213352" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3261" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3261/hovercard" href="https://github.com/rancher/fleet/pull/3261">#3261</a></li>
|
||||
<li>Fix typo on regristry by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sestegra/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sestegra">@sestegra</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2840789596" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3321" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3321/hovercard" href="https://github.com/rancher/fleet/pull/3321">#3321</a></li>
|
||||
<li>Bump k8s modules to 1.32 and Helm to 3.17.0 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2838694420" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3317" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3317/hovercard" href="https://github.com/rancher/fleet/pull/3317">#3317</a></li>
|
||||
<li>Update golang.org/x/net dependency to v0.36.0 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2927163654" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3455" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3455/hovercard" href="https://github.com/rancher/fleet/pull/3455">#3455</a></li>
|
||||
<li>Add debug logging around drift correction and disable test by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2847816303" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3334" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3334/hovercard" href="https://github.com/rancher/fleet/pull/3334">#3334</a></li>
|
||||
<li>Incorporate kube-version and rancher-version annotations in chart by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2854157395" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3352" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3352/hovercard" href="https://github.com/rancher/fleet/pull/3352">#3352</a></li>
|
||||
<li>Use auto bump functionality in release charts by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2858394920" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3365" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3365/hovercard" href="https://github.com/rancher/fleet/pull/3365">#3365</a></li>
|
||||
<li>Move agent registration into controller container by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2893976743" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3416" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3416/hovercard" href="https://github.com/rancher/fleet/pull/3416">#3416</a></li>
|
||||
<li>Move agent's clusterstatus controller into the controller container by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/p-se/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/p-se">@p-se</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2900849667" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3429" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3429/hovercard" href="https://github.com/rancher/fleet/pull/3429">#3429</a></li>
|
||||
<li>Remove "fleet apply" config files from bundle resources by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2885004970" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3403" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3403/hovercard" href="https://github.com/rancher/fleet/pull/3403">#3403</a></li>
|
||||
</ul>
|
||||
<h2>New Contributors</h2>
|
||||
<ul>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sestegra/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sestegra">@sestegra</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2840789596" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3321" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3321/hovercard" href="https://github.com/rancher/fleet/pull/3321">#3321</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.11.5...v0.12.0"><tt>v0.11.5...v0.12.0</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.12.0.tgz](https://github.com/rancher/fleet/releases/download/v0.12.0/fleet-agent-0.12.0.tgz)
|
||||
|
||||
* [fleet-0.12.0.tgz](https://github.com/rancher/fleet/releases/download/v0.12.0/fleet-0.12.0.tgz)
|
||||
|
||||
* [fleet-crd-0.12.0.tgz](https://github.com/rancher/fleet/releases/download/v0.12.0/fleet-crd-0.12.0.tgz)
|
||||
|
||||
* [fleet_0.12.0_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.0/fleet_0.12.0_checksums.txt)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.0/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.0/fleet-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.0/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.0/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.0/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.0/fleet-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.0/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.0/fleetagent-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.0)*
|
||||
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
title: "v0.12.1"
|
||||
date: "2025-04-17 08:40:29 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-04-17 08:40:29 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Ensure same bundle is selected for non-ready status by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2965861721" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3498" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3498/hovercard" href="https://github.com/rancher/fleet/pull/3498">#3498</a></li>
|
||||
<li>Delete no longer targeted bundle deployments by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2972771063" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3511" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3511/hovercard" href="https://github.com/rancher/fleet/pull/3511">#3511</a></li>
|
||||
<li>Support strict host key checks by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2982460182" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3524" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3524/hovercard" href="https://github.com/rancher/fleet/pull/3524">#3524</a></li>
|
||||
<li>Add Lifecycle Secrets by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/manno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/manno">@manno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2982664642" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3528" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3528/hovercard" href="https://github.com/rancher/fleet/pull/3528">#3528</a></li>
|
||||
<li>Avoid nil pointer dereference reading leader-election options by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2985927154" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3536" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3536/hovercard" href="https://github.com/rancher/fleet/pull/3536">#3536</a></li>
|
||||
<li>Prevent panic when fetching latest commit by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2986047350" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3539" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3539/hovercard" href="https://github.com/rancher/fleet/pull/3539">#3539</a></li>
|
||||
<li>Fix resource.PerClusterState incompatibility by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2986105162" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3542" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3542/hovercard" href="https://github.com/rancher/fleet/pull/3542">#3542</a></li>
|
||||
<li>Bump Go toolchain version to 1.23.8 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2988047054" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3544" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3544/hovercard" href="https://github.com/rancher/fleet/pull/3544">#3544</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.12.0...v0.12.1"><tt>v0.12.0...v0.12.1</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.12.1.tgz](https://github.com/rancher/fleet/releases/download/v0.12.1/fleet-0.12.1.tgz)
|
||||
|
||||
* [fleet-agent-0.12.1.tgz](https://github.com/rancher/fleet/releases/download/v0.12.1/fleet-agent-0.12.1.tgz)
|
||||
|
||||
* [fleet-crd-0.12.1.tgz](https://github.com/rancher/fleet/releases/download/v0.12.1/fleet-crd-0.12.1.tgz)
|
||||
|
||||
* [fleet_0.12.1_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.1/fleet_0.12.1_checksums.txt)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.1/fleet-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.1/fleet-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.1/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.1/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.1/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.1/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.1/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.1/fleetagent-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.1)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.12.2"
|
||||
date: "2025-04-22 14:43:11 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-04-22 14:43:11 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Avoids returning nil map when options.Helm is used by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3011209074" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3571" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3571/hovercard" href="https://github.com/rancher/fleet/pull/3571">#3571</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.12.1...v0.12.2"><tt>v0.12.1...v0.12.2</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.12.2.tgz](https://github.com/rancher/fleet/releases/download/v0.12.2/fleet-agent-0.12.2.tgz)
|
||||
|
||||
* [fleet-0.12.2.tgz](https://github.com/rancher/fleet/releases/download/v0.12.2/fleet-0.12.2.tgz)
|
||||
|
||||
* [fleet-crd-0.12.2.tgz](https://github.com/rancher/fleet/releases/download/v0.12.2/fleet-crd-0.12.2.tgz)
|
||||
|
||||
* [fleet_0.12.2_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.2/fleet_0.12.2_checksums.txt)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.2/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.2/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.2/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.2/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.2/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.2/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.2/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.2/fleet-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.2)*
|
||||
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
---
|
||||
title: "v0.12.3"
|
||||
date: "2025-05-16 07:43:52 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-05-16 07:43:52 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Prevent empty Patch updates from Drift reconciler by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3014283553" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3577" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3577/hovercard" href="https://github.com/rancher/fleet/pull/3577">#3577</a></li>
|
||||
<li>Prune BundleDeployments when GitRepo/Bundle targets change by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aruiz14/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aruiz14">@aruiz14</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3046108559" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3661" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3661/hovercard" href="https://github.com/rancher/fleet/pull/3661">#3661</a></li>
|
||||
<li>Remove serviceaccount migration by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/weyfonk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/weyfonk">@weyfonk</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3031578485" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3602" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3602/hovercard" href="https://github.com/rancher/fleet/pull/3602">#3602</a></li>
|
||||
<li>Calls semaphore Acquire inside go routine by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/0xavi0/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/0xavi0">@0xavi0</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3039467730" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3633" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3633/hovercard" href="https://github.com/rancher/fleet/pull/3633">#3633</a></li>
|
||||
<li>Update module helm.sh/helm/v3 to v3.17.3 [SECURITY] (release/v0.12) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3034058234" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3607" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3607/hovercard" href="https://github.com/rancher/fleet/pull/3607">#3607</a></li>
|
||||
<li>Update gomod-k8sio-dependencies (release/v0.12) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3038584738" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3628" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3628/hovercard" href="https://github.com/rancher/fleet/pull/3628">#3628</a></li>
|
||||
<li>Update gomod-k8sio-dependencies to e3bc6f1 (release/v0.12) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3061789396" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3685" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3685/hovercard" href="https://github.com/rancher/fleet/pull/3685">#3685</a></li>
|
||||
<li>Update gomod-k8sio-dependencies (release/v0.12) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3045524186" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3656" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3656/hovercard" href="https://github.com/rancher/fleet/pull/3656">#3656</a></li>
|
||||
<li>Update module github.com/prometheus/client_model to v0.6.2 (release/v0.12) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3038742883" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3631" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3631/hovercard" href="https://github.com/rancher/fleet/pull/3631">#3631</a></li>
|
||||
<li>Update module github.com/go-git/go-git/v5 to v5.16.0 (release/v0.12) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3041686233" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3641" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3641/hovercard" href="https://github.com/rancher/fleet/pull/3641">#3641</a></li>
|
||||
<li>Update dependency go to v1.23.9 (release/v0.12) by @renovate-rancher in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3044663116" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3652" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3652/hovercard" href="https://github.com/rancher/fleet/pull/3652">#3652</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.12.2...v0.12.3"><tt>v0.12.2...v0.12.3</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.12.3.tgz](https://github.com/rancher/fleet/releases/download/v0.12.3/fleet-0.12.3.tgz)
|
||||
|
||||
* [fleet-crd-0.12.3.tgz](https://github.com/rancher/fleet/releases/download/v0.12.3/fleet-crd-0.12.3.tgz)
|
||||
|
||||
* [fleet-agent-0.12.3.tgz](https://github.com/rancher/fleet/releases/download/v0.12.3/fleet-agent-0.12.3.tgz)
|
||||
|
||||
* [fleet_0.12.3_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.3/fleet_0.12.3_checksums.txt)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.3/fleet-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.3/fleet-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.3/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.3/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.3/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.3/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.3/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.3/fleetagent-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.3)*
|
||||
|
||||
|
|
@ -1,5 +1,13 @@
|
|||
---
|
||||
title: "Next 🚧"
|
||||
title: "0.12 Changelogs"
|
||||
---
|
||||
|
||||
We are still working on the next release.
|
||||
|
||||
* [v0.12.3](changelogs/v0.12.3.md) (latest)
|
||||
|
||||
* [v0.12.2](changelogs/v0.12.2.md)
|
||||
|
||||
* [v0.12.1](changelogs/v0.12.1.md)
|
||||
|
||||
* [v0.12.0](changelogs/v0.12.0.md)
|
||||
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
|
|
@ -59,5 +59,5 @@ kubectl delete ns -l "fleet.cattle.io/managed=true"
|
|||
Fleet in Rancher cannot be uninstalled, without uninstalling Rancher. However, the GitOps feature can be disabled.
|
||||
When disabled, the gitjob deployment is no longer deployed into the Rancher server’s local cluster, and continuous-delivery is not shown in the Rancher UI.
|
||||
|
||||
More information can be found in the Rancher docs, e.g. https://documentation.suse.com/cloudnative/rancher-manager/latest/en/rancher-admin/experimental-features/continuous-delivery.html
|
||||
For more information, refer to [Continuous Delivery in Rancher](https://documentation.suse.com/cloudnative/rancher-manager/latest/en/rancher-admin/experimental-features/continuous-delivery.html)
|
||||
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,54 @@
|
|||
---
|
||||
title: "v0.9.12"
|
||||
date: "2024-12-11 10:08:36 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2024-12-11 10:08:36 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Update Kubernetes libraries to v1.28.12 v0.29.7 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2711017347" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3107" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3107/hovercard" href="https://github.com/rancher/fleet/pull/3107">#3107</a></li>
|
||||
<li>Update gitjob version to 0.9.18 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2711010908" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3106" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3106/hovercard" href="https://github.com/rancher/fleet/pull/3106">#3106</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.9.11...v0.9.12"><tt>v0.9.11...v0.9.12</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.9.12.tgz](https://github.com/rancher/fleet/releases/download/v0.9.12/fleet-0.9.12.tgz)
|
||||
|
||||
* [fleet-agent-0.9.12.tgz](https://github.com/rancher/fleet/releases/download/v0.9.12/fleet-agent-0.9.12.tgz)
|
||||
|
||||
* [fleet-crd-0.9.12.tgz](https://github.com/rancher/fleet/releases/download/v0.9.12/fleet-crd-0.9.12.tgz)
|
||||
|
||||
* [fleet_0.9.12_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.9.12/fleet_0.9.12_checksums.txt)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.12/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.12/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.12/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.12/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.12/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.12/fleet-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.12/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.12/fleetagent-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.9.12)*
|
||||
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
---
|
||||
title: "v0.9.13"
|
||||
date: "2025-01-20 12:37:50 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-01-20 12:37:50 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Update golang.org/x/net to v0.33.0 and golang.org/x/crypto to v0.31.0 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2766185249" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3175" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3175/hovercard" href="https://github.com/rancher/fleet/pull/3175">#3175</a></li>
|
||||
<li>Update go git to v5.13.1 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2780518665" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3207" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3207/hovercard" href="https://github.com/rancher/fleet/pull/3207">#3207</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.9.12...v0.9.13"><tt>v0.9.12...v0.9.13</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.9.13.tgz](https://github.com/rancher/fleet/releases/download/v0.9.13/fleet-agent-0.9.13.tgz)
|
||||
|
||||
* [fleet-0.9.13.tgz](https://github.com/rancher/fleet/releases/download/v0.9.13/fleet-0.9.13.tgz)
|
||||
|
||||
* [fleet-crd-0.9.13.tgz](https://github.com/rancher/fleet/releases/download/v0.9.13/fleet-crd-0.9.13.tgz)
|
||||
|
||||
* [fleet_0.9.13_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.9.13/fleet_0.9.13_checksums.txt)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.13/fleet-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.13/fleet-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.13/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.13/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.13/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.13/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.13/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.13/fleetcontroller-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.9.13)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.9.14"
|
||||
date: "2025-02-20 09:56:41 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-02-20 09:56:41 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Update go git to v5.13.1 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2780518665" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3207" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3207/hovercard" href="https://github.com/rancher/fleet/pull/3207">#3207</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.9.13...v0.9.14"><tt>v0.9.13...v0.9.14</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-crd-0.9.14.tgz](https://github.com/rancher/fleet/releases/download/v0.9.14/fleet-crd-0.9.14.tgz)
|
||||
|
||||
* [fleet-0.9.14.tgz](https://github.com/rancher/fleet/releases/download/v0.9.14/fleet-0.9.14.tgz)
|
||||
|
||||
* [fleet-agent-0.9.14.tgz](https://github.com/rancher/fleet/releases/download/v0.9.14/fleet-agent-0.9.14.tgz)
|
||||
|
||||
* [fleet_0.9.14_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.9.14/fleet_0.9.14_checksums.txt)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.14/fleet-linux-arm64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.14/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.14/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.14/fleet-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.14/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.14/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.14/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.14/fleetcontroller-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.9.14)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.9.15"
|
||||
date: "2025-02-20 13:13:14 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-02-20 13:13:14 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Bump gitjob to v0.9.21 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2866056926" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3378" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3378/hovercard" href="https://github.com/rancher/fleet/pull/3378">#3378</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.9.14-rc.1...v0.9.15"><tt>v0.9.14-rc.1...v0.9.15</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.9.15.tgz](https://github.com/rancher/fleet/releases/download/v0.9.15/fleet-agent-0.9.15.tgz)
|
||||
|
||||
* [fleet-crd-0.9.15.tgz](https://github.com/rancher/fleet/releases/download/v0.9.15/fleet-crd-0.9.15.tgz)
|
||||
|
||||
* [fleet-0.9.15.tgz](https://github.com/rancher/fleet/releases/download/v0.9.15/fleet-0.9.15.tgz)
|
||||
|
||||
* [fleet_0.9.15_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.9.15/fleet_0.9.15_checksums.txt)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.15/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.15/fleet-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.15/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.15/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.15/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.15/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.15/fleet-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.15/fleetcontroller-linux-amd64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.9.15)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.9.16"
|
||||
date: "2025-03-04 15:05:45 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-03-04 15:05:45 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Bump Gitjob to 0.9.22 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2893656262" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3413" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3413/hovercard" href="https://github.com/rancher/fleet/pull/3413">#3413</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.9.15...v0.9.16"><tt>v0.9.15...v0.9.16</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-crd-0.9.16.tgz](https://github.com/rancher/fleet/releases/download/v0.9.16/fleet-crd-0.9.16.tgz)
|
||||
|
||||
* [fleet-agent-0.9.16.tgz](https://github.com/rancher/fleet/releases/download/v0.9.16/fleet-agent-0.9.16.tgz)
|
||||
|
||||
* [fleet-0.9.16.tgz](https://github.com/rancher/fleet/releases/download/v0.9.16/fleet-0.9.16.tgz)
|
||||
|
||||
* [fleet_0.9.16_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.9.16/fleet_0.9.16_checksums.txt)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.16/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.16/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.16/fleet-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.16/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.16/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.16/fleetagent-linux-amd64)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.16/fleet-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.16/fleet-windows-amd64.exe)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.9.16)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.9.17"
|
||||
date: "2025-04-07 10:35:44 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-04-07 10:35:44 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Update gitjob version to 0.9.24 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2976233844" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3516" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3516/hovercard" href="https://github.com/rancher/fleet/pull/3516">#3516</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.9.16...v0.9.17"><tt>v0.9.16...v0.9.17</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-0.9.17.tgz](https://github.com/rancher/fleet/releases/download/v0.9.17/fleet-0.9.17.tgz)
|
||||
|
||||
* [fleet-crd-0.9.17.tgz](https://github.com/rancher/fleet/releases/download/v0.9.17/fleet-crd-0.9.17.tgz)
|
||||
|
||||
* [fleet-agent-0.9.17.tgz](https://github.com/rancher/fleet/releases/download/v0.9.17/fleet-agent-0.9.17.tgz)
|
||||
|
||||
* [fleet_0.9.17_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.9.17/fleet_0.9.17_checksums.txt)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.17/fleet-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.17/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.17/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.17/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.17/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.17/fleetagent-linux-arm64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.17/fleet-linux-arm64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.17/fleetagent-windows-amd64.exe)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.9.17)*
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
title: "v0.9.18"
|
||||
date: "2025-05-16 12:14:19 +0000 UTC"
|
||||
---
|
||||
|
||||
|
||||
* (github-actions[bot]) released this 2025-05-16 12:14:19 +0000 UTC*
|
||||
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Bump go mods by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thardeck/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thardeck">@thardeck</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3057059979" data-permission-text="Title is private" data-url="https://github.com/rancher/fleet/issues/3674" data-hovercard-type="pull_request" data-hovercard-url="/rancher/fleet/pull/3674/hovercard" href="https://github.com/rancher/fleet/pull/3674">#3674</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/rancher/fleet/compare/v0.9.17...v0.9.18"><tt>v0.9.17...v0.9.18</tt></a></p>
|
||||
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
|
||||
* [fleet-agent-0.9.18.tgz](https://github.com/rancher/fleet/releases/download/v0.9.18/fleet-agent-0.9.18.tgz)
|
||||
|
||||
* [fleet-0.9.18.tgz](https://github.com/rancher/fleet/releases/download/v0.9.18/fleet-0.9.18.tgz)
|
||||
|
||||
* [fleet-crd-0.9.18.tgz](https://github.com/rancher/fleet/releases/download/v0.9.18/fleet-crd-0.9.18.tgz)
|
||||
|
||||
* [fleet_0.9.18_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.9.18/fleet_0.9.18_checksums.txt)
|
||||
|
||||
* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.18/fleetcontroller-linux-arm64)
|
||||
|
||||
* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.18/fleetagent-linux-arm64)
|
||||
|
||||
* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.18/fleetcontroller-linux-amd64)
|
||||
|
||||
* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.18/fleet-windows-amd64.exe)
|
||||
|
||||
* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.18/fleetagent-linux-amd64)
|
||||
|
||||
* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.9.18/fleetagent-windows-amd64.exe)
|
||||
|
||||
* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.9.18/fleet-linux-amd64)
|
||||
|
||||
* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.9.18/fleet-linux-arm64)
|
||||
|
||||
|
||||
|
||||
|
||||
*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.9.18)*
|
||||
|
||||
|
|
@ -3,7 +3,21 @@ title: "0.9 Changelogs"
|
|||
---
|
||||
|
||||
|
||||
* [v0.9.11](changelogs/v0.9.11.md) (latest)
|
||||
* [v0.9.18](changelogs/v0.9.18.md) (latest)
|
||||
|
||||
* [v0.9.17](changelogs/v0.9.17.md)
|
||||
|
||||
* [v0.9.16](changelogs/v0.9.16.md)
|
||||
|
||||
* [v0.9.15](changelogs/v0.9.15.md)
|
||||
|
||||
* [v0.9.14](changelogs/v0.9.14.md)
|
||||
|
||||
* [v0.9.13](changelogs/v0.9.13.md)
|
||||
|
||||
* [v0.9.12](changelogs/v0.9.12.md)
|
||||
|
||||
* [v0.9.11](changelogs/v0.9.11.md)
|
||||
|
||||
* [v0.9.10](changelogs/v0.9.10.md)
|
||||
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ spec:
|
|||
clientID: "really-random"
|
||||
```
|
||||
|
||||
Second, follow the [cluster registration token instructions]((#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
Second, follow the [cluster registration token instructions](#create-cluster-registration-tokens) to obtain the `values.yaml` file to be used.
|
||||
|
||||
Third, setup your environment to use the client ID.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue