blob: 977d1b2661d371b1eae6b6ed78b899cec6cec13b [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" -}}
Scott Bakera08a2d72018-05-22 16:09:14 -070045name: openstack
Zack Williams3432b942018-04-24 17:46:41 -070046accessor:
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"
Scott Bakera08a2d72018-05-22 16:09:14 -070052pull_steps_dir: "/opt/xos/synchronizers/openstack/pull_steps"
Zack Williams3432b942018-04-24 17:46:41 -070053sys_dir: "/opt/xos/synchronizers/openstack/sys"
54model_policies_dir: "/opt/xos/synchronizers/openstack/model_policies"
Scott Bakera08a2d72018-05-22 16:09:14 -070055models_dir: "/opt/xos/synchronizers/openstack/models"
Zack Williams3432b942018-04-24 17:46:41 -070056logging:
57 version: 1
58 handlers:
59 console:
60 class: logging.StreamHandler
61 file:
62 class: logging.handlers.RotatingFileHandler
63 filename: /var/log/xos.log
64 maxBytes: 10485760
65 backupCount: 5
66 loggers:
67 'multistructlog':
68 handlers:
69 - console
70 - file
71 level: DEBUG
72images_directory: "/opt/xos/images"
73required_models:
74 - ControllerImages
75 - ControllerNetwork
76 - ControllerSitePrivilege
77 - ControllerSite
78 - ControllerSlicePrivilege
79 - ControllerSlice
80 - ControllerUser
81 - Image
82 - Instance
83 - Port
84 - Role
Scott Bakera08a2d72018-05-22 16:09:14 -070085 - OpenStackService
Zack Williams3432b942018-04-24 17:46:41 -070086nova:
87 ca_ssl_cert: "/etc/ssl/certs/ca-certificates.crt"
88 enabled: True
89{{- end -}}