blob: 242c3298d9cb09fcda2728cd27e98d927855ae4d [file] [log] [blame]
Andy Baviera40e82b2018-05-07 17:00:36 -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 "vspgwu.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 "vspgwu.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 "vspgwu.chart" -}}
46{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
47{{- end -}}
48
49{{- define "vspgwu.serviceConfig" -}}
50name: vspgwu
51accessor:
52 username: {{ .Values.xosAdminUser | quote }}
53 password: {{ .Values.xosAdminPassword | quote }}
54 endpoint: xos-core:50051
Andy Baviera40e82b2018-05-07 17:00:36 -070055logging:
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 Williams1f58c2a2018-09-28 09:43:43 -070065 kafka:
66 class: kafkaloghandler.kafkaloghandler.KafkaLogHandler
67 bootstrap_servers:
68 - "cord-kafka:9092"
69 topic: xos.log.vspgwu
Andy Baviera40e82b2018-05-07 17:00:36 -070070 loggers:
71 'multistructlog':
72 handlers:
Zack Williams11255982018-08-27 14:22:55 -070073 - console
74 - file
Zack Williams1f58c2a2018-09-28 09:43:43 -070075 - kafka
Andy Baviera40e82b2018-05-07 17:00:36 -070076 level: DEBUG
77blueprints:
78 - name: cord_5_0_blueprint
79 graph:
80 - name: VMMETenant
81 - name: VSPGWCTenant
82 links:
83 - name: VMMETenant
84 - name: VSPGWUTenant
85 - name: VSPGWUTenant
86 - name: VHSSTenant
87 links:
88 - name: HSSDBServiceInstance
89 - name: HSSDBServiceInstance
90 - name: cord_4_1_blueprint
91 graph:
92 - name: VSPGWUTenant
93 links:
94 - name: VENBServiceInstance
95 - name: VENBServiceInstance
96 - name: VSPGWCTenant
97 links:
98 - name: VENBServiceInstance
99 - name: VSPGWUTenant
Andy Bavier0fe2e7a2018-05-30 11:54:46 -0700100proxy_ssh:
101 enabled: {{ .Values.global.proxySshEnabled }}
102 user: {{ .Values.global.proxySshUser }}
Andy Baviera40e82b2018-05-07 17:00:36 -0700103{{- end -}}