blob: 08590d891cb6198651c20dbe6ad7a84e1637ce45 [file] [log] [blame]
Lathish818ee5d2020-08-26 13:45:03 +01001################################################################################
2# Copyright (c) 2020 Nordix Foundation. #
Konrad Bańka52c38b92020-10-28 16:49:19 +01003# Copyright © 2020 Samsung Electronics, Modifications #
Lathish818ee5d2020-08-26 13:45:03 +01004# #
5# Licensed under the Apache License, Version 2.0 (the "License"); #
6# you may not use this file except in compliance with the License. #
7# You may obtain a copy of the License at #
8# #
9# http://www.apache.org/licenses/LICENSE-2.0 #
10# #
11# Unless required by applicable law or agreed to in writing, software #
12# distributed under the License is distributed on an "AS IS" BASIS, #
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
14# See the License for the specific language governing permissions and #
15# limitations under the License. #
16################################################################################
17# Default values for Policy Management Service.
18# This is a YAML-formatted file.
19# Declare variables to be passed into your templates.
20
21global:
Sylvain Desbureauxd4a6afd2020-11-21 22:01:15 +010022 nodePortPrefix: 302
Lathish818ee5d2020-08-26 13:45:03 +010023
24secrets:
25 - uid: controller-secret
26 type: basicAuth
27 externalSecret: '{{ tpl (default "" .Values.a1controller.credsExternalSecret) . }}'
28 login: '{{ .Values.a1controller.user }}'
29 password: '{{ .Values.a1controller.password }}'
30 passwordPolicy: required
31
Sylvain Desbureauxb5353c92021-02-15 11:30:29 +010032#################################################################
33# AAF part
34#################################################################
35certInitializer:
36 nameOverride: a1p-cert-initializer
37 aafDeployFqi: deployer@people.osaaf.org
38 aafDeployPass: demo123456!
39 # aafDeployCredsExternalSecret: some secret
40 fqdn: a1p
41 fqi: a1p@a1p.onap.org
42 public_fqdn: a1p.onap.org
43 cadi_longitude: "0.0"
44 cadi_latitude: "0.0"
45 app_ns: org.osaaf.aaf
46 credsPath: /opt/app/osaaf/local
47 fqi_namespace: org.onap.a1p
48 aaf_add_config: |
49 echo "*** changing them into shell safe ones"
50 export KEYSTORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
51 export TRUSTSORE_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
52 cd {{ .Values.credsPath }}
53 keytool -storepasswd -new "${KEYSTORE_PASSWORD}" \
54 -storepass "${cadi_keystore_password_p12}" \
55 -keystore {{ .Values.fqi_namespace }}.p12
56 keytool -storepasswd -new "${TRUSTSORE_PASSWORD}" \
57 -storepass "${cadi_truststore_password}" \
58 -keystore {{ .Values.fqi_namespace }}.trust.jks
Sylvain Desbureauxb5353c92021-02-15 11:30:29 +010059 echo "*** save the generated passwords"
60 echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}" > mycreds.prop
61 echo "TRUSTSORE_PASSWORD=${TRUSTSORE_PASSWORD}" >> mycreds.prop
62 echo "*** change ownership of certificates to targeted user"
63 chown -R 1000 .
64
Dan Timoney73320d82021-04-08 11:32:14 -040065image: onap/ccsdk-oran-a1policymanagementservice:1.1.3
Konrad Bańka52c38b92020-10-28 16:49:19 +010066userID: 1000 #Should match with image-defined user ID
67groupID: 999 #Should match with image-defined group ID
Lathish818ee5d2020-08-26 13:45:03 +010068pullPolicy: IfNotPresent
69replicaCount: 1
70
71service:
72 type: NodePort
73 name: a1policymanagement
74 both_tls_and_plain: true
75 ports:
76 - name: api
77 port: 8433
78 plain_port: 8081
79 port_protocol: http
80 nodePort: '94'
81
82# SDNC Credentials are used here
83a1controller:
84 user: admin
85 password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
86
87sdncLink: https://sdnc.onap:8443
RehanRazae30f9b92021-03-25 14:36:53 +010088# The information about A1-Mediator/RICs can be added here.
89# The A1 policy management service supports both STD & OSC versions.
90# Alternatively, the A1 simulator from ORAN-SC can also be used. It provides STD & OSC versions for A1 termination.
Lathish818ee5d2020-08-26 13:45:03 +010091# Refer source code & run in docker container : https://gerrit.o-ran-sc.org/r/admin/repos/sim/a1-interface
RehanRazae30f9b92021-03-25 14:36:53 +010092# Refer it/dep repo for k8s deployment: https://gerrit.o-ran-sc.org/r/admin/repos/it/dep
93# Example configuration:
94#rics:
95# - name: ric1
96# link: http://ric1url.url.com:1111/
97# managedElementIds:
98# - kista1
99# - kista2
100# - name: ric2
101# link: http://ric2url.url.com:2222/
102# managedElementIds:
103# - kista3
104# - kista4
105rics:
Lathish818ee5d2020-08-26 13:45:03 +0100106streamPublish: http://message-router:3904/events/A1-POLICY-AGENT-WRITE
107streamSubscribe: http://message-router:3904/events/A1-POLICY-AGENT-READ/users/policy-agent?timeout=15000&limit=100
108
109liveness:
110 port: api
111 initialDelaySeconds: 60
112 periodSeconds: 10
113readiness:
114 port: api
115 initialDelaySeconds: 60
116 periodSeconds: 10
117
118#Resource Limit flavor -By Default using small
119flavor: small
120
121resources:
122 small:
123 limits:
124 cpu: 2
PatrikBuhr27c94362021-04-09 10:58:58 +0200125 memory: 300Mi
Lathish818ee5d2020-08-26 13:45:03 +0100126 requests:
127 cpu: 1
PatrikBuhr27c94362021-04-09 10:58:58 +0200128 memory: 150Mi
Lathish818ee5d2020-08-26 13:45:03 +0100129 large:
130 limits:
131 cpu: 4
132 memory: 8Gi
133 requests:
134 cpu: 2
135 memory: 4Gi
136 unlimited: {}
PatrikBuhr27c94362021-04-09 10:58:58 +0200137
138## Persist data to a persistent volume
139persistence:
140 enabled: true
141
142 ## A manually managed Persistent Volume and Claim
143 ## Requires persistence.enabled: true
144 ## If defined, PVC must be created manually before volume will be bound
145 # existingClaim:
146 volumeReclaimPolicy: Retain
147
148 ## database data Persistent Volume Storage Class
149 ## If defined, storageClassName: <storageClass>
150 ## If set to "-", storageClassName: "", which disables dynamic provisioning
151 ## If undefined (the default) or set to null, no storageClassName spec is
152 ## set, choosing the default provisioner. (gp2 on AWS, standard on
153 ## GKE, AWS & OpenStack)
154 ##
155 # storageClass: "-"
156 accessMode: ReadWriteOnce
157 size: 2Gi
158 mountPath: /dockerdata-nfs
159 mountSubPath: nonrtric/policymanagementservice
160
161