tripleo-ci/scripts/te-broker/te-broker.pp
Sorin Sbarnea 3f95743809 Corrected openstack-virtual-baremetal repo location
Uses the new location of openstack-virtual-baremetal as it was imported
to openstack organization earlier today.

Change-Id: I409c0cd172bbec4c19089b6ebe3fd7200ba2fa75
2019-01-15 15:54:59 +00:00

29 lines
651 B
Puppet

Exec { path => [ "/bin/", "/sbin/" ] }
vcsrepo {"/opt/stack/openstack-virtual-baremetal":
source => "https://git.openstack.org/openstack/openstack-virtual-baremetal.git",
provider => git,
ensure => latest,
}
vcsrepo {"/opt/stack/tripleo-ci":
source => "https://git.openstack.org/openstack-infra/tripleo-ci",
provider => git,
ensure => latest,
}
cron {"refresh-server":
command => "timeout 20m puppet apply /opt/stack/tripleo-ci/scripts/te-broker/te-broker.pp",
minute => "*/30"
}
service{"te_workers":
ensure => "running",
enable => true,
}
service{"geard":
ensure => "running",
enable => true,
}