fuel-plugin-contrail/deployment_scripts/puppet/manifests/site-contrail-post1.pp

60 lines
1.9 KiB
Puppet

# Copyright 2015 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
include contrail
$node_role = 'base-os'
Exec { path => '/bin:/sbin:/usr/bin:/usr/sbin'}
if $contrail::node_name =~ /^contrail.\d+$/ {
class { 'contrail::network':
node_role => $node_role,
address => $contrail::address,
ifname => $contrail::ifname,
netmask => $contrail::netmask_short,
default_gw => $contrail::default_gw,
}
case $operatingsystem
{
Ubuntu:
{
file { '/etc/apt/preferences.d/contrail-pin-100':
ensure => file,
source => 'puppet:///modules/contrail/contrail-pin-100',
} ->
package { 'tzdata':
ensure => '2015d-0ubuntu0.14.04',
before => Class['contrail::package'],
}
$pkgs = ['python-crypto','python-netaddr','python-paramiko',
'ifenslave-2.6','patch','openjdk-7-jre-headless',
'python-contrail','contrail-setup','contrail-utils','contrail-nodemgr','supervisor']
}
CentOS:
{
$pkgs = ['python-netaddr','python-paramiko','patch',
'java-1.7.0-openjdk','contrail-fabric-utils','contrail-setup']
$pip_pkgs = ['Fabric-1.7.5']
}
default: {}
}
class { 'contrail::package':
install => $pkgs,
pip_install => $pip_pkgs,
}
}