Matt Jeanneret | 7aeb86e | 2018-11-10 14:12:50 -0500 | [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 | clusterName: "etcd-cluster" |
| 20 | clusterSize: 3 |
| 21 | memoryLimit: 1024Mi |
| 22 | autoCompactionRetention: "12" |
| 23 | |
Matteo Scandolo | c44b29f | 2019-01-22 16:55:22 -0800 | [diff] [blame] | 24 | # expose the etcd-cluster as a nodePort |
| 25 | # etcdNodePort: 32379 |
| 26 | etcdNodePort: "" |
| 27 | |
Matt Jeanneret | 7aeb86e | 2018-11-10 14:12:50 -0500 | [diff] [blame] | 28 | images: |
| 29 | etcd: |
| 30 | repository: "quay.io/coreos/etcd" |
Luca Prete | e6d38ab | 2018-11-20 12:09:34 -0800 | [diff] [blame] | 31 | tag: "v3.2.18" |
Matt Jeanneret | 7aeb86e | 2018-11-10 14:12:50 -0500 | [diff] [blame] | 32 | busybox: |
| 33 | repository: "busybox" |
| 34 | tag: "1.28.1-glibc" |
| 35 | |
| 36 | global: |
| 37 | registry: "" |