blob: baeed472579ee997ca6689756e3c83a7f2aaa447 [file] [log] [blame]
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04001# 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#################################################################
18global:
19 nodePortPrefix: 302
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040020 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070021 readinessImage: readiness-check:2.0.0
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: nexus3.onap.org:10001
Gary Wu46621662018-05-30 14:30:47 -070029image: onap/optf-osdf:1.1.1
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040030pullPolicy: Always
31
32# flag to enable debugging - application support required
33debugEnabled: false
34
35# application configuration
36config:
Patel, Ankitkumard4b37e22018-05-29 16:56:30 -040037 msbgateway: msb-iag
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040038 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.
Patel, Ankitkumard4b37e22018-05-29 16:56:30 -040049 conductorUrl: http://oof-has-api:8091/v1/plans/
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040050 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
75replicaCount: 1
76nodeSelector: {}
77affinity: {}
78# probe configuration parameters
79liveness:
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
85readiness:
86 initialDelaySeconds: 10
87 periodSeconds: 10
88service:
89 type: NodePort
90 name: oof-osdf
91 externalPort: 8698
92 internalPort: 8699
93 nodePort: 48
94ingress:
95 enabled: false
96resources: {}