forked from sous-chefs/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
163 additions
and
458 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,179 +1,75 @@ | ||
driver: | ||
name: dokken | ||
privileged: true # because Docker and SystemD/Upstart | ||
chef_image: chef/chef | ||
chef_version: current | ||
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %> | ||
|
||
transport: | ||
name: dokken | ||
|
||
provisioner: | ||
name: dokken | ||
deprecations_as_errors: true | ||
|
||
verifier: | ||
name: inspec | ||
|
||
platforms: | ||
- name: amazonlinux | ||
driver: | ||
image: dokken/amazonlinux | ||
pid_one_command: /sbin/init | ||
|
||
- name: debian-7 | ||
driver: | ||
image: debian:7 | ||
image: dokken/debian-7 | ||
pid_one_command: /sbin/init | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
- RUN /usr/bin/apt-get install apt-transport-https lsb-release procps net-tools -y | ||
|
||
- name: debian-8 | ||
driver: | ||
image: debian:8 | ||
image: dokken/debian-8 | ||
pid_one_command: /bin/systemd | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
|
||
- name: debian-9 | ||
driver: | ||
image: dokken/debian-9 | ||
pid_one_command: /bin/systemd | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
- RUN /usr/bin/apt-get install apt-transport-https lsb-release procps net-tools -y | ||
|
||
- name: centos-6 | ||
driver: | ||
image: centos:6 | ||
platform: rhel | ||
image: dokken/centos-6 | ||
pid_one_command: /sbin/init | ||
intermediate_instructions: | ||
- RUN yum -y install which initscripts | ||
|
||
- name: centos-7 | ||
driver: | ||
image: centos:7 | ||
platform: rhel | ||
image: dokken/centos-7 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: fedora-latest | ||
driver: | ||
image: dokken/fedora-latest | ||
pid_one_command: /usr/lib/systemd/systemd | ||
intermediate_instructions: | ||
- RUN yum -y install lsof which systemd-sysv initscripts | ||
|
||
- name: ubuntu-14.04 | ||
driver: | ||
image: ubuntu-upstart:14.04 | ||
image: dokken/ubuntu-14.04 | ||
pid_one_command: /sbin/init | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
- RUN /usr/bin/apt-get install apt-transport-https lsb-release procps net-tools -y | ||
|
||
- name: ubuntu-16.04 | ||
driver: | ||
image: ubuntu:16.04 | ||
image: dokken/ubuntu-16.04 | ||
pid_one_command: /bin/systemd | ||
intermediate_instructions: | ||
- RUN /usr/bin/apt-get update | ||
- RUN /usr/bin/apt-get install apt-transport-https lsb-release procps net-tools -y | ||
|
||
suites: | ||
# | ||
# Smoke suite | ||
# | ||
- name: smoke_package_stable | ||
run_list: jenkins_server_wrapper::default | ||
attributes: | ||
jenkins: | ||
master: | ||
install_method: package | ||
- name: smoke_package_current | ||
run_list: jenkins_server_wrapper::default | ||
attributes: | ||
jenkins: | ||
master: | ||
channel: current | ||
install_method: package | ||
- name: smoke_war_stable | ||
run_list: jenkins_server_wrapper::default | ||
attributes: | ||
jenkins: | ||
master: | ||
install_method: war | ||
source: https://updates.jenkins.io/stable/latest/jenkins.war | ||
- name: smoke_war_latest | ||
run_list: jenkins_server_wrapper::default | ||
attributes: | ||
jenkins: | ||
master: | ||
install_method: war | ||
source: https://updates.jenkins.io/latest/jenkins.war | ||
|
||
# | ||
# Authentication suites | ||
# | ||
- name: authentication_private_key | ||
run_list: jenkins_authentication::private_key | ||
- name: authentication_username_password | ||
run_list: jenkins_authentication::username_password | ||
|
||
# | ||
# Command suites | ||
# | ||
- name: jenkins_command_execute | ||
run_list: jenkins_command::execute | ||
|
||
# | ||
# Credentials suites | ||
# | ||
- name: jenkins_credentials_create | ||
run_list: jenkins_credentials::create | ||
- name: jenkins_credentials_delete | ||
run_list: jenkins_credentials::delete | ||
|
||
# | ||
# Job suites | ||
# | ||
- name: jenkins_job_create | ||
run_list: | ||
- jenkins_job::create | ||
- jenkins_job::create_folder | ||
- name: jenkins_job_delete | ||
run_list: jenkins_job::delete | ||
- name: jenkins_job_disable | ||
run_list: jenkins_job::disable | ||
- name: jenkins_job_enable | ||
run_list: jenkins_job::enable | ||
- name: jenkins_job_build | ||
run_list: jenkins_job::build | ||
|
||
# | ||
# Script suites | ||
# | ||
- name: jenkins_script | ||
run_list: jenkins_script::execute | ||
|
||
# | ||
# Plugin suites | ||
# | ||
- name: jenkins_plugin_disable | ||
run_list: jenkins_plugin::disable | ||
- name: jenkins_plugin_enable | ||
run_list: jenkins_plugin::enable | ||
- name: jenkins_plugin_install | ||
run_list: jenkins_plugin::install | ||
- name: jenkins_plugin_uninstall | ||
run_list: jenkins_plugin::uninstall | ||
|
||
# | ||
# Slave suites | ||
# | ||
- name: jenkins_slave_create | ||
run_list: | ||
- jenkins_slave::create_jnlp | ||
- jenkins_slave::create_ssh | ||
- name: jenkins_slave_delete | ||
run_list: | ||
- jenkins_slave::delete_jnlp | ||
- jenkins_slave::delete_ssh | ||
- name: jenkins_slave_connect | ||
run_list: jenkins_slave::connect | ||
- name: jenkins_slave_disconnect | ||
run_list: jenkins_slave::disconnect | ||
- name: jenkins_slave_online | ||
run_list: jenkins_slave::online | ||
- name: jenkins_slave_offline | ||
run_list: jenkins_slave::offline | ||
|
||
# | ||
# User suites | ||
# | ||
- name: jenkins_user_create | ||
run_list: jenkins_user::create | ||
- name: jenkins_user_delete | ||
run_list: jenkins_user::delete | ||
- name: opensuse-leap | ||
driver: | ||
image: dokken/opensuse-leap | ||
pid_one_command: /bin/systemd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,5 @@ | |
|
||
source 'https://rubygems.org' | ||
|
||
gem 'tomlrb' | ||
gem 'rake' | ||
gem 'stove' | ||
gem 'community_cookbook_releaser' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.