blob: 8eafa463c5e9e4af23894f077de6746066682258 [file] [log] [blame]
rameshiyer2701b8cc02021-09-21 15:07:50 +01001# ============LICENSE_START=======================================================
FrancescoFioraEst9c79e262022-02-22 13:12:19 +00002# Copyright (C) 2021-2022 Nordix Foundation.
rameshiyer2701b8cc02021-09-21 15:07:50 +01003# ================================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=========================================================
18
19#################################################################
20# Global configuration defaults.
21#################################################################
22global:
rameshiyer2701b8cc02021-09-21 15:07:50 +010023 persistence: {}
24 aafEnabled: true
25
26#################################################################
27# Secrets metaconfig
28#################################################################
29secrets:
30 - uid: restserver-secret
31 type: basicAuth
32 externalSecret: '{{ tpl (default "" .Values.restServer.credsExternalSecret) . }}'
33 login: '{{ .Values.restServer.user }}'
34 password: '{{ .Values.restServer.password }}'
35 passwordPolicy: required
36 - uid: keystore-password
37 type: password
38 externalSecret: '{{ tpl (default "" .Values.certStores.keyStorePasswordExternalSecret) . }}'
39 password: '{{ .Values.certStores.keyStorePassword }}'
40 passwordPolicy: required
41 - uid: truststore-password
42 type: password
43 externalSecret: '{{ tpl (default "" .Values.certStores.trustStorePasswordExternalSecret) . }}'
44 password: '{{ .Values.certStores.trustStorePassword }}'
45 passwordPolicy: required
46
47certStores:
48 keyStorePassword: Pol1cy_0nap
49 trustStorePassword: Pol1cy_0nap
50
51certInitializer:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000052 nameOverride: policy-clamp-ac-http-ppnt-cert-initializer
rameshiyer2701b8cc02021-09-21 15:07:50 +010053 aafDeployFqi: deployer@people.osaaf.org
54 aafDeployPass: demo123456!
55 fqdn: policy
56 fqi: policy@policy.onap.org
57 public_fqdn: policy.onap.org
58 cadi_latitude: "0.0"
59 cadi_longitude: "0.0"
60 credsPath: /opt/app/osaaf/local
61 app_ns: org.osaaf.aaf
62 uid: 100
63 gid: 101
64 aaf_add_config: >
65 echo "export KEYSTORE='{{ .Values.credsPath }}/org.onap.policy.p12'" > {{ .Values.credsPath }}/.ci;
66 echo "export KEYSTORE_PASSWD='${cadi_keystore_password_p12}'" >> {{ .Values.credsPath }}/.ci;
67 chown -R {{ .Values.uid }}:{{ .Values.gid }} $(dirname {{ .Values.credsPath }});
68
69
70#################################################################
71# Application configuration defaults.
72#################################################################
73# application image
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000074image: onap/policy-clamp-ac-http-ppnt:6.2.1
rameshiyer2701b8cc02021-09-21 15:07:50 +010075pullPolicy: Always
76
rameshiyer2701b8cc02021-09-21 15:07:50 +010077# application configuration
78restServer:
79 user: participantUser
80 password: zb!XztG34
81
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000082# flag to enable debugging - application support required
83debugEnabled: false
84
rameshiyer2701b8cc02021-09-21 15:07:50 +010085# default number of instances
86replicaCount: 1
87
88nodeSelector: {}
89
90affinity: {}
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000091ingress:
92 enabled: false
93
rameshiyer2701b8cc02021-09-21 15:07:50 +010094# probe configuration parameters
95liveness:
96 initialDelaySeconds: 20
97 periodSeconds: 10
98 # necessary to disable liveness probe when setting breakpoints
99 # in debugger so K8s doesn't restart unresponsive container
100 enabled: true
101 port: http-api
102
103readiness:
104 initialDelaySeconds: 20
105 periodSeconds: 10
106 port: http-api
guillaume.lambert600dc982021-10-20 20:42:32 +0200107
rameshiyer2701b8cc02021-09-21 15:07:50 +0100108service:
109 type: ClusterIP
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000110 name: policy-clamp-ac-http-ppnt
rameshiyer2701b8cc02021-09-21 15:07:50 +0100111 useNodePortExt: true
112 ports:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000113 - name: http-api
114 port: 8084
115 nodePort: 42
rameshiyer2701b8cc02021-09-21 15:07:50 +0100116
rameshiyer2701b8cc02021-09-21 15:07:50 +0100117
118flavor: small
119resources:
120 small:
121 limits:
122 cpu: 1
123 memory: 4Gi
124 requests:
125 cpu: 100m
126 memory: 1Gi
127 large:
128 limits:
129 cpu: 2
130 memory: 8Gi
131 requests:
132 cpu: 200m
133 memory: 2Gi
134 unlimited: {}
rameshiyer2701b8cc02021-09-21 15:07:50 +0100135#Pods Service Account
136serviceAccount:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000137 nameOverride: policy-clamp-ac-http-ppnt
rameshiyer2701b8cc02021-09-21 15:07:50 +0100138 roles:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000139 - read