mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada, AT&T |
| 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 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 15 | # pap component installation configuration parameters |
| 16 | |
| 17 | # tomcat specific parameters |
| 18 | |
| 19 | TOMCAT_JMX_PORT=9990 |
| 20 | TOMCAT_SHUTDOWN_PORT=9405 |
| 21 | SSL_HTTP_CONNECTOR_PORT=9091 |
| 22 | SSL_AJP_CONNECTOR_PORT=8380 |
| 23 | SSL_AJP_CONNECTOR_REDIRECT_PORT=8443 |
| 24 | |
| 25 | TOMCAT_X_MS_MB=1024 |
| 26 | TOMCAT_X_MX_MB=1024 |
| 27 | |
| 28 | # pap properties |
| 29 | |
BorislavG | 8bfc6cf | 2018-02-27 15:04:26 +0000 | [diff] [blame] | 30 | PAP_PDPS=/opt/app/policy/servers/pap/bin/pdps |
Michael Mokry | 3efae0b | 2018-08-22 10:58:31 -0500 | [diff] [blame] | 31 | PAP_URL=https://{{ include "common.servicename" . }}:{{.Values.service.externalPort2}}/pap/ |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 32 | |
| 33 | PAP_INITIATE_PDP=true |
| 34 | PAP_HEARTBEAT_INTERVAL=10000 |
| 35 | PAP_HEARTBEAT_TIMEOUT=10000 |
| 36 | |
| 37 | REST_ADMIN_DOMAIN=com |
| 38 | REST_ADMIN_REPOSITORY=repository |
| 39 | REST_ADMIN_WORKSPACE=workspace |
| 40 | |
| 41 | # PDP related properties |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 42 | PAP_PDP_URL=https://{{ include "common.release" . }}-{{ .Values.global.pdp.nameOverride }}-0.{{ .Values.global.pdp.nameOverride }}.{{ include "common.namespace" . }}.svc.cluster.local:{{ .Values.config.pdpPort }}/pdp/,testpdp,alpha123;https://{{ include "common.release" . }}-{{ .Values.global.pdp.nameOverride }}-1.{{ .Values.global.pdp.nameOverride }}.{{ include "common.namespace" . }}.svc.cluster.local:{{ .Values.config.pdpPort }}/pdp/,testpdp,alpha123;https://{{ include "common.release" . }}-{{ .Values.global.pdp.nameOverride }}-2.{{ .Values.global.pdp.nameOverride }}.{{ include "common.namespace" . }}.svc.cluster.local:{{ .Values.config.pdpPort }}/pdp/,testpdp,alpha123;https://{{ include "common.release" . }}-{{ .Values.global.pdp.nameOverride }}-3.{{ .Values.global.pdp.nameOverride }}.{{ include "common.namespace" . }}.svc.cluster.local:{{ .Values.config.pdpPort }}/pdp/ |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 43 | PAP_PDP_HTTP_USER_ID=testpdp |
| 44 | PAP_PDP_HTTP_PASSWORD=alpha123 |
| 45 | |
| 46 | PAP_HTTP_USER_ID=testpap |
| 47 | PAP_HTTP_PASSWORD=alpha123 |
| 48 | |
| 49 | #new values added 10-21-2015 |
| 50 | PROP_PAP_TRANS_WAIT=500000 |
| 51 | PROP_PAP_TRANS_TIMEOUT=5000 |
| 52 | PROP_PAP_AUDIT_TIMEOUT=300000 |
| 53 | PROP_PAP_RUN_AUDIT_FLAG=true |
| 54 | PROP_PAP_AUDIT_FLAG=true |
| 55 | |
| 56 | PROP_PAP_INCOMINGNOTIFICATION_TRIES=4 |
| 57 | |
| 58 | |
| 59 | node_type=pap |
| 60 | resource_name=pap_1 |
| 61 | dependency_groups=paplp_1 |
| 62 | test_via_jmx=true |
| 63 | |
| 64 | # The (optional) period of time in seconds between executions of the integrity audit. |
| 65 | # Value < 0 : Audit does not run (default value if property is not present = -1) |
| 66 | # Value = 0 : Audit runs continuously |
| 67 | # Value > 0 : The period of time in seconds between execution of the audit on a particular node |
| 68 | integrity_audit_period_seconds=-1 |