blob: 8331074872c96c3bba8f9b8befe7eb85c6154fd6 [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 "vspgwc.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 "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{{/*
43Create 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" -}}
50name: vspgwc
51accessor:
52 username: {{ .Values.xosAdminUser | quote }}
53 password: {{ .Values.xosAdminPassword | quote }}
54 endpoint: xos-core:50051
55required_models:
56 - VSPGWCService
57 - VSPGWCVendor
58 - VSPGWCTenant
59dependency_graph: "/opt/xos/synchronizers/vspgwc/model-deps"
60steps_dir: "/opt/xos/synchronizers/vspgwc/steps"
61sys_dir: "/opt/xos/synchronizers/vspgwc/sys"
62model_policies_dir: "/opt/xos/synchronizers/vspgwc/model_policies"
63models_dir: "/opt/xos/synchronizers/vspgwc/models"
64logging:
65 version: 1
66 handlers:
67 console:
68 class: logging.StreamHandler
69 file:
70 class: logging.handlers.RotatingFileHandler
71 filename: /var/log/xos.log
72 maxBytes: 10485760
73 backupCount: 5
74 loggers:
75 'multistructlog':
76 handlers:
77 - console
78 - file
79 level: DEBUG
80blueprints:
81 - name: cord_5_0_blueprint
82 graph:
83 - name: VMMETenant
84 links:
85 - name: VHSSTenant
86 - name: VSPGWCTenant
87 links:
88 - name: VMMETenant
89 - name: VSPGWUTenant
90 - name: VSPGWUTenant
91 - name: VHSSTenant
92 links:
93 - name: HSSDBServiceInstance
94 - name: HSSDBServiceInstance
95 - name: cord_4_1_blueprint
96 graph:
97 - name: VSPGWUTenant
98 links:
99 - name: VENBServiceInstance
100 - name: VENBServiceInstance
101 - name: VSPGWCTenant
102 links:
103 - name: VENBServiceInstance
104 - name: VSPGWUTenant
105 - name: cord_5_p4_blueprint
106 graph:
107 - name: VMMETenant
108 links:
109 - name: VHSSTenant
110 - name: VSPGWCTenant
111 links:
112 - name: VMMETenant
113 - name: HSSTenant
114 links:
115 - name: HSSDBServiceInstance
116 - name: HSSDBServiceInstance
117{{- end -}}
118