-
-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated kitchen and travis to support centos #71
Conversation
Signed-off-by: Matt Oswalt <[email protected]>
Signed-off-by: Matt Oswalt <[email protected]>
- name: centos-7 | ||
driver_config: | ||
image: stackstorm/packagingtest:centos7 | ||
platform: rhel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just checked, you were right.
There is centos
option, according to https://github.com/test-kitchen/kitchen-docker#platform
Cool. I also installed test kitchen on my laptop last night so I am not
flying blind any more
…On Jan 6, 2017 5:33 AM, "Eugen C." ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In .kitchen.yml
<#71 (review)>
:
> @@ -33,6 +33,18 @@ platforms:
run_command: /sbin/init
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
+ - name: centos-6
+ driver_config:
+ image: stackstorm/packagingtest:centos6
+ platform: rhel
+ run_command: /sbin/init
+ - name: centos-7
+ driver_config:
+ image: stackstorm/packagingtest:centos7
+ platform: rhel
I double-checked, you were right.
There is centos option according to https://github.com/test-
kitchen/kitchen-docker#platform
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#71 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AECM-_o0uC3OqHBkbkXGy345qk0TYuOsks5rPkKYgaJpZM4LcRGx>
.
|
I investigated the build failure. I've submitted patch in
Hope it'll unblock you. |
Signed-off-by: Matt Oswalt <[email protected]>
Signed-off-by: Matt Oswalt <[email protected]>
@@ -0,0 +1,27 @@ | |||
# This Dockerfile is a temporary solution so that we can test our centos |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice to hide these intermediate Dockerfiles under .kitchen/
dir (for example).
Just to avoid confusion from users when we place Dockerfile
in the root dir of repo.
FWIW this issue StackStorm/chef-stackstorm#30 in the chef-stackstorm discusses why you shouldn't use the |
Signed-off-by: Matt Oswalt <[email protected]>
Closes #68 and #69