Andy Bavier | c3912a7 | 2018-03-09 14:40:50 -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 "exampleservice.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 "exampleservice.fullname" -}} |
| 30 | {{- if .Values.fullnameOverride -}} |
| 31 | {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} |
| 32 | {{- else -}} |
| 33 | {{- $name := default .Chart.Name .Values.nameOverride -}} |
Andy Bavier | c3912a7 | 2018-03-09 14:40:50 -0700 | [diff] [blame] | 34 | {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} |
| 35 | {{- end -}} |
| 36 | {{- end -}} |
Andy Bavier | c3912a7 | 2018-03-09 14:40:50 -0700 | [diff] [blame] | 37 | |
| 38 | {{/* |
| 39 | Create chart name and version as used by the chart label. |
| 40 | */}} |
| 41 | {{- define "exampleservice.chart" -}} |
| 42 | {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} |
| 43 | {{- end -}} |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 44 | |
| 45 | {{- define "exampleservice.serviceConfig" -}} |
| 46 | name: exampleservice |
| 47 | accessor: |
| 48 | username: {{ .Values.xosAdminUser | quote }} |
| 49 | password: {{ .Values.xosAdminPassword | quote }} |
| 50 | endpoint: xos-core:50051 |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 51 | logging: |
| 52 | version: 1 |
| 53 | handlers: |
| 54 | console: |
| 55 | class: logging.StreamHandler |
| 56 | file: |
| 57 | class: logging.handlers.RotatingFileHandler |
| 58 | filename: /var/log/xos.log |
| 59 | maxBytes: 10485760 |
| 60 | backupCount: 5 |
| 61 | loggers: |
| 62 | 'multistructlog': |
| 63 | handlers: |
| 64 | - console |
| 65 | - file |
| 66 | level: DEBUG |
Scott Baker | 6a4fd49 | 2018-06-19 08:12:42 -0700 | [diff] [blame^] | 67 | proxy_ssh: |
| 68 | enabled: {{ .Values.global.proxySshEnabled }} |
| 69 | user: {{ .Values.global.proxySshUser }} |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 70 | {{- end -}} |