`jenkins_installonly` was a residue of a bigger playbook this role was part of. Doesn't really feel clean and idempotent so I remove it.
20 lines
696 B
YAML
20 lines
696 B
YAML
all:
|
|
hosts:
|
|
test-jenkins-via-ansible.example.net:
|
|
jobs:
|
|
template-php-v1: # Job template (deactivated) which can be manually cloned.
|
|
foo:
|
|
repository_url: ssh://git@code.example.net:2020/foo
|
|
deploy_url: prod.example.net:/var/www/test1234 # TODO: not implemented yet
|
|
bar:
|
|
repository_url: ssh://git@code.example.net:2020/bar
|
|
branch_spec: '*/develop'
|
|
baz:
|
|
# Just a test to see if the default template can
|
|
# be run without any vars
|
|
vars:
|
|
# Check if etckeeper is installed and /etc is clean
|
|
checketckeeper: True
|
|
|
|
# admin email address
|
|
jenkins_admin_email: postmaster@example.net
|