blob: db369dd935bc2735737bebb4f537aa75448d0425 [file] [log] [blame]
Andy Bavierd37f8ee2018-04-12 09:54:10 -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 "openstack.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 "openstack.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 "openstack.chart" -}}
46{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
47{{- end -}}
Zack Williams3432b942018-04-24 17:46:41 -070048{{- define "openstack.serviceConfig" -}}
49name: openstack-synchronizer
50accessor:
51 username: {{ .Values.xosAdminUser | quote }}
52 password: {{ .Values.xosAdminPassword | quote }}
53 endpoint: xos-core:50051
54dependency_graph: "/opt/xos/synchronizers/openstack/model-deps"
55steps_dir: "/opt/xos/synchronizers/openstack/steps"
56sys_dir: "/opt/xos/synchronizers/openstack/sys"
57model_policies_dir: "/opt/xos/synchronizers/openstack/model_policies"
58logging:
59 version: 1
60 handlers:
61 console:
62 class: logging.StreamHandler
63 file:
64 class: logging.handlers.RotatingFileHandler
65 filename: /var/log/xos.log
66 maxBytes: 10485760
67 backupCount: 5
68 loggers:
69 'multistructlog':
70 handlers:
71 - console
72 - file
73 level: DEBUG
74images_directory: "/opt/xos/images"
75required_models:
76 - ControllerImages
77 - ControllerNetwork
78 - ControllerSitePrivilege
79 - ControllerSite
80 - ControllerSlicePrivilege
81 - ControllerSlice
82 - ControllerUser
83 - Image
84 - Instance
85 - Port
86 - Role
87nova:
88 ca_ssl_cert: "/etc/ssl/certs/ca-certificates.crt"
89 enabled: True
90{{- end -}}