blob: ff07162edb16f01f8acdd7753258e4f6a9590a61 [file] [log] [blame]
Scott Baker04755682018-04-05 16:16:51 -07001---
Scott Baker04755682018-04-05 16:16:51 -07002# 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
20replicaCount: 1
21
22pull_docker_registry:
23
24nameOverride: ""
25fullnameOverride: ""
26
Matteo Scandoloe2965c92018-05-08 13:22:20 -070027imagePullPolicy: Always
Matteo Scandoloa5637dc2018-05-08 10:17:42 -070028
Zack Williams0e094e82018-07-06 12:38:51 -070029xosshImage: "xosproject/xos-client:{{ .Chart.Version }}"
Scott Baker04755682018-04-05 16:16:51 -070030
31resources: {}
32
33nodeSelector: {}
34
35tolerations: []
36
37affinity: {}
38
Matteo Scandolobf04d072018-04-24 19:20:55 +020039xosshConfig:
40 name: xossh
Scott Baker04755682018-04-05 16:16:51 -070041 accessor:
42 username: admin@opencord.org
43 password: letmein
44 endpoint: xos-core:50051
Matteo Scandolobf04d072018-04-24 19:20:55 +020045 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