blob: a884bfd8b60feed5d6387427daa80f2ef60164a5 [file] [log] [blame]
Gary Wu950a3232019-03-26 13:08:29 -07001parameters:
2
3 ubuntu_1804_image: ubuntu-18.04
4
5 apt_proxy: 10.12.5.2:8000
6 docker_proxy: 10.12.5.2:5000
7
8 rancher_vm_flavor: m1.large
Gary Wu415f6a82019-04-11 15:56:27 -07009 k8s_vm_flavor: m1.xlarge
Gary Wu950a3232019-03-26 13:08:29 -070010 etcd_vm_flavor: m1.medium
11 orch_vm_flavor: m1.large
12
13 public_net_id: 971040b2-7059-49dc-b220-4fab50cb2ad4
14
15 oam_network_cidr: 10.0.0.0/16
16
17 integration_gerrit_branch: master
18
19 helm_deploy_delay: 2.5m
20
21 integration_override_yaml: >
22 global:
23 repository: __docker_proxy__
24 pullPolicy: IfNotPresent
25 robot:
26 enabled: true
27 flavor: large
28 appcUsername: "appc@appc.onap.org"
29 appcPassword: "demo123456!"
30 openStackKeyStoneUrl: "http://10.12.25.2:5000"
31 openStackPublicNetId: "__public_net_id__"
32 openStackTenantId: "${OS_PROJECT_ID}"
33 openStackUserName: "${OS_USERNAME}"
34 ubuntu14Image: "ubuntu-14-04-cloud-amd64"
35 ubuntu16Image: "ubuntu-16-04-cloud-amd64"
36 openStackPrivateNetId: "__oam_network_id__"
37 openStackPrivateSubnetId: "__oam_subnet_id__"
38 openStackPrivateNetCidr: "__oam_network_cidr__"
39 openStackSecurityGroup: "__sec_group__"
40 openStackOamNetworkCidrPrefix: "10.0"
41 dcaeCollectorIp: "__k8s_01_vm_ip__"
42 vnfPubKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDKXDgoo3+WOqcUG8/5uUbk81+yczgwC4Y8ywTmuQqbNxlY1oQ0YxdMUqUnhitSXs5S/yRuAVOYHwGg2mCs20oAINrP+mxBI544AMIb9itPjCtgqtE2EWo6MmnFGbHB4Sx3XioE7F4VPsh7japsIwzOjbrQe+Mua1TGQ5d4nfEOQaaglXLLPFfuc7WbhbJbK6Q7rHqZfRcOwAMXgDoBqlyqKeiKwnumddo2RyNT8ljYmvB6buz7KnMinzo7qB0uktVT05FH9Rg0CTWH5norlG5qXgP2aukL0gk1ph8iAt7uYLf1ktp+LJI2gaF6L0/qli9EmVCSLr1uJ38Q8CBflhkh"
43 demoArtifactsVersion: "1.3.0"
44 demoArtifactsRepoUrl: "https://nexus.onap.org/content/repositories/releases"
45 scriptVersion: "1.3.0"
46 rancherIpAddress: "__rancher_ip_addr__"
47 config:
Gary Wu28c30b52019-04-05 14:01:10 -070048 openStackEncryptedPasswordHere: "${OS_PASSWORD_ENCRYPTED_FOR_ROBOT}"
Gary Wu950a3232019-03-26 13:08:29 -070049 so:
50 enabled: true
51 so-catalog-db-adapter:
52 config:
53 openStackUserName: "${OS_USERNAME}"
54 openStackKeyStoneUrl: "http://10.12.25.2:5000/v2.0"
55 openStackEncryptedPasswordHere: "${OS_PASSWORD_ENCRYPTED}"
56 appc:
57 enabled: true
Gary Wuf606a3f2019-04-08 14:13:20 -070058 replicaCount: 1
Gary Wu950a3232019-03-26 13:08:29 -070059 config:
Gary Wuf606a3f2019-04-08 14:13:20 -070060 enableClustering: false
Gary Wu950a3232019-03-26 13:08:29 -070061 openStackType: "OpenStackProvider"
62 openStackName: "OpenStack"
63 openStackKeyStoneUrl: "http://10.12.25.2:5000/v2.0"
64 openStackServiceTenantName: "${OS_PROJECT_NAME}"
65 openStackDomain: "${OS_USER_DOMAIN_NAME}"
66 openStackUserName: "${OS_USERNAME}"
67 openStackEncryptedPassword: "${OS_PASSWORD}"
68 sdnc:
69 enabled: true
Gary Wuf606a3f2019-04-08 14:13:20 -070070 replicaCount: 1
Gary Wu950a3232019-03-26 13:08:29 -070071 config:
Gary Wuf606a3f2019-04-08 14:13:20 -070072 enableClustering: false
Gary Wu950a3232019-03-26 13:08:29 -070073 aai:
74 enabled: true
75 liveness:
76 initialDelaySeconds: 120
77 aai-data-router:
78 liveness:
79 initialDelaySeconds: 120
80 aai-sparky-be:
81 liveness:
82 initialDelaySeconds: 120
83 aai-spike:
84 liveness:
85 initialDelaySeconds: 120
Yang Xuafb97862019-04-09 00:03:48 -040086 aai-cassandra:
Gary Wue2e91772019-04-11 13:14:45 -070087 replicaCount: 3
Yang Xuf9492302019-04-10 00:19:02 -040088 liveness:
Gary Wue2e91772019-04-11 13:14:45 -070089 periodSeconds: 600
Yang Xuf9492302019-04-10 00:19:02 -040090 readiness:
Gary Wue2e91772019-04-11 13:14:45 -070091 periodSeconds: 600
Gary Wu950a3232019-03-26 13:08:29 -070092 portal:
93 enabled: true
94 global:
95 portalHostName: "__portal_hostname__"
96 portal-mariadb:
97 config:
98 sdcFeHostName: "__portal_hostname__"
99 papHostName: "__portal_hostname__"
100 vidHostName: "__portal_hostname__"
101 aaiSparkyHostName: "__portal_hostname__"
102 cliHostName: "__portal_hostname__"
103 portalSdkHostName: "__portal_hostname__"
104 dmaapBcHostName: "__portal_hostname__"
105 msbHostName: "__portal_hostname__"
Yang Xu6bccc7d2019-04-11 21:20:24 -0400106 portal-cassandra:
107 liveness:
108 periodSeconds: 600
109 readiness:
110 periodSeconds: 600
Gary Wu950a3232019-03-26 13:08:29 -0700111 vid:
112 enabled: true
113 config:
114 portalhost: "__portal_hostname__"
115
116 aaf:
117 enabled: true
118 cassandra:
Gary Wue2e91772019-04-11 13:14:45 -0700119 enabled: true
120 liveness:
121 periodSeconds: 600
122 readiness:
123 periodSeconds: 600
Gary Wu950a3232019-03-26 13:08:29 -0700124 clamp:
125 enabled: true
126 cli:
127 enabled: true
128 consul:
129 enabled: true
130 contrib:
131 enabled: true
132 dcaegen2:
133 enabled: true
134 dmaap:
135 enabled: true
136 esr:
137 enabled: true
138 log:
139 enabled: true
140 sniro-emulator:
141 enabled: true
142 oof:
143 enabled: true
Yang Xuafb97862019-04-09 00:03:48 -0400144 oof-has:
145 music:
146 music-cassandra:
Gary Wue2e91772019-04-11 13:14:45 -0700147 replicaCount: 3
Yang Xuf9492302019-04-10 00:19:02 -0400148 liveness:
Gary Wue2e91772019-04-11 13:14:45 -0700149 periodSeconds: 600
Yang Xuf9492302019-04-10 00:19:02 -0400150 readiness:
Gary Wue2e91772019-04-11 13:14:45 -0700151 periodSeconds: 600
Yang Xuafb97862019-04-09 00:03:48 -0400152 music-tomcat:
153 replicaCount: 1
Gary Wu950a3232019-03-26 13:08:29 -0700154 msb:
155 enabled: true
156 multicloud:
157 enabled: true
158 nbi:
159 enabled: true
160 policy:
161 enabled: true
162 pomba:
163 enabled: true
164 sdc:
165 enabled: true
Yang Xud080b192019-04-11 20:05:52 -0400166 sdc-cs:
167 liveness:
168 periodSeconds: 600
169 readiness:
170 periodSeconds: 600
Gary Wu950a3232019-03-26 13:08:29 -0700171 uui:
172 enabled: true
173 vfc:
174 enabled: true
175 vnfsdk:
176 enabled: true