diff --git a/docs/ref-crds.md b/docs/ref-crds.md index a34e55a34..4f639d9ef 100644 --- a/docs/ref-crds.md +++ b/docs/ref-crds.md @@ -934,6 +934,8 @@ SemVerPolicy specifies a semantic version policy. | privateRepoURL | PrivateRepoURL prefixes the image name and overrides a global repo URL from the agents config. | string | false | | templateValues | TemplateValues defines a cluster specific mapping of values to be sent to fleet.yaml values templating. | *GenericMap | false | | agentTolerations | AgentTolerations defines an extra set of Tolerations to be added to the Agent deployment. | []v1.Toleration | false | +| agentAffinity | AgentAffinity overrides the default affinity for the cluster's agent deployment. If this value is nil the default affinity is used. | *v1.Affinity | false | +| agentResources | AgentResources sets the resources for the cluster's agent deployment. | *v1.ResourceRequirements | false | [Back to Custom Resources](#custom-resources) @@ -955,6 +957,9 @@ SemVerPolicy specifies a semantic version policy. | agentMigrated | | bool | false | | agentNamespaceMigrated | | bool | false | | cattleNamespaceMigrated | | bool | false | +| agentAffinityHash | | string | false | +| agentResourcesHash | | string | false | +| agentTolerationsHash | | string | false | | display | | [ClusterDisplay](#clusterdisplay) | false | | agent | | [AgentStatus](#agentstatus) | false | diff --git a/docusaurus.config.js b/docusaurus.config.js index f5cec36ae..43b1908f1 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -80,7 +80,8 @@ module.exports = { current: { label: 'Next 🚧', }, - '0.4': { + '0.6': { + banner: 'none', }, }, }, diff --git a/src/fleetVersions.js b/src/fleetVersions.js index 9fc42b004..51d1b9b6a 100644 --- a/src/fleetVersions.js +++ b/src/fleetVersions.js @@ -1,13 +1,18 @@ export const versions = { 'v0.5': { - "fleet": "https://github.com/rancher/fleet/releases/download/v0.5.2/fleet-0.5.2.tgz", - "fleetAgent": "https://github.com/rancher/fleet/releases/download/v0.5.2/fleet-agent-0.5.2.tgz", - "fleetCRD": "https://github.com/rancher/fleet/releases/download/v0.5.2/fleet-crd-0.5.2.tgz", + "fleet": "https://github.com/rancher/fleet/releases/download/v0.5.3/fleet-0.5.3.tgz", + "fleetAgent": "https://github.com/rancher/fleet/releases/download/v0.5.3/fleet-agent-0.5.3.tgz", + "fleetCRD": "https://github.com/rancher/fleet/releases/download/v0.5.3/fleet-crd-0.5.3.tgz", + }, + 'v0.6': { + "fleet": "https://github.com/rancher/fleet/releases/download/v0.6.0/fleet-0.6.0.tgz", + "fleetAgent": "https://github.com/rancher/fleet/releases/download/v0.6.0/fleet-agent-0.6.0.tgz", + "fleetCRD": "https://github.com/rancher/fleet/releases/download/v0.6.0/fleet-crd-0.6.0.tgz", }, 'next': { - "fleet": "https://github.com/rancher/fleet/releases/download/v0.6.0-rc.4/fleet-0.6.0-rc.4.tgz", - "fleetAgent": "https://github.com/rancher/fleet/releases/download/v0.6.0-rc.4/fleet-agent-0.6.0-rc.4.tgz", - "fleetCRD": "https://github.com/rancher/fleet/releases/download/v0.6.0-rc.4/fleet-crd-0.6.0-rc.4.tgz", + "fleet": "https://github.com/rancher/fleet/releases/download/v0.7.0-AGENT-rc.1/fleet-0.7.0-AGENT-rc.1.tgz", + "fleetAgent": "https://github.com/rancher/fleet/releases/download/v0.7.0-AGENT-rc.1/fleet-agent-0.7.0-AGENT-rc.1.tgz", + "fleetCRD": "https://github.com/rancher/fleet/releases/download/v0.7.0-AGENT-rc.1/fleet-crd-0.7.0-AGENT-rc.1.tgz", "kubernetes": "1.20.5", }, }