cdn-ops/global/overlay/etc/puppet/modules/cdn/manifests/l4lb.pp

18 lines
516 B
ObjectPascal
Raw Normal View History

# Configure the SUNET CDN l4lb service
class cdn::l4lb(
2024-10-22 13:23:03 +00:00
Boolean $cilium_enabled = false,
String $cilium_version = 'v1.16.1',
String $cilium_devices = 'enp129s0f1np1',
)
{
if $cilium_enabled {
sunet::docker_compose { 'sunet-cdn-l4lb':
content => template('cdn/l4lb/docker-compose.yml.erb'),
service_name => 'cdn-l4lb',
compose_dir => '/opt/sunet-cdn/compose/l4lb',
compose_filename => 'docker-compose.yml',
description => 'SUNET CDN l4lb',
}
}
}