BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 7de56c8 | 2018-09-04 08:03:27 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 AT&T |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 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 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 21 | persistence: {} |
| 22 | |
| 23 | ################################################################# |
| 24 | # Application configuration defaults. |
| 25 | ################################################################# |
| 26 | |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 27 | # application image |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 28 | image: elasticsearch/elasticsearch:5.5.0 |
| 29 | pullPolicy: Always |
| 30 | |
| 31 | # flag to enable debugging - application support required |
| 32 | debugEnabled: false |
| 33 | |
| 34 | # application configuration |
| 35 | # Example: |
| 36 | config: {} |
| 37 | |
| 38 | # default number of instances |
| 39 | replicaCount: 1 |
| 40 | |
| 41 | nodeSelector: {} |
| 42 | |
| 43 | affinity: {} |
| 44 | |
| 45 | # probe configuration parameters |
| 46 | liveness: |
Michael O'Brien | ac60aaf | 2018-05-23 17:25:08 -0400 | [diff] [blame] | 47 | initialDelaySeconds: 120 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 48 | periodSeconds: 10 |
| 49 | # necessary to disable liveness probe when setting breakpoints |
| 50 | # in debugger so K8s doesn't restart unresponsive container |
| 51 | enabled: true |
| 52 | |
| 53 | readiness: |
Michael O'Brien | ac60aaf | 2018-05-23 17:25:08 -0400 | [diff] [blame] | 54 | initialDelaySeconds: 120 |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 55 | periodSeconds: 10 |
| 56 | |
| 57 | ## Persist data to a persitent volume |
| 58 | persistence: |
| 59 | enabled: true |
| 60 | |
| 61 | ## A manually managed Persistent Volume and Claim |
| 62 | ## Requires persistence.enabled: true |
| 63 | ## If defined, PVC must be created manually before volume will be bound |
| 64 | # existingClaim: |
| 65 | volumeReclaimPolicy: Retain |
| 66 | |
| 67 | ## database data Persistent Volume Storage Class |
| 68 | ## If defined, storageClassName: <storageClass> |
| 69 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 70 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 71 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 72 | ## GKE, AWS & OpenStack) |
Sylvain Desbureaux | a3e737c | 2019-11-05 11:47:46 +0100 | [diff] [blame] | 73 | accessMode: ReadWriteOnce |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 74 | size: 1Gi |
| 75 | mountPath: /dockerdata-nfs |
| 76 | mountSubPath: log/elasticsearch/data |
| 77 | mountSubPathLogs: log |
| 78 | |
| 79 | service: |
BorislavG | 2cf2684 | 2018-04-08 17:50:07 +0300 | [diff] [blame] | 80 | type: NodePort |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 81 | name: log-es |
| 82 | externalPort: 9200 |
| 83 | internalPort: 9200 |
BorislavG | 2cf2684 | 2018-04-08 17:50:07 +0300 | [diff] [blame] | 84 | nodePort: 54 |
| 85 | type2: ClusterIP |
| 86 | name2: log-es-tcp |
| 87 | externalPort2: 9300 |
| 88 | internalPort2: 9300 |
| 89 | |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 90 | ingress: |
| 91 | enabled: false |
Lucjan Bryndza | d6322c8 | 2019-12-02 15:32:10 +0100 | [diff] [blame] | 92 | service: |
| 93 | - baseaddr: "loges" |
| 94 | name: "log-es" |
| 95 | port: 9200 |
| 96 | config: |
| 97 | ssl: "none" |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 98 | # Resource Limit flavor -By Default using small |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 99 | flavor: small |
| 100 | # Segregation for Different environment (Small and Large) |
| 101 | resources: |
| 102 | small: |
| 103 | limits: |
| 104 | cpu: 1 |
| 105 | memory: 4Gi |
| 106 | requests: |
| 107 | cpu: 1 |
Mandeep Khinda | 3c13425 | 2018-09-19 23:56:37 +0000 | [diff] [blame] | 108 | memory: 2Gi |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 109 | large: |
| 110 | limits: |
| 111 | cpu: 2 |
| 112 | memory: 8Gi |
| 113 | requests: |
Mandeep Khinda | 3c13425 | 2018-09-19 23:56:37 +0000 | [diff] [blame] | 114 | cpu: 1 |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 115 | memory: 4Gi |
Sylvain Desbureaux | a3e737c | 2019-11-05 11:47:46 +0100 | [diff] [blame] | 116 | unlimited: {} |