blob: e0094265580a45618400ff3bdb865092785703d3 [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
Scott Baker104a62d2019-02-19 14:35:36 -080051desired_state: {{ .Values.desired_state | quote }}
Scott Baker22e46b72018-05-07 09:06:53 -070052accessor:
53 username: {{ .Values.xosAdminUser | quote }}
54 password: {{ .Values.xosAdminPassword | quote }}
55 endpoint: xos-core:50051
Scott Baker37d12b12018-05-14 16:05:24 -070056event_bus:
Andy Bavierebfcfeb2018-07-13 13:04:13 -070057 endpoint: {{ .Values.kafkaService | quote }}
Scott Baker37d12b12018-05-14 16:05:24 -070058 kind: kafka
Scott Baker22e46b72018-05-07 09:06:53 -070059required_models:
60 - SimpleExampleService
61 - SimpleExampleServiceInstance
62 - ServiceDependency
63 - KubernetesService
64 - KubernetesServiceInstance
65 - KubernetesConfigMap
66 - KubernetesSecret
67 - KubernetesConfigVolumeMount
68 - KubernetesSecretVolumeMount
69dependency_graph: "/opt/xos/synchronizers/simpleexampleservice/model-deps"
70steps_dir: "/opt/xos/synchronizers/simpleexampleservice/steps"
Scott Baker37d12b12018-05-14 16:05:24 -070071event_steps_dir: "/opt/xos/synchronizers/simpleexampleservice/event_steps"
Scott Baker22e46b72018-05-07 09:06:53 -070072sys_dir: "/opt/xos/synchronizers/simpleexampleservice/sys"
73model_policies_dir: "/opt/xos/synchronizers/simpleexampleservice/model_policies"
74models_dir: "/opt/xos/synchronizers/simpleexampleservice/models"
75logging:
76 version: 1
77 handlers:
78 console:
79 class: logging.StreamHandler
80 file:
81 class: logging.handlers.RotatingFileHandler
82 filename: /var/log/xos.log
83 maxBytes: 10485760
84 backupCount: 5
Zack Williamsd9d6b352018-10-05 07:53:30 -070085 kafka:
Zack Williams7659cc92018-11-01 07:51:12 -070086 class: kafkaloghandler.KafkaLogHandler
Zack Williamsd9d6b352018-10-05 07:53:30 -070087 bootstrap_servers:
88 - "cord-kafka:9092"
89 topic: xos.log.simpleexampleservice
Scott Baker22e46b72018-05-07 09:06:53 -070090 loggers:
Zack Williams7659cc92018-11-01 07:51:12 -070091 '':
Scott Baker22e46b72018-05-07 09:06:53 -070092 handlers:
Zack Williams11255982018-08-27 14:22:55 -070093 - console
94 - file
Zack Williamsd9d6b352018-10-05 07:53:30 -070095 - kafka
Scott Baker22e46b72018-05-07 09:06:53 -070096 level: DEBUG
97{{- end -}}