David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 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 | |
| 15 | # Default values for etcd-cluster. |
| 16 | # This is a YAML-formatted file. |
| 17 | # Declare variables to be passed into your templates. |
| 18 | |
| 19 | registry: "" |
| 20 | clusterName: "voltha-etcd-cluster" |
| 21 | clusterSize: 3 |
| 22 | memoryLimit: 1024Mi |
Matt Jeanneret | 41df18e | 2019-09-28 17:39:15 -0400 | [diff] [blame] | 23 | # use revision based compaction. runs every 5 minutes within etcd and keeps |
| 24 | # autoCompactionRetention number of revisions |
| 25 | autoCompactionMode: "revision" |
| 26 | autoCompactionRetention: "10" |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 27 | |
| 28 | # expose the etcd-cluster as a nodePort |
| 29 | # etcdNodePort: 32379 |
| 30 | etcdNodePort: "" |
| 31 | |
| 32 | images: |
| 33 | etcd: |
| 34 | repository: "quay.io/coreos/etcd" |
Matt Jeanneret | 41df18e | 2019-09-28 17:39:15 -0400 | [diff] [blame] | 35 | tag: "v3.4.1" |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 36 | busybox: |
| 37 | repository: "busybox" |
| 38 | tag: "1.28.1-glibc" |
| 39 | |