mirror of https://github.com/rancher/ui.git
parent
33040bd83b
commit
010f8a9e74
|
|
@ -329,6 +329,10 @@
|
||||||
<div>
|
<div>
|
||||||
{{sub}}
|
{{sub}}
|
||||||
</div>
|
</div>
|
||||||
|
{{else}}
|
||||||
|
<div>
|
||||||
|
{{t "clusterNew.amazoneks.subnet.noneSelected"}}
|
||||||
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
@ -338,7 +342,10 @@
|
||||||
{{#if (eq step 3)}}
|
{{#if (eq step 3)}}
|
||||||
<SaveCancel
|
<SaveCancel
|
||||||
@editing={{eq mode "edit"}}
|
@editing={{eq mode "edit"}}
|
||||||
@saveDisabled={{and (eq vpcSubnetMode "custom") (lte selectedSubnets.length 1)}}
|
@saveDisabled={{and
|
||||||
|
(eq vpcSubnetMode "custom")
|
||||||
|
(lte selectedSubnets.length 1)
|
||||||
|
}}
|
||||||
@save={{action "setSubnets"}}
|
@save={{action "setSubnets"}}
|
||||||
@cancel={{close}}
|
@cancel={{close}}
|
||||||
@createLabel="clusterNew.amazoneks.subnet.next"
|
@createLabel="clusterNew.amazoneks.subnet.next"
|
||||||
|
|
@ -374,9 +381,8 @@
|
||||||
</option>
|
</option>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</select>
|
</select>
|
||||||
{{else if
|
{{else}}
|
||||||
(or config.securityGroups primaryResource.eksStatus.securityGroups)}}
|
{{#each primaryResource.eksStatus.securityGroups as |sg|}}
|
||||||
{{#each config.securityGroups as |sg|}}
|
|
||||||
<div>
|
<div>
|
||||||
{{sg}}
|
{{sg}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -3407,6 +3407,7 @@ clusterNew:
|
||||||
help: EKS requires at least 2 subnets. Subnets should span at least 2 availability zones.
|
help: EKS requires at least 2 subnets. Subnets should span at least 2 availability zones.
|
||||||
next: "Next: Select Security Group"
|
next: "Next: Select Security Group"
|
||||||
loading: "Loading Security Groups from Amazon..."
|
loading: "Loading Security Groups from Amazon..."
|
||||||
|
noneSelected: "Rancher created VPC, Subnet, and Securty Group"
|
||||||
associateWorkerNodePublicIp:
|
associateWorkerNodePublicIp:
|
||||||
title: Public IP for Worker Nodes
|
title: Public IP for Worker Nodes
|
||||||
radio:
|
radio:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue