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:
commit
a4c6e42ef1
|
|
@ -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 |
|
| 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 |
|
| 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 |
|
| 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)
|
[Back to Custom Resources](#custom-resources)
|
||||||
|
|
||||||
|
|
@ -955,6 +957,9 @@ SemVerPolicy specifies a semantic version policy.
|
||||||
| agentMigrated | | bool | false |
|
| agentMigrated | | bool | false |
|
||||||
| agentNamespaceMigrated | | bool | false |
|
| agentNamespaceMigrated | | bool | false |
|
||||||
| cattleNamespaceMigrated | | bool | false |
|
| cattleNamespaceMigrated | | bool | false |
|
||||||
|
| agentAffinityHash | | string | false |
|
||||||
|
| agentResourcesHash | | string | false |
|
||||||
|
| agentTolerationsHash | | string | false |
|
||||||
| display | | [ClusterDisplay](#clusterdisplay) | false |
|
| display | | [ClusterDisplay](#clusterdisplay) | false |
|
||||||
| agent | | [AgentStatus](#agentstatus) | false |
|
| agent | | [AgentStatus](#agentstatus) | false |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,8 @@ module.exports = {
|
||||||
current: {
|
current: {
|
||||||
label: 'Next 🚧',
|
label: 'Next 🚧',
|
||||||
},
|
},
|
||||||
'0.4': {
|
'0.6': {
|
||||||
|
banner: 'none',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,18 @@
|
||||||
export const versions = {
|
export const versions = {
|
||||||
'v0.5': {
|
'v0.5': {
|
||||||
"fleet": "https://github.com/rancher/fleet/releases/download/v0.5.2/fleet-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.2/fleet-agent-0.5.2.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.2/fleet-crd-0.5.2.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': {
|
'next': {
|
||||||
"fleet": "https://github.com/rancher/fleet/releases/download/v0.6.0-rc.4/fleet-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.6.0-rc.4/fleet-agent-0.6.0-rc.4.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.6.0-rc.4/fleet-crd-0.6.0-rc.4.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",
|
"kubernetes": "1.20.5",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue