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
524f58ff
Commit
524f58ff
authored
Dec 30, 2019
by
Rajendra kadam
Committed by
Kamil Trzciński
Dec 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change tooltip text and fix failing spec
parent
079a3014
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
30 deletions
+35
-30
changelogs/unreleased/fix-env-tooltip.yml
changelogs/unreleased/fix-env-tooltip.yml
+5
-0
ee/lib/gitlab/kubernetes/deployment.rb
ee/lib/gitlab/kubernetes/deployment.rb
+1
-1
ee/spec/lib/gitlab/kubernetes/deployment_spec.rb
ee/spec/lib/gitlab/kubernetes/deployment_spec.rb
+17
-17
ee/spec/lib/gitlab/kubernetes/rollout_status_spec.rb
ee/spec/lib/gitlab/kubernetes/rollout_status_spec.rb
+12
-12
No files found.
changelogs/unreleased/fix-env-tooltip.yml
0 → 100644
View file @
524f58ff
---
title
:
Update tooltip content for deployment instances
merge_request
:
22289
author
:
Rajendra Kadam
type
:
added
ee/lib/gitlab/kubernetes/deployment.rb
View file @
524f58ff
...
...
@@ -81,7 +81,7 @@ module Gitlab
{
status:
pod_status
&
.
downcase
,
pod_name:
pod_name
,
tooltip:
"
#{
name
}
(
#{
pod_name
}
)
#{
pod_status
}
"
,
tooltip:
"
#{
pod_name
}
(
#{
pod_status
}
)
"
,
track:
track
,
stable:
stable?
}
...
...
ee/spec/lib/gitlab/kubernetes/deployment_spec.rb
View file @
524f58ff
...
...
@@ -56,10 +56,10 @@ describe Gitlab::Kubernetes::Deployment do
it
'returns all pods with generated names and pending'
do
expected
=
[
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
unknown (generated-name-with-suffix) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
unknown (generated-name-with-suffix) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
unknown (generated-name-with-suffix) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
unknown (generated-name-with-suffix) Pending
'
,
track:
'stable'
,
stable:
true
}
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
generated-name-with-suffix (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
generated-name-with-suffix (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
generated-name-with-suffix (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
generated-name-with-suffix (Pending)
'
,
track:
'stable'
,
stable:
true
}
]
expect
(
deployment
.
instances
).
to
eq
(
expected
)
...
...
@@ -75,9 +75,9 @@ describe Gitlab::Kubernetes::Deployment do
it
'returns not spawned pods as pending and unknown and running'
do
expected
=
[
{
status:
'running'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
unknown (generated-name-with-suffix) Running
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'Not provided'
,
tooltip:
'
unknown (Not provided) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'Not provided'
,
tooltip:
'
unknown (Not provided) Pending
'
,
track:
'stable'
,
stable:
true
}
{
status:
'running'
,
pod_name:
'generated-name-with-suffix'
,
tooltip:
'
generated-name-with-suffix (Running)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'Not provided'
,
tooltip:
'
Not provided (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'Not provided'
,
tooltip:
'
Not provided (Pending)
'
,
track:
'stable'
,
stable:
true
}
]
expect
(
deployment
.
instances
).
to
eq
(
expected
)
...
...
@@ -98,10 +98,10 @@ describe Gitlab::Kubernetes::Deployment do
it
'returns all instances as named and waiting'
do
expected
=
[
{
status:
'pending'
,
pod_name:
'kube-pod'
,
tooltip:
'
foo (kube-pod) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod1'
,
tooltip:
'
foo (kube-pod1) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod2'
,
tooltip:
'
foo (kube-pod2) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod3'
,
tooltip:
'
foo (kube-pod3) Pending
'
,
track:
'stable'
,
stable:
true
}
{
status:
'pending'
,
pod_name:
'kube-pod'
,
tooltip:
'
kube-pod (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod1'
,
tooltip:
'
kube-pod1 (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod2'
,
tooltip:
'
kube-pod2 (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod3'
,
tooltip:
'
kube-pod3 (Pending)
'
,
track:
'stable'
,
stable:
true
}
]
expect
(
deployment
.
instances
).
to
eq
(
expected
)
...
...
@@ -122,10 +122,10 @@ describe Gitlab::Kubernetes::Deployment do
it
'returns all instances'
do
expected
=
[
{
status:
'succeeded'
,
pod_name:
'kube-pod'
,
tooltip:
'
foo (kube-pod) Succeeded
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
'kube-pod1'
,
tooltip:
'
foo (kube-pod1) Running
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod2'
,
tooltip:
'
foo (kube-pod2) Pending
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod3'
,
tooltip:
'
foo (kube-pod3) Pending
'
,
track:
'stable'
,
stable:
true
}
{
status:
'succeeded'
,
pod_name:
'kube-pod'
,
tooltip:
'
kube-pod (Succeeded)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
'kube-pod1'
,
tooltip:
'
kube-pod1 (Running)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod2'
,
tooltip:
'
kube-pod2 (Pending)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'pending'
,
pod_name:
'kube-pod3'
,
tooltip:
'
kube-pod3 (Pending)
'
,
track:
'stable'
,
stable:
true
}
]
expect
(
deployment
.
instances
).
to
eq
(
expected
)
...
...
@@ -142,7 +142,7 @@ describe Gitlab::Kubernetes::Deployment do
it
'returns all instances'
do
expected
=
[
{
status:
'pending'
,
pod_name:
'kube-pod'
,
tooltip:
'
foo (kube-pod) Pending
'
,
track:
'stable'
,
stable:
true
}
{
status:
'pending'
,
pod_name:
'kube-pod'
,
tooltip:
'
kube-pod (Pending)
'
,
track:
'stable'
,
stable:
true
}
]
expect
(
deployment
.
instances
).
to
eq
(
expected
)
...
...
@@ -155,7 +155,7 @@ describe Gitlab::Kubernetes::Deployment do
it
'returns all instances'
do
expected
=
[
{
status:
'pending'
,
pod_name:
'kube-pod'
,
tooltip:
'
foo (kube-pod) Pending
'
,
track:
'canary'
,
stable:
false
}
{
status:
'pending'
,
pod_name:
'kube-pod'
,
tooltip:
'
kube-pod (Pending)
'
,
track:
'canary'
,
stable:
false
}
]
expect
(
deployment
.
instances
).
to
eq
(
expected
)
...
...
ee/spec/lib/gitlab/kubernetes/rollout_status_spec.rb
View file @
524f58ff
...
...
@@ -66,12 +66,12 @@ describe Gitlab::Kubernetes::RolloutStatus do
it
'stores the union of deployment instances'
do
expected
=
[
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
two) Running
'
,
track:
'any'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
two) Running
'
,
track:
'any'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
two) Running
'
,
track:
'any'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
one) Running
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
one) Running
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
one) Running
'
,
track:
'stable'
,
stable:
true
}
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
Running)
'
,
track:
'any'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
Running)
'
,
track:
'any'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
Running)
'
,
track:
'any'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
Running)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
Running)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
Running)
'
,
track:
'stable'
,
stable:
true
}
]
expect
(
rollout_status
.
instances
).
to
eq
(
expected
)
...
...
@@ -87,12 +87,12 @@ describe Gitlab::Kubernetes::RolloutStatus do
it
'stores the union of deployment instances'
do
expected
=
[
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
two) Running
'
,
track:
'canary'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
two) Running
'
,
track:
'canary'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
two) Running
'
,
track:
'canary'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
one) Running
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
one) Running
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
one) Running
'
,
track:
'stable'
,
stable:
true
}
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
Running)
'
,
track:
'canary'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
Running)
'
,
track:
'canary'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"two"
,
tooltip:
'two (
Running)
'
,
track:
'canary'
,
stable:
false
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
Running)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
Running)
'
,
track:
'stable'
,
stable:
true
},
{
status:
'running'
,
pod_name:
"one"
,
tooltip:
'one (
Running)
'
,
track:
'stable'
,
stable:
true
}
]
expect
(
rollout_status
.
instances
).
to
eq
(
expected
)
...
...
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