Update vm_properties.py for encrypted password
[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.2.1
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 # Openstack glance image name for Ubuntu 14.  Maps to GLOBAL_INJECTED_UBUNTU_1404_IMAGE
59 ubuntu14Image: "Ubuntu_14_trusty"
60 # Openstack glance image name for Ubuntu 16.  Maps to GLOBAL_INJECTED_UBUNTU_1604_IMAGE
61 ubuntu16Image: "Ubuntu_16_xenial"
62 # GLOBAL_INJECTED_SCRIPT_VERSION.  Maps to GLOBAL_INJECTED_SCRIPT_VERSION
63 scriptVersion: "1.2.0-SNAPSHOT"
64 # Openstack network to which VNFs will bind their primary (first) interface.  Maps to GLOBAL_INJECTED_NETWORK
65 openStackPrivateNetId: "e8f51956-00dd-4425-af36-045716781ffc"
66
67 # SDNC Preload configuration
68 # Openstack subnet UUID for the network defined by openStackPrivateNetId.  Maps to onap_private_subnet_id
69 openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc"
70 # CIDR notation for the Openstack private network where VNFs will be spawned.  Maps to onap_private_net_cidr
71 openStackPrivateNetCidr: "10.0.0.0/8"
72 # The first 2 octets of the private Openstack subnet where VNFs will be spawned.
73 # Needed because sdnc preload templates hardcodes things like this 10.0.${ecompnet}.X
74 openStackOamNetworkCidrPrefix: "10.0"
75 # Override with Pub Key for access to VNF
76 vnfPubKey: "FILL_IN_WITH_PUB_KEY"
77 # Override with DCAE VES Collector external IP
78 dcaeCollectorIp: "FILL_IN_WITH_DCAE_VES_COLLECTOR_IP"
79
80 # default number of instances
81 replicaCount: 1
82
83 nodeSelector: {}
84
85 affinity: {}
86
87 # probe configuration parameters
88 liveness:
89   initialDelaySeconds: 10
90   periodSeconds: 10
91   # necessary to disable liveness probe when setting breakpoints
92   # in debugger so K8s doesn't restart unresponsive container
93   enabled: true
94
95 readiness:
96   initialDelaySeconds: 10
97   periodSeconds: 10
98
99
100 service:
101   name: robot
102   type: NodePort
103   portName: httpd
104   externalPort: 88
105   internalPort: 88
106   nodePort: "09"
107
108
109 ingress:
110   enabled: false
111
112
113 resources: {}
114   # We usually recommend not to specify default resources and to leave this as a conscious
115   # choice for the user. This also increases chances charts run on environments with little
116   # resources, such as Minikube. If you do want to specify resources, uncomment the following
117   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
118   #
119   # Example:
120   # Configure resource requests and limits
121   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
122   # Minimum memory for development is 2 CPU cores and 4GB memory
123   # Minimum memory for production is 4 CPU cores and 8GB memory
124 #resources:
125 #  limits:
126 #    cpu: 2
127 #    memory: 4Gi
128 #  requests:
129 #    cpu: 2
130 #    memory: 4Gi
131
132 ## Persist data to a persitent volume
133 persistence:
134   enabled: true
135
136   ## A manually managed Persistent Volume and Claim
137   ## Requires persistence.enabled: true
138   ## If defined, PVC must be created manually before volume will be bound
139   # existingClaim:
140   volumeReclaimPolicy: Retain
141
142   ## database data Persistent Volume Storage Class
143   ## If defined, storageClassName: <storageClass>
144   ## If set to "-", storageClassName: "", which disables dynamic provisioning
145   ## If undefined (the default) or set to null, no storageClassName spec is
146   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
147   ##   GKE, AWS & OpenStack)
148   ##
149   # storageClass: "-"
150   accessMode: ReadWriteMany
151   size: 2Gi
152   mountPath: /dockerdata-nfs
153   mountSubPath: robot/logs