Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
162f1f4d
Commit
162f1f4d
authored
Sep 23, 2019
by
Enrique Alcantara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add subnet dropdown help text
parent
9963efb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
3 deletions
+16
-3
app/assets/javascripts/create_cluster/eks_cluster/components/eks_cluster_configuration_form.vue
...eks_cluster/components/eks_cluster_configuration_form.vue
+16
-3
No files found.
app/assets/javascripts/create_cluster/eks_cluster/components/eks_cluster_configuration_form.vue
View file @
162f1f4d
...
...
@@ -53,6 +53,19 @@ export default {
false
,
);
},
subnetDropdownHelpText
()
{
return
sprintf
(
s__
(
'
ClusterIntegration|Choose the %{startLink}subnets%{endLink} in your VPC where your worker nodes will run.
'
,
),
{
startLink
:
'
<a href="https://console.aws.amazon.com/vpc/home?#subnets" target="_blank" rel="noopener noreferrer">
'
,
endLink
:
'
</a>
'
,
},
false
,
);
},
},
mounted
()
{
this
.
fetchRegions
();
...
...
@@ -96,7 +109,7 @@ export default {
/>
</div>
<div
class=
"form-group"
>
<label
class=
"label-bold"
name=
"
role"
for=
"eks-role
"
>
{{
<label
class=
"label-bold"
name=
"
eks-vpc"
for=
"eks-vpc
"
>
{{
s__
(
'
ClusterIntegration|VPC
'
)
}}
</label>
<cluster-form-dropdown
...
...
@@ -118,7 +131,7 @@ export default {
<p
class=
"form-text text-muted"
v-html=
"vpcDropdownHelpText"
></p>
</div>
<div
class=
"form-group"
>
<label
class=
"label-bold"
name=
"
role"
for=
"eks-role
"
>
{{
<label
class=
"label-bold"
name=
"
eks-subnet"
for=
"eks-subnet
"
>
{{
s__
(
'
ClusterIntegration|Subnet
'
)
}}
</label>
<cluster-form-dropdown
...
...
@@ -137,7 +150,7 @@ export default {
:error-message=
"s__('ClusterIntegration|Could not load subnets for the selected VPC')"
@
input=
"setVpcAndFetchSubnets($event)"
/>
<p
class=
"form-text text-muted"
v-html=
"
vpc
DropdownHelpText"
></p>
<p
class=
"form-text text-muted"
v-html=
"
subnet
DropdownHelpText"
></p>
</div>
</form>
</
template
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment