Merge "Add Pluggable Security to Gizmo"
[oom.git] / kubernetes / robot / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global: # global defaults
19   nodePortPrefix: 302
20   ubuntuInitRepository: registry.hub.docker.com
21   persistence: {}
22
23 # application image
24 repository: nexus3.onap.org:10001
25 image: onap/testsuite:1.3.1-STAGING-latest
26 pullPolicy: Always
27
28 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
29
30 # flag to enable debugging - application support required
31 debugEnabled: false
32
33 #################################################################
34 # Application configuration defaults.
35 #################################################################
36 config:
37
38 # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
39   openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
40
41 # Demo configuration
42 # Nexus demo artifact version.  Maps to GLOBAL_INJECTED_ARTIFACTS_VERSION
43 demoArtifactsVersion: "1.2.0-SNAPSHOT"
44 # Openstack medium sized flavour name.  Maps GLOBAL_INJECTED_VM_FLAVOR
45 openStackFlavourMedium: "m1.medium"
46 # Openstack keystone URL.  Maps to GLOBAL_INJECTED_KEYSTONE
47 openStackKeyStoneUrl: "http://1.2.3.4:5000"
48 # UUID of the Openstack network that can assign floating ips.  Maps to GLOBAL_INJECTED_PUBLIC_NET_ID
49 openStackPublicNetId: "e8f51958045716781ffc"
50 # password for Openstack tenant where VNFs will be spawned.  Maps to GLOBAL_INJECTED_OPENSTACK_PASSWORD
51 openStackPassword: "tenantPassword"
52 # Openstack region.  Maps to GLOBAL_INJECTED_REGION
53 openStackRegion: "RegionOne"
54 # Openstack tenant UUID where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_TENANT_ID
55 openStackTenantId: "47899782ed714295b1151681fdfd51f5"
56 # username for Openstack tenant where VNFs will be spawned.  Maps to GLOBAL_INJECTED_OPENSTACK_USERNAME
57 openStackUserName: "tenantUsername"
58 # Project name of Openstack where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_PROJECT_NAME
59 openStackProjectName: "onap"
60 # Domain id of openstack where VNFs will be deployed. Maps to GLOBAL_INJECTED_OPENSTACK_DOMAIN_ID
61 openStackDomainId: "default"
62 # Openstack Keystone API version. Valid values are [ v2.0, v3 ]. Maps to GLOBAL_INJECTED_OPENSTACK_KEYSTONE_API_VERSION
63 openStackKeystoneAPIVersion: ""
64 # Openstack glance image name for Ubuntu 14.  Maps to GLOBAL_INJECTED_UBUNTU_1404_IMAGE
65 ubuntu14Image: "Ubuntu_14_trusty"
66 # Openstack glance image name for Ubuntu 16.  Maps to GLOBAL_INJECTED_UBUNTU_1604_IMAGE
67 ubuntu16Image: "Ubuntu_16_xenial"
68 # GLOBAL_INJECTED_SCRIPT_VERSION.  Maps to GLOBAL_INJECTED_SCRIPT_VERSION
69 scriptVersion: "1.2.0-SNAPSHOT"
70 # Openstack network to which VNFs will bind their primary (first) interface.  Maps to GLOBAL_INJECTED_NETWORK
71 openStackPrivateNetId: "e8f51956-00dd-4425-af36-045716781ffc"
72
73 # SDNC Preload configuration
74 # Openstack subnet UUID for the network defined by openStackPrivateNetId.  Maps to onap_private_subnet_id
75 openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc"
76 # CIDR notation for the Openstack private network where VNFs will be spawned.  Maps to onap_private_net_cidr
77 openStackPrivateNetCidr: "10.0.0.0/8"
78 # The first 2 octets of the private Openstack subnet where VNFs will be spawned.
79 # Needed because sdnc preload templates hardcodes things like this 10.0.${ecompnet}.X
80 openStackOamNetworkCidrPrefix: "10.0"
81 # Override with Pub Key for access to VNF
82 vnfPubKey: "FILL_IN_WITH_PUB_KEY"
83 # Override with DCAE VES Collector external IP
84 dcaeCollectorIp: "FILL_IN_WITH_DCAE_VES_COLLECTOR_IP"
85
86 # default number of instances
87 replicaCount: 1
88
89 nodeSelector: {}
90
91 affinity: {}
92
93 # Resource Limit flavor -By Default using small
94 flavor: small
95 # Segregation for Different environment (Small and Large)
96 resources:
97   small:
98     limits:
99       cpu: 2000m
100       memory: 4Gi
101     requests:
102       cpu: 500m
103       memory: 1Gi
104   large:
105     limits:
106       cpu: 4000m
107       memory: 8Gi
108     requests:
109       cpu: 1000m
110       memory: 2Gi
111   unlimited: {}
112
113 # probe configuration parameters
114 liveness:
115   initialDelaySeconds: 180
116   periodSeconds: 10
117   # necessary to disable liveness probe when setting breakpoints
118   # in debugger so K8s doesn't restart unresponsive container
119   enabled: true
120
121 readiness:
122   initialDelaySeconds: 180
123   periodSeconds: 10
124
125 service:
126   name: robot
127   type: NodePort
128   portName: httpd
129   externalPort: 88
130   internalPort: 88
131   nodePort: "09"
132
133 ingress:
134   enabled: false
135
136 ## Persist data to a persitent volume
137 persistence:
138   enabled: true
139
140   ## A manually managed Persistent Volume and Claim
141   ## Requires persistence.enabled: true
142   ## If defined, PVC must be created manually before volume will be bound
143   # existingClaim:
144   volumeReclaimPolicy: Retain
145
146   ## database data Persistent Volume Storage Class
147   ## If defined, storageClassName: <storageClass>
148   ## If set to "-", storageClassName: "", which disables dynamic provisioning
149   ## If undefined (the default) or set to null, no storageClassName spec is
150   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
151   ##   GKE, AWS & OpenStack)
152   ##
153   # storageClass: "-"
154   accessMode: ReadWriteMany
155   size: 2Gi
156   mountPath: /dockerdata-nfs
157   mountSubPath: robot/logs