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