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
e182d652
Commit
e182d652
authored
5 years ago
by
Enrique Alcantara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add role ARN state
Stores ARN role provided by the user
parent
75ad40f6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
app/assets/javascripts/create_cluster/eks_cluster/components/service_credentials_form.vue
...uster/eks_cluster/components/service_credentials_form.vue
+1
-1
app/assets/javascripts/create_cluster/eks_cluster/index.js
app/assets/javascripts/create_cluster/eks_cluster/index.js
+2
-0
app/assets/javascripts/create_cluster/eks_cluster/store/state.js
...ets/javascripts/create_cluster/eks_cluster/store/state.js
+2
-0
No files found.
app/assets/javascripts/create_cluster/eks_cluster/components/service_credentials_form.vue
View file @
e182d652
...
@@ -28,7 +28,7 @@ export default {
...
@@ -28,7 +28,7 @@ export default {
},
},
data
()
{
data
()
{
return
{
return
{
roleArn
:
''
,
roleArn
:
this
.
$store
.
state
.
roleArn
,
};
};
},
},
computed
:
{
computed
:
{
...
...
This diff is collapsed.
Click to expand it.
app/assets/javascripts/create_cluster/eks_cluster/index.js
View file @
e182d652
...
@@ -23,6 +23,7 @@ export default el => {
...
@@ -23,6 +23,7 @@ export default el => {
createClusterPath
,
createClusterPath
,
signOutPath
,
signOutPath
,
externalLinkIcon
,
externalLinkIcon
,
roleArn
,
}
=
el
.
dataset
;
}
=
el
.
dataset
;
return
new
Vue
({
return
new
Vue
({
...
@@ -36,6 +37,7 @@ export default el => {
...
@@ -36,6 +37,7 @@ export default el => {
createRolePath
,
createRolePath
,
createClusterPath
,
createClusterPath
,
signOutPath
,
signOutPath
,
roleArn
,
},
},
awsCredentials
:
{
awsCredentials
:
{
accessKeyId
,
accessKeyId
,
...
...
This diff is collapsed.
Click to expand it.
app/assets/javascripts/create_cluster/eks_cluster/store/state.js
View file @
e182d652
...
@@ -12,6 +12,8 @@ export default () => ({
...
@@ -12,6 +12,8 @@ export default () => ({
accountId
:
''
,
accountId
:
''
,
externalId
:
''
,
externalId
:
''
,
roleArn
:
''
,
clusterName
:
''
,
clusterName
:
''
,
environmentScope
:
'
*
'
,
environmentScope
:
'
*
'
,
kubernetesVersion
,
kubernetesVersion
,
...
...
This diff is collapsed.
Click to expand it.
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