blob: 72c0a9933ef7c82ad3cf084f4c325844f1d47168 [file] [log] [blame]
Scott Baker0219e692018-04-10 07:50:23 -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 "kubernetes.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 "kubernetes.fullname" -}}
30{{- if .Values.fullnameOverride -}}
31{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
32{{- else -}}
33{{- $name := default .Chart.Name .Values.nameOverride -}}
Scott Baker0219e692018-04-10 07:50:23 -070034{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
35{{- end -}}
36{{- end -}}
Scott Baker0219e692018-04-10 07:50:23 -070037
38{{/*
39Create chart name and version as used by the chart label.
40*/}}
41{{- define "kubernetes.chart" -}}
42{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
43{{- end -}}
44
45{{- define "kubernetes.serviceConfig" -}}
46name: kubernetes
47accessor:
48 username: {{ .Values.xosAdminUser | quote }}
49 password: {{ .Values.xosAdminPassword | quote }}
50 endpoint: xos-core:50051
51required_models:
52 - KubernetesService
53 - KubernetesServiceInstance
54dependency_graph: "/opt/xos/synchronizers/kubernetes/model-deps"
55steps_dir: "/opt/xos/synchronizers/kubernetes/steps"
56# model_policies_dir: "/opt/xos/synchronizers/kubernetes/model_policies"
57sys_dir: "/opt/xos/synchronizers/kubernetes/sys"
58models_dir: "/opt/xos/synchronizers/kubernetes/models"
59pull_steps_dir: "/opt/xos/synchronizers/kubernetes/pull_steps"
60logging:
61 version: 1
62 handlers:
63 console:
64 class: logging.StreamHandler
65 file:
66 class: logging.handlers.RotatingFileHandler
67 filename: /var/log/xos.log
68 maxBytes: 10485760
69 backupCount: 5
70 loggers:
71 'multistructlog':
72 handlers:
73 - console
74 - file
75 level: DEBUG
76{{- end -}}