9f74271418def0ae8b4ce02bbcbffefd080e6854
[oom.git] / kubernetes / oof / values.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware
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:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application image
28 repository: nexus3.onap.org:10001
29 image: onap/optf-osdf:latest
30 pullPolicy: Always
31
32 # flag to enable debugging - application support required
33 debugEnabled: false
34
35 # application configuration
36 config:
37   msbgateway: msb-iag.{{ include "common.namespace" . }}
38   msbPort: 80
39   # Credentials for the OOF placement service – SO.
40   osdfPlacementSOUsername: so_test
41   osdfPlacementSOPassword: so_testpwd
42   # Credentials for the OOF CM scheduling service – Generic.
43   osdfCMSchedulerUsername: test1
44   osdfCMSchedulerPassword: testpwd1
45   # Credentials of the callback url for SO.
46   soUsername: ""   # SO username for call back.
47   soPassword: ""   # SO password for call back.
48   # Url and credentials for Conductor.
49   conductorUrl: https://oof-has-api.{{ include "common.namespace" . }}:8091/v1/plans/
50   conductorUsername: admin1
51   conductorPassword: plan.15
52   conductorPingWaitTime: 60
53   conductorMaxRetries: 30
54   # Url and credentials for the Policy Platform
55   policyPlatformUrl: http://pdp:8081/pdp/api/getConfig # Policy Dev platform URL
56   policyPlatformEnv: TEST # Environment for policy platform
57   policyPlatformUsername: testpdp # Policy platform username.
58   policyPlatformPassword: alpha123 # Policy platform password.
59   policyClientUsername: python # For use with ClientAuth
60   policyClientPassword: test # For use with ClientAuth
61   # Credentials for the message reader - A placeholder.
62   messageReaderHosts: NA
63   messageReaderTopic: NA
64   messageReaderAafUserId: NA
65   messageReaderAafPassword: NA
66   # Credentials for the SDC interface - A placeholder.
67   sdcUrl: NA
68   sdcUsername: NA
69   sdcPassword: NA
70   sdcONAPInstanceID: NA
71   # Credentials for the placement service – Generic.
72   osdfPlacementUsername: "test"
73   osdfPlacementPassword: "testpwd"
74 # default number of instances
75 replicaCount: 1
76 nodeSelector: {}
77 affinity: {}
78 # probe configuration parameters
79 liveness:
80   initialDelaySeconds: 10
81   periodSeconds: 10
82   # necessary to disable liveness probe when setting breakpoints
83   # in debugger so K8s doesn't restart unresponsive container
84   enabled: true
85 readiness:
86   initialDelaySeconds: 10
87   periodSeconds: 10
88 service:
89   type: NodePort
90   name: oof-osdf
91   externalPort: 8698
92   internalPort: 8699
93   nodePort: 48
94 ingress:
95   enabled: false
96 resources: {}