├── .ansible-lint ├── .cookiecutter.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── .gitlab-ci.yml ├── .yamllint ├── LICENSE ├── README.md ├── defaults └── main.yml ├── files └── pipeline_error_in_init_console ├── handlers └── main.yml ├── library └── jenkins_job.py ├── meta └── main.yml ├── molecule ├── cloud-aws-direct │ ├── molecule.yml │ └── playbook.yml ├── default │ ├── Dockerfile.j2 │ ├── molecule.yml │ └── playbook.yml └── resources │ ├── prepare.yml │ └── tests │ └── verify.yml ├── playbook.yml ├── requirements.yml ├── sonar-project.properties ├── tasks ├── add_new_jobs.yml ├── configure │ ├── Debian.yml │ ├── RedHat.yml │ └── not-supported.yml ├── configure_globaltools.yml ├── configure_jcasc │ └── jenkins_casc.yml ├── configure_plugins_groovy │ ├── configure_bitbucket_project.yml │ ├── configure_ec2.yml │ ├── configure_github.yml │ ├── configure_gitlab.yml │ ├── configure_jira.yml │ ├── configure_pipeline_libraries.yml │ ├── configure_security.yml │ ├── configure_smtp.yml │ ├── configure_sonarqube.yml │ ├── copy_custom_files.yml │ └── set_credentials.yml ├── configure_ssh_keys.yml ├── globaltools │ ├── ant.yml │ ├── docker.yml │ ├── gradle.yml │ ├── jdk.yml │ ├── maven.yml │ ├── nodejs.yml │ ├── sonarscanner.yml │ └── sonarscannermsbuild.yml ├── install_plugins.yml ├── main.yml ├── repository_install │ ├── Debian.yml │ ├── RedHat.yml │ └── not-supported.yml ├── selinux-support.yml ├── ssl │ ├── Linux.yml │ └── Linux_keystore.yml └── system │ ├── Debian.yml │ ├── RedHat.yml │ └── not-supported.yml ├── templates ├── globaltools │ ├── ant.groovy.j2 │ ├── docker.groovy.j2 │ ├── gradle.groovy.j2 │ ├── jdk.groovy.j2 │ ├── maven.groovy.j2 │ ├── nodejs.groovy.j2 │ ├── sonarscanner.groovy.j2 │ └── sonarscannermsbuild.groovy.j2 ├── jcasc │ └── jenkins.yml.j2 ├── jenkins_configure_plugins │ ├── add-smtp.groovy.j2 │ ├── add-ssh-key.groovy.j2 │ ├── check-smtp.groovy.j2 │ ├── configure-bitbucket-project.groovy.j2 │ ├── configure-jcasc.groovy.j2 │ ├── configure-jira.groovy.j2 │ ├── configure-pipeline-libraries.groovy.j2 │ ├── configure-security.groovy.j2 │ ├── configure_sonarqube.groovy.j2 │ ├── set-ec2_configuration.groovy.j2 │ ├── set-github-connection.groovy.j2 │ └── set-gitlab-connection.groovy.j2 ├── jenkins_create_jobs │ ├── dsl_hybris_create_job.groovy.j2 │ ├── run_seed_job.groovy.j2 │ └── seedJob.xml.j2 ├── jenkins_credentials │ └── set-credentials.groovy.j2 ├── jenkins_install_plugins │ ├── proxy_configuration.groovy.j2 │ └── update_center_refresh.groovy.j2 └── jenkins_system_config │ ├── Debian_configuration.j2 │ ├── RedHat_configuration.j2 │ ├── disable_unlock.groovy.j2 │ ├── jenkins.service │ └── reset_user_password.groovy.j2 └── vars ├── Amazon.yml ├── Debian.yml ├── RedHat.yml └── main.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.cookiecutter.yml: -------------------------------------------------------------------------------- 1 | --- 2 | default_context: 3 | role_name: jenkins 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.github/ISSUE_TEMPLATE/documentation_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /files/pipeline_error_in_init_console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/files/pipeline_error_in_init_console -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /library/jenkins_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/library/jenkins_job.py -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/molecule/cloud-aws-direct/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/molecule/cloud-aws-direct/playbook.yml -------------------------------------------------------------------------------- /molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/molecule/default/playbook.yml -------------------------------------------------------------------------------- /molecule/resources/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/molecule/resources/prepare.yml -------------------------------------------------------------------------------- /molecule/resources/tests/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/molecule/resources/tests/verify.yml -------------------------------------------------------------------------------- /playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/playbook.yml -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/requirements.yml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tasks/add_new_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/add_new_jobs.yml -------------------------------------------------------------------------------- /tasks/configure/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure/Debian.yml -------------------------------------------------------------------------------- /tasks/configure/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure/RedHat.yml -------------------------------------------------------------------------------- /tasks/configure/not-supported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure/not-supported.yml -------------------------------------------------------------------------------- /tasks/configure_globaltools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_globaltools.yml -------------------------------------------------------------------------------- /tasks/configure_jcasc/jenkins_casc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_jcasc/jenkins_casc.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_bitbucket_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_bitbucket_project.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_ec2.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_github.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_gitlab.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_jira.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_jira.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_pipeline_libraries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_pipeline_libraries.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_security.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_smtp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_smtp.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/configure_sonarqube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/configure_sonarqube.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/copy_custom_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/copy_custom_files.yml -------------------------------------------------------------------------------- /tasks/configure_plugins_groovy/set_credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_plugins_groovy/set_credentials.yml -------------------------------------------------------------------------------- /tasks/configure_ssh_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/configure_ssh_keys.yml -------------------------------------------------------------------------------- /tasks/globaltools/ant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/ant.yml -------------------------------------------------------------------------------- /tasks/globaltools/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/docker.yml -------------------------------------------------------------------------------- /tasks/globaltools/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/gradle.yml -------------------------------------------------------------------------------- /tasks/globaltools/jdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/jdk.yml -------------------------------------------------------------------------------- /tasks/globaltools/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/maven.yml -------------------------------------------------------------------------------- /tasks/globaltools/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/nodejs.yml -------------------------------------------------------------------------------- /tasks/globaltools/sonarscanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/sonarscanner.yml -------------------------------------------------------------------------------- /tasks/globaltools/sonarscannermsbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/globaltools/sonarscannermsbuild.yml -------------------------------------------------------------------------------- /tasks/install_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/install_plugins.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/repository_install/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/repository_install/Debian.yml -------------------------------------------------------------------------------- /tasks/repository_install/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/repository_install/RedHat.yml -------------------------------------------------------------------------------- /tasks/repository_install/not-supported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/repository_install/not-supported.yml -------------------------------------------------------------------------------- /tasks/selinux-support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/selinux-support.yml -------------------------------------------------------------------------------- /tasks/ssl/Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/ssl/Linux.yml -------------------------------------------------------------------------------- /tasks/ssl/Linux_keystore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/ssl/Linux_keystore.yml -------------------------------------------------------------------------------- /tasks/system/Debian.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /tasks/system/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/system/RedHat.yml -------------------------------------------------------------------------------- /tasks/system/not-supported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/tasks/system/not-supported.yml -------------------------------------------------------------------------------- /templates/globaltools/ant.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/ant.groovy.j2 -------------------------------------------------------------------------------- /templates/globaltools/docker.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/docker.groovy.j2 -------------------------------------------------------------------------------- /templates/globaltools/gradle.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/gradle.groovy.j2 -------------------------------------------------------------------------------- /templates/globaltools/jdk.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/jdk.groovy.j2 -------------------------------------------------------------------------------- /templates/globaltools/maven.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/maven.groovy.j2 -------------------------------------------------------------------------------- /templates/globaltools/nodejs.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/nodejs.groovy.j2 -------------------------------------------------------------------------------- /templates/globaltools/sonarscanner.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/sonarscanner.groovy.j2 -------------------------------------------------------------------------------- /templates/globaltools/sonarscannermsbuild.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/globaltools/sonarscannermsbuild.groovy.j2 -------------------------------------------------------------------------------- /templates/jcasc/jenkins.yml.j2: -------------------------------------------------------------------------------- 1 | --- 2 | {{ jenkins2_jcasc_config | to_yaml }} 3 | -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/add-smtp.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/add-smtp.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/add-ssh-key.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/add-ssh-key.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/check-smtp.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/check-smtp.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/configure-bitbucket-project.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/configure-bitbucket-project.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/configure-jcasc.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/configure-jcasc.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/configure-jira.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/configure-jira.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/configure-pipeline-libraries.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/configure-pipeline-libraries.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/configure-security.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/configure-security.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/configure_sonarqube.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/configure_sonarqube.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/set-ec2_configuration.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/set-ec2_configuration.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/set-github-connection.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/set-github-connection.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_configure_plugins/set-gitlab-connection.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_configure_plugins/set-gitlab-connection.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_create_jobs/dsl_hybris_create_job.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_create_jobs/dsl_hybris_create_job.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_create_jobs/run_seed_job.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_create_jobs/run_seed_job.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_create_jobs/seedJob.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_create_jobs/seedJob.xml.j2 -------------------------------------------------------------------------------- /templates/jenkins_credentials/set-credentials.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_credentials/set-credentials.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_install_plugins/proxy_configuration.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_install_plugins/proxy_configuration.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_install_plugins/update_center_refresh.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_install_plugins/update_center_refresh.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_system_config/Debian_configuration.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_system_config/Debian_configuration.j2 -------------------------------------------------------------------------------- /templates/jenkins_system_config/RedHat_configuration.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_system_config/RedHat_configuration.j2 -------------------------------------------------------------------------------- /templates/jenkins_system_config/disable_unlock.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_system_config/disable_unlock.groovy.j2 -------------------------------------------------------------------------------- /templates/jenkins_system_config/jenkins.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_system_config/jenkins.service -------------------------------------------------------------------------------- /templates/jenkins_system_config/reset_user_password.groovy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/templates/jenkins_system_config/reset_user_password.groovy.j2 -------------------------------------------------------------------------------- /vars/Amazon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/vars/Amazon.yml -------------------------------------------------------------------------------- /vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/vars/Debian.yml -------------------------------------------------------------------------------- /vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/vars/RedHat.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-jenkins/HEAD/vars/main.yml --------------------------------------------------------------------------------