Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 1 | # Copyright (c) 2019 Bell Canada |
| 2 | # |
| 3 | # Modifications Copyright (c) 2019 Bell Canada. |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 4 | # |
| 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 | ################################################################# |
| 18 | # Global configuration defaults. |
| 19 | ################################################################# |
| 20 | global: |
| 21 | # Change to an unused port prefix range to prevent port conflicts |
| 22 | # with other instances running within the same k8s cluster |
| 23 | nodePortPrefix: 302 |
| 24 | |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 25 | # image pull policy |
| 26 | pullPolicy: Always |
| 27 | |
| 28 | persistence: |
| 29 | mountPath: /dockerdata-nfs |
| 30 | |
| 31 | ################################################################# |
| 32 | # Application configuration defaults. |
| 33 | ################################################################# |
| 34 | # application image |
Dan Timoney | 1e108ef | 2021-08-19 12:20:35 -0400 | [diff] [blame^] | 35 | image: onap/ccsdk-commandexecutor:1.1.5 |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 36 | pullPolicy: Always |
| 37 | |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 38 | # application configuration |
| 39 | config: |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 40 | basicAuth: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 41 | |
| 42 | # default number of instances |
| 43 | replicaCount: 1 |
| 44 | |
| 45 | nodeSelector: {} |
| 46 | |
| 47 | affinity: {} |
| 48 | |
| 49 | # probe configuration parameters |
| 50 | liveness: |
Oleg Mitsura | 3a62118 | 2019-10-09 12:40:11 -0400 | [diff] [blame] | 51 | initialDelaySeconds: 20 |
| 52 | periodSeconds: 20 |
| 53 | timeoutSeconds: 20 |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 54 | # necessary to disable liveness probe when setting breakpoints |
| 55 | # in debugger so K8s doesn't restart unresponsive container |
| 56 | enabled: true |
| 57 | |
| 58 | readiness: |
| 59 | initialDelaySeconds: 10 |
| 60 | periodSeconds: 10 |
Oleg Mitsura | 3a62118 | 2019-10-09 12:40:11 -0400 | [diff] [blame] | 61 | timeoutSeconds: 20 |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 62 | |
| 63 | service: |
| 64 | type: ClusterIP |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 65 | grpc: |
| 66 | portName: command-executor-grpc |
| 67 | internalPort: 50051 |
| 68 | externalPort: 50051 |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 69 | |
| 70 | persistence: |
| 71 | enabled: true |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 72 | mountSubPath: cds/blueprints/deploy |
| 73 | deployedBlueprint: /opt/app/onap/blueprints/deploy |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 74 | |
| 75 | ingress: |
| 76 | enabled: false |
| 77 | |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 78 | resources: |
| 79 | small: |
| 80 | limits: |
| 81 | cpu: 2 |
| 82 | memory: 4Gi |
| 83 | requests: |
| 84 | cpu: 1 |
| 85 | memory: 1Gi |
| 86 | large: |
| 87 | limits: |
| 88 | cpu: 4 |
| 89 | memory: 8Gi |
| 90 | requests: |
| 91 | cpu: 2 |
| 92 | memory: 4Gi |
| 93 | unlimited: {} |
farida azmy | ffad032 | 2021-04-09 14:18:14 +0200 | [diff] [blame] | 94 | |
| 95 | #Pods Service Account |
| 96 | serviceAccount: |
| 97 | nameOverride: cds-command-executor |
| 98 | roles: |
| 99 | - read |