Merge pull request #58 from rancher/release-0.6.0

Release of 0.6.0, add agent config rc as next
This commit is contained in:
Mario Manno 2023-04-12 12:03:21 +02:00 committed by GitHub
commit a4c6e42ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 7 deletions

View File

@ -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 |

View File

@ -80,7 +80,8 @@ module.exports = {
current: {
label: 'Next 🚧',
},
'0.4': {
'0.6': {
banner: 'none',
},
},
},

View File

@ -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",
},
}