blob: f5f7a4f5126c34861f6128dd231a6b150e69c522 [file] [log] [blame]
Scott Baker22e46b72018-05-07 09:06:53 -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 "simpleexampleservice.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 "simpleexampleservice.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 "simpleexampleservice.chart" -}}
46{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
47{{- end -}}
48
49{{- define "simpleexampleservice.serviceConfig" -}}
50name: simpleexampleservice
51accessor:
52 username: {{ .Values.xosAdminUser | quote }}
53 password: {{ .Values.xosAdminPassword | quote }}
54 endpoint: xos-core:50051
Scott Baker37d12b12018-05-14 16:05:24 -070055event_bus:
56 endpoint: cord-kafka-kafka
57 kind: kafka
Scott Baker22e46b72018-05-07 09:06:53 -070058required_models:
59 - SimpleExampleService
60 - SimpleExampleServiceInstance
61 - ServiceDependency
62 - KubernetesService
63 - KubernetesServiceInstance
64 - KubernetesConfigMap
65 - KubernetesSecret
66 - KubernetesConfigVolumeMount
67 - KubernetesSecretVolumeMount
68dependency_graph: "/opt/xos/synchronizers/simpleexampleservice/model-deps"
69steps_dir: "/opt/xos/synchronizers/simpleexampleservice/steps"
Scott Baker37d12b12018-05-14 16:05:24 -070070event_steps_dir: "/opt/xos/synchronizers/simpleexampleservice/event_steps"
Scott Baker22e46b72018-05-07 09:06:53 -070071sys_dir: "/opt/xos/synchronizers/simpleexampleservice/sys"
72model_policies_dir: "/opt/xos/synchronizers/simpleexampleservice/model_policies"
73models_dir: "/opt/xos/synchronizers/simpleexampleservice/models"
74logging:
75 version: 1
76 handlers:
77 console:
78 class: logging.StreamHandler
79 file:
80 class: logging.handlers.RotatingFileHandler
81 filename: /var/log/xos.log
82 maxBytes: 10485760
83 backupCount: 5
84 loggers:
85 'multistructlog':
86 handlers:
87 - console
88 - file
89 level: DEBUG
90{{- end -}}