blob: 53aae13c175cb7159744d5dec1f0c448f0857b4a [file] [log] [blame]
Scott Bakerafff3082018-07-16 17:23:26 -07001{{/* vim: set filetype=mustache: */}}
2{{/*
3Copyright 2018-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16*/}}
17{{/*
18Expand the name of the chart.
19*/}}
20{{- define "fabric-crossconnect.name" -}}
21{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
22{{- end -}}
23
24{{/*
25Create a default fully qualified app name.
26We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
27If release name contains chart name it will be used as a full name.
28*/}}
29{{- define "fabric-crossconnect.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{{/*
43Create chart name and version as used by the chart label.
44*/}}
45{{- define "fabric-crossconnect.chart" -}}
46{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
47{{- end -}}
48
49{{- define "fabric-crossconnect.serviceConfig" -}}
50name: fabric-crossconnect
51accessor:
52 username: {{ .Values.xosAdminUser | quote }}
53 password: {{ .Values.xosAdminPassword | quote }}
Matteo Scandoloa6aecf62018-12-17 13:32:15 -080054 endpoint: {{ .Values.xosCoreService | quote }}
Scott Baker64b079d2018-08-15 15:51:28 -070055event_bus:
56 endpoint: {{ .Values.kafkaService | quote }}
57 kind: kafka
Scott Bakerafff3082018-07-16 17:23:26 -070058logging:
59 version: 1
60 handlers:
61 console:
62 class: logging.StreamHandler
63 file:
64 class: logging.handlers.RotatingFileHandler
65 filename: /var/log/xos.log
66 maxBytes: 10485760
67 backupCount: 5
Zack Williams11255982018-08-27 14:22:55 -070068 kafka:
Zack Williams7659cc92018-11-01 07:51:12 -070069 class: kafkaloghandler.KafkaLogHandler
Zack Williams11255982018-08-27 14:22:55 -070070 bootstrap_servers:
Matteo Scandoloa6aecf62018-12-17 13:32:15 -080071 - "{{ .Values.kafkaService }}:9092"
Zack Williams11255982018-08-27 14:22:55 -070072 topic: xos.log.fabric-crossconnect
Scott Bakerafff3082018-07-16 17:23:26 -070073 loggers:
Zack Williams7659cc92018-11-01 07:51:12 -070074 '':
Scott Bakerafff3082018-07-16 17:23:26 -070075 handlers:
76 - console
77 - file
Zack Williams11255982018-08-27 14:22:55 -070078 - kafka
Scott Bakerafff3082018-07-16 17:23:26 -070079 level: DEBUG
80{{- end -}}