aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (C) 2023 Nordix Foundation. |
| 3 | # ================================================================================ |
| 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 | ################################################################# |
| 22 | global: |
| 23 | persistence: {} |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 24 | #Strimzi Kafka properties |
| 25 | useStrimziKafka: set-via-parent-chart-global-value |
| 26 | kafkaTopics: |
| 27 | acRuntimeTopic: |
| 28 | name: &acRuntimeTopic policy.clamp-runtime-acm |
| 29 | |
| 30 | ################################################################# |
| 31 | # Secrets metaconfig |
| 32 | ################################################################# |
| 33 | secrets: |
| 34 | - uid: restserver-secret |
| 35 | type: basicAuth |
| 36 | externalSecret: '{{ tpl (default "" .Values.restServer.credsExternalSecret) . }}' |
| 37 | login: '{{ .Values.restServer.user }}' |
| 38 | password: '{{ .Values.restServer.password }}' |
| 39 | passwordPolicy: required |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 40 | |
| 41 | ################################################################# |
| 42 | # Application configuration defaults. |
| 43 | ################################################################# |
| 44 | # application image |
liamfallon | 8174587 | 2023-05-24 12:14:59 +0100 | [diff] [blame] | 45 | image: onap/policy-clamp-ac-kserve-ppnt:6.4.3 |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 46 | pullPolicy: Always |
| 47 | |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 48 | componentName: &componentName policy-clamp-ac-kserve-ppnt |
| 49 | |
| 50 | # application configuration |
| 51 | restServer: |
| 52 | user: participantUser |
| 53 | password: zb!XztG34 |
| 54 | |
| 55 | # flag to enable debugging - application support required |
| 56 | debugEnabled: false |
| 57 | |
| 58 | # default number of instances |
| 59 | replicaCount: 1 |
| 60 | |
| 61 | nodeSelector: {} |
| 62 | |
| 63 | affinity: {} |
| 64 | ingress: |
| 65 | enabled: false |
| 66 | |
AndrewLamb | 7ef78ae | 2023-04-20 16:24:13 +0100 | [diff] [blame] | 67 | serviceMesh: |
| 68 | authorizationPolicy: |
| 69 | authorizedPrincipals: |
| 70 | - serviceAccount: message-router-read |
| 71 | |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 72 | # probe configuration parameters |
| 73 | liveness: |
Andreas Geissler | c50f089 | 2023-06-14 14:21:31 +0200 | [diff] [blame^] | 74 | initialDelaySeconds: 60 |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 75 | periodSeconds: 10 |
| 76 | # necessary to disable liveness probe when setting breakpoints |
| 77 | # in debugger so K8s doesn't restart unresponsive container |
| 78 | enabled: true |
| 79 | port: kserve-api |
| 80 | |
| 81 | readiness: |
Andreas Geissler | c50f089 | 2023-06-14 14:21:31 +0200 | [diff] [blame^] | 82 | initialDelaySeconds: 60 |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 83 | periodSeconds: 10 |
| 84 | port: kserve-api |
| 85 | |
| 86 | service: |
| 87 | type: ClusterIP |
| 88 | name: *componentName |
| 89 | ports: |
| 90 | - name: kserve-api |
| 91 | port: 8087 |
aravind.est | 0879dfc | 2023-02-22 09:05:50 +0000 | [diff] [blame] | 92 | |
| 93 | flavor: small |
| 94 | resources: |
| 95 | small: |
| 96 | limits: |
| 97 | cpu: 1 |
| 98 | memory: 4Gi |
| 99 | requests: |
| 100 | cpu: 100m |
| 101 | memory: 1Gi |
| 102 | large: |
| 103 | limits: |
| 104 | cpu: 2 |
| 105 | memory: 8Gi |
| 106 | requests: |
| 107 | cpu: 200m |
| 108 | memory: 2Gi |
| 109 | unlimited: {} |
| 110 | #Pods Service Account |
| 111 | serviceAccount: |
| 112 | nameOverride: *componentName |
| 113 | roles: |
| 114 | - create |
| 115 | |
| 116 | config: |
| 117 | # Any new property can be added in the env by setting in overrides in the format mentioned below |
| 118 | # All the added properties must be in "key: value" format instead of yaml. |
| 119 | # additional: |
| 120 | # spring.config.max-size: 200 |
| 121 | # spring.config.min-size: 10 |
| 122 | # Strimzi Kafka config |
| 123 | kafkaUser: |
| 124 | authenticationType: scram-sha-512 |
| 125 | acls: |
| 126 | - name: *componentName |
| 127 | type: group |
| 128 | operations: [Read] |
| 129 | - name: *acRuntimeTopic |
| 130 | type: topic |
| 131 | operations: [Read, Write] |
| 132 | |
| 133 | readinessCheck: |
| 134 | wait_for: |
| 135 | - message-router |