Andy Bavier | a40e82b | 2018-05-07 17:00:36 -0700 | [diff] [blame] | 1 | {{/* vim: set filetype=mustache: */}} |
| 2 | {{/* |
| 3 | Copyright 2018-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | */}} |
| 17 | {{/* |
| 18 | Expand the name of the chart. |
| 19 | */}} |
| 20 | {{- define "vspgwc.name" -}} |
| 21 | {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} |
| 22 | {{- end -}} |
| 23 | |
| 24 | {{/* |
| 25 | Create a default fully qualified app name. |
| 26 | We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). |
| 27 | If release name contains chart name it will be used as a full name. |
| 28 | */}} |
| 29 | {{- define "vspgwc.fullname" -}} |
| 30 | {{- if .Values.fullnameOverride -}} |
| 31 | {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} |
| 32 | {{- else -}} |
| 33 | {{- $name := default .Chart.Name .Values.nameOverride -}} |
| 34 | {{- if contains $name .Release.Name -}} |
| 35 | {{- .Release.Name | trunc 63 | trimSuffix "-" -}} |
| 36 | {{- else -}} |
| 37 | {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} |
| 38 | {{- end -}} |
| 39 | {{- end -}} |
| 40 | {{- end -}} |
| 41 | |
| 42 | {{/* |
| 43 | Create chart name and version as used by the chart label. |
| 44 | */}} |
| 45 | {{- define "vspgwc.chart" -}} |
| 46 | {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} |
| 47 | {{- end -}} |
| 48 | |
| 49 | {{- define "vspgwc.serviceConfig" -}} |
| 50 | name: vspgwc |
| 51 | accessor: |
| 52 | username: {{ .Values.xosAdminUser | quote }} |
| 53 | password: {{ .Values.xosAdminPassword | quote }} |
| 54 | endpoint: xos-core:50051 |
Andy Bavier | a40e82b | 2018-05-07 17:00:36 -0700 | [diff] [blame] | 55 | logging: |
| 56 | version: 1 |
| 57 | handlers: |
| 58 | console: |
| 59 | class: logging.StreamHandler |
| 60 | file: |
| 61 | class: logging.handlers.RotatingFileHandler |
| 62 | filename: /var/log/xos.log |
| 63 | maxBytes: 10485760 |
| 64 | backupCount: 5 |
Zack Williams | d9d6b35 | 2018-10-05 07:53:30 -0700 | [diff] [blame] | 65 | kafka: |
Zack Williams | 7659cc9 | 2018-11-01 07:51:12 -0700 | [diff] [blame] | 66 | class: kafkaloghandler.KafkaLogHandler |
Zack Williams | d9d6b35 | 2018-10-05 07:53:30 -0700 | [diff] [blame] | 67 | bootstrap_servers: |
| 68 | - "cord-kafka:9092" |
| 69 | topic: xos.log.vspgwc |
Andy Bavier | a40e82b | 2018-05-07 17:00:36 -0700 | [diff] [blame] | 70 | loggers: |
Zack Williams | 7659cc9 | 2018-11-01 07:51:12 -0700 | [diff] [blame] | 71 | '': |
Andy Bavier | a40e82b | 2018-05-07 17:00:36 -0700 | [diff] [blame] | 72 | handlers: |
Zack Williams | 1125598 | 2018-08-27 14:22:55 -0700 | [diff] [blame] | 73 | - console |
| 74 | - file |
Zack Williams | d9d6b35 | 2018-10-05 07:53:30 -0700 | [diff] [blame] | 75 | - kafka |
Andy Bavier | a40e82b | 2018-05-07 17:00:36 -0700 | [diff] [blame] | 76 | level: DEBUG |
Andy Bavier | 0fe2e7a | 2018-05-30 11:54:46 -0700 | [diff] [blame] | 77 | proxy_ssh: |
| 78 | enabled: {{ .Values.global.proxySshEnabled }} |
| 79 | user: {{ .Values.global.proxySshUser }} |
Andy Bavier | a40e82b | 2018-05-07 17:00:36 -0700 | [diff] [blame] | 80 | {{- end -}} |