blob: 2932dcbe366dcb0d5610b987e0d444fc27808c41 [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
65 loggers:
66 'multistructlog':
67 handlers:
68 - console
69 - file
70 level: DEBUG
71blueprints:
72 - name: cord_5_0_blueprint
73 graph:
74 - name: VMMETenant
75 - name: VSPGWCTenant
76 links:
77 - name: VMMETenant
78 - name: VSPGWUTenant
79 - name: VSPGWUTenant
80 - name: VHSSTenant
81 links:
82 - name: HSSDBServiceInstance
83 - name: HSSDBServiceInstance
84 - name: cord_4_1_blueprint
85 graph:
86 - name: VSPGWUTenant
87 links:
88 - name: VENBServiceInstance
89 - name: VENBServiceInstance
90 - name: VSPGWCTenant
91 links:
92 - name: VENBServiceInstance
93 - name: VSPGWUTenant
Andy Bavier0fe2e7a2018-05-30 11:54:46 -070094proxy_ssh:
95 enabled: {{ .Values.global.proxySshEnabled }}
96 user: {{ .Values.global.proxySshUser }}
Andy Baviera40e82b2018-05-07 17:00:36 -070097{{- end -}}