Andy Bavier | d37f8ee | 2018-04-12 09:54:10 -0700 | [diff] [blame] | 1 | {{/* vim: set filetype=mustache: */}} |
| 2 | {{/* |
| 3 | Copyright 2018-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | */}} |
| 17 | {{/* |
| 18 | Expand the name of the chart. |
| 19 | */}} |
| 20 | {{- define "openstack.name" -}} |
| 21 | {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} |
| 22 | {{- end -}} |
| 23 | |
| 24 | {{/* |
| 25 | Create a default fully qualified app name. |
| 26 | We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). |
| 27 | If 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 Bavier | d37f8ee | 2018-04-12 09:54:10 -0700 | [diff] [blame] | 34 | {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} |
| 35 | {{- end -}} |
| 36 | {{- end -}} |
Andy Bavier | d37f8ee | 2018-04-12 09:54:10 -0700 | [diff] [blame] | 37 | |
| 38 | {{/* |
| 39 | Create 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 Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 44 | {{- define "openstack.serviceConfig" -}} |
Scott Baker | a08a2d7 | 2018-05-22 16:09:14 -0700 | [diff] [blame] | 45 | name: openstack |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 46 | accessor: |
| 47 | username: {{ .Values.xosAdminUser | quote }} |
| 48 | password: {{ .Values.xosAdminPassword | quote }} |
| 49 | endpoint: xos-core:50051 |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 50 | logging: |
| 51 | version: 1 |
| 52 | handlers: |
| 53 | console: |
| 54 | class: logging.StreamHandler |
| 55 | file: |
| 56 | class: logging.handlers.RotatingFileHandler |
| 57 | filename: /var/log/xos.log |
| 58 | maxBytes: 10485760 |
| 59 | backupCount: 5 |
Zack Williams | d9d6b35 | 2018-10-05 07:53:30 -0700 | [diff] [blame] | 60 | kafka: |
Zack Williams | 7659cc9 | 2018-11-01 07:51:12 -0700 | [diff] [blame] | 61 | class: kafkaloghandler.KafkaLogHandler |
Zack Williams | d9d6b35 | 2018-10-05 07:53:30 -0700 | [diff] [blame] | 62 | bootstrap_servers: |
| 63 | - "cord-kafka:9092" |
| 64 | topic: xos.log.openstack |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 65 | loggers: |
Zack Williams | 7659cc9 | 2018-11-01 07:51:12 -0700 | [diff] [blame] | 66 | '': |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 67 | handlers: |
Zack Williams | 1125598 | 2018-08-27 14:22:55 -0700 | [diff] [blame] | 68 | - console |
| 69 | - file |
Zack Williams | d9d6b35 | 2018-10-05 07:53:30 -0700 | [diff] [blame] | 70 | - kafka |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 71 | level: DEBUG |
Zack Williams | 3432b94 | 2018-04-24 17:46:41 -0700 | [diff] [blame] | 72 | nova: |
| 73 | ca_ssl_cert: "/etc/ssl/certs/ca-certificates.crt" |
| 74 | enabled: True |
| 75 | {{- end -}} |