Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
2feac295
Commit
2feac295
authored
9 years ago
by
Smana
Browse files
Options
Downloads
Patches
Plain Diff
change tests, full path of kubectl binary
parent
60d6195a
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
tests/testcases/020_check-create-pod.yml
+2
-2
2 additions, 2 deletions
tests/testcases/020_check-create-pod.yml
tests/testcases/030_check-network.yml
+2
-2
2 additions, 2 deletions
tests/testcases/030_check-network.yml
with
4 additions
and
4 deletions
tests/testcases/020_check-create-pod.yml
+
2
−
2
View file @
2feac295
...
@@ -3,10 +3,10 @@
...
@@ -3,10 +3,10 @@
tasks
:
tasks
:
-
name
:
Run a replica controller composed of 2 pods
-
name
:
Run a replica controller composed of 2 pods
shell
:
"
kubectl
run
test
--image=busybox
--replicas=2
--command
--
tail
-f
/dev/null"
shell
:
"
/usr/local/bin/
kubectl
run
test
--image=busybox
--replicas=2
--command
--
tail
-f
/dev/null"
-
name
:
Pods are running
-
name
:
Pods are running
shell
:
"
kubectl
get
pods
--no-headers
-o
json"
shell
:
"
/usr/local/bin/
kubectl
get
pods
--no-headers
-o
json"
register
:
run_pods_log
register
:
run_pods_log
until
:
(run_pods_log.stdout | from_json)['items'] | map(attribute = 'status.phase') | join(',') == "Running,Running"
until
:
(run_pods_log.stdout | from_json)['items'] | map(attribute = 'status.phase') | join(',') == "Running,Running"
retries
:
24
retries
:
24
...
...
This diff is collapsed.
Click to expand it.
tests/testcases/030_check-network.yml
+
2
−
2
View file @
2feac295
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
tasks
:
tasks
:
-
name
:
Get pod names
-
name
:
Get pod names
shell
:
"
kubectl
get
pods
-o
json"
shell
:
"
/usr/local/bin/
kubectl
get
pods
-o
json"
register
:
pods
register
:
pods
-
set_fact
:
-
set_fact
:
...
@@ -18,4 +18,4 @@
...
@@ -18,4 +18,4 @@
-
name
:
Ping between pods is working
-
name
:
Ping between pods is working
shell
:
"
kubectl
exec
{{pod_names[0]}}
--
ping
-c
4
{{
pod_ips[1]
}}"
shell
:
"
/usr/local/bin/
kubectl
exec
{{pod_names[0]}}
--
ping
-c
4
{{
pod_ips[1]
}}"
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