Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tke-eos
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QA
tke-eos
Commits
10509027
Commit
10509027
authored
May 21, 2019
by
智勇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复 detail 接口的 lanIp
parent
79de54e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
service.js
app/service.js
+5
-2
No files found.
app/service.js
View file @
10509027
...
@@ -106,8 +106,11 @@ router.post('/details', async (ctx) => {
...
@@ -106,8 +106,11 @@ router.post('/details', async (ctx) => {
namespace
:
ctx
.
Joi
.
string
().
required
(),
namespace
:
ctx
.
Joi
.
string
().
required
(),
}))
}))
const
res
=
await
ctx
.
cluster
.
node_list
()
// const res = await ctx.cluster.node_list()
const
lanIp
=
_
.
get
(
res
,
'
nodes[0].lanIp
'
,
''
)
// const lanIp = _.get(res, 'nodes[0].lanIp', '')
const
podData
=
await
podGet
(
ctx
.
query
.
namespace
)
const
lanIp
=
podData
.
body
.
items
.
filter
(
i
=>
i
.
metadata
.
name
.
indexOf
(
ctx
.
query
.
serviceName
)
!==
-
1
)[
0
].
status
.
hostIP
const
data
=
await
ctx
.
cluster
.
service_get
(
ctx
.
request
.
body
.
serviceName
,
ctx
.
request
.
body
.
namespace
)
const
data
=
await
ctx
.
cluster
.
service_get
(
ctx
.
request
.
body
.
serviceName
,
ctx
.
request
.
body
.
namespace
)
ctx
.
body
=
ctx
.
ok
(
Object
.
assign
({},
data
,
{
lanIp
}))
ctx
.
body
=
ctx
.
ok
(
Object
.
assign
({},
data
,
{
lanIp
}))
...
...
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