Scott Baker | 0475568 | 2018-04-05 16:16:51 -0700 | [diff] [blame] | 1 | --- |
Scott Baker | 0475568 | 2018-04-05 16:16:51 -0700 | [diff] [blame] | 2 | # Copyright 2018-present Open Networking 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 | # Default values for xossh |
| 17 | # This is a YAML-formatted file. |
| 18 | # Declare variables to be passed into your templates. |
| 19 | |
| 20 | replicaCount: 1 |
| 21 | |
| 22 | pull_docker_registry: |
| 23 | |
| 24 | nameOverride: "" |
| 25 | fullnameOverride: "" |
| 26 | |
Matteo Scandolo | e2965c9 | 2018-05-08 13:22:20 -0700 | [diff] [blame] | 27 | imagePullPolicy: Always |
Matteo Scandolo | a5637dc | 2018-05-08 10:17:42 -0700 | [diff] [blame] | 28 | |
Zack Williams | 0e094e8 | 2018-07-06 12:38:51 -0700 | [diff] [blame^] | 29 | xosshImage: "xosproject/xos-client:{{ .Chart.Version }}" |
Scott Baker | 0475568 | 2018-04-05 16:16:51 -0700 | [diff] [blame] | 30 | |
| 31 | resources: {} |
| 32 | |
| 33 | nodeSelector: {} |
| 34 | |
| 35 | tolerations: [] |
| 36 | |
| 37 | affinity: {} |
| 38 | |
Matteo Scandolo | bf04d07 | 2018-04-24 19:20:55 +0200 | [diff] [blame] | 39 | xosshConfig: |
| 40 | name: xossh |
Scott Baker | 0475568 | 2018-04-05 16:16:51 -0700 | [diff] [blame] | 41 | accessor: |
| 42 | username: admin@opencord.org |
| 43 | password: letmein |
| 44 | endpoint: xos-core:50051 |
Matteo Scandolo | bf04d07 | 2018-04-24 19:20:55 +0200 | [diff] [blame] | 45 | logging: |
| 46 | version: 1 |
| 47 | handlers: |
| 48 | console: |
| 49 | class: logging.StreamHandler |
| 50 | file: |
| 51 | class: logging.handlers.RotatingFileHandler |
| 52 | filename: /var/log/xos.log |
| 53 | maxBytes: 10485760 |
| 54 | backupCount: 5 |
| 55 | loggers: |
| 56 | 'multistructlog': |
| 57 | handlers: |
| 58 | - console |
| 59 | - file |
| 60 | level: DEBUG |