Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-ganeti
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
itminedu
snf-ganeti
Commits
d7e49c13
Commit
d7e49c13
authored
17 years ago
by
Michael Hanselmann
Browse files
Options
Downloads
Patches
Plain Diff
Small wording changes and fix checks.
Reviewed-by: iustinp
parent
7900ed01
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
qa/qa-sample.yaml
+3
-1
3 additions, 1 deletion
qa/qa-sample.yaml
qa/qa_node.py
+2
-2
2 additions, 2 deletions
qa/qa_node.py
with
5 additions
and
3 deletions
qa/qa-sample.yaml
+
3
−
1
View file @
d7e49c13
...
...
@@ -38,8 +38,10 @@ tests:
node-info
:
True
node-volumes
:
True
# Th
ese
test
s
need at least three nodes
# Th
is
test need
s
at least three nodes
node-evacuate
:
False
# This test needs at least two nodes
node-failover
:
False
instance-add-plain-disk
:
True
...
...
This diff is collapsed.
Click to expand it.
qa/qa_node.py
+
2
−
2
View file @
d7e49c13
...
...
@@ -88,7 +88,7 @@ def TestNodeFailover(node, node2):
"""
gnt-node failover
"""
master
=
qa_config
.
GetMasterNode
()
if
qa_utils
.
GetNodeInstances
(
node2
):
if
qa_utils
.
GetNodeInstances
(
node2
,
secondaries
=
False
):
raise
qa_errors
.
UnusableNodeError
(
"
Secondary node has at least one
"
"
primary instance. This test requires
"
"
it to have no primary instances.
"
)
...
...
@@ -110,7 +110,7 @@ def TestNodeEvacuate(node, node2):
node3
=
qa_config
.
AcquireNode
(
exclude
=
[
node
,
node2
])
try
:
if
qa_utils
.
GetNodeInstances
(
node3
):
if
qa_utils
.
GetNodeInstances
(
node3
,
secondaries
=
True
):
raise
qa_errors
.
UnusableNodeError
(
"
Evacuation node has at least one
"
"
secondary instance. This test requires
"
"
it to have no secondary instances.
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment