Puppet Class: wso2base::params

Inherited by:
wso2base::java
wso2base::hosts
wso2base::maven
wso2base::environment
Defined in:
manifests/params.pp

Overview



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'manifests/params.pp', line 3

class wso2base::params {

    $domain               = "example.com"
    $package_repo         = "http://downloads.${domain}"
    $depsync_svn_repo     = "http://svn.${domain}/svn/amdepsync"
    $local_package_dir    = "/mnt/packs"
    $hosts_mapping = [  
                        "10.33.14.51,puppetmaster.example.com",
                        "10.33.14.56,downloads.example.com",
                        "10.33.14.54,mysql.example.com",
                        "10.33.14.56,svn.example.com",
                        "10.33.14.54,elb.example.com",
                        "10.33.14.54,gateway.api.example.com",
                        "10.33.14.54,mgt.gateway.api.example.com",
                        "10.33.14.54,keymanager.api.example.com",
                        "10.33.14.69,publisher.api.example.com",
                    ]

	# Java
    $java_home  = "jdk1.7.0_25"
    $package    = "jdk-7u25-linux-x64.tar.gz"
    $java_dir   = '/opt'

    # maven
    $maven_package  ="apache-maven-3.0.5-bin.tar.gz"
    $maven_dir      ="apache-maven-3.0.5" 

    # Service subdomains
    $am_subdomain         = 'api'
    $elb_subdomain        = 'elb'
    $gateway_subdomain    = 'gateway'
    $keymanager_subdomain = 'keymanager'
    $apistore_subdomain   = 'apistore'
    $publisher_subdomain  = 'publisher'
    $management_subdomain = 'mgt'
    
    $depsync_svn_user     = 'wso2'
    $depsync_svn_password = 'wso2123'
    
}