Andy Bavier | f15d53a | 2018-03-07 17:34:30 -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 "onos.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 "onos.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 | {{/* |
| 43 | Create chart name and version as used by the chart label. |
| 44 | */}} |
| 45 | {{- define "onos.chart" -}} |
| 46 | {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} |
| 47 | {{- end -}} |
Matteo Scandolo | 55ff150 | 2018-09-06 15:15:01 -0700 | [diff] [blame] | 48 | |
| 49 | {{- define "onos.logCfg" -}} |
| 50 | ################################################################################ |
| 51 | # |
| 52 | # Licensed to the Apache Software Foundation (ASF) under one or more |
| 53 | # contributor license agreements. See the NOTICE file distributed with |
| 54 | # this work for additional information regarding copyright ownership. |
| 55 | # The ASF licenses this file to You under the Apache License, Version 2.0 |
| 56 | # (the "License"); you may not use this file except in compliance with |
| 57 | # the License. You may obtain a copy of the License at |
| 58 | # |
| 59 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 60 | # |
| 61 | # Unless required by applicable law or agreed to in writing, software |
| 62 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 63 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 64 | # See the License for the specific language governing permissions and |
| 65 | # limitations under the License. |
| 66 | # |
| 67 | ################################################################################ |
| 68 | |
| 69 | # Root logger |
| 70 | log4j.rootLogger=INFO, out, osgi:*, stdout |
| 71 | log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer |
| 72 | |
| 73 | # CONSOLE appender not used by default |
| 74 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender |
| 75 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout |
| 76 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n |
| 77 | |
| 78 | # File appender |
| 79 | log4j.appender.out=org.apache.log4j.RollingFileAppender |
| 80 | log4j.appender.out.layout=org.apache.log4j.PatternLayout |
| 81 | log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n |
| 82 | log4j.appender.out.file=${karaf.data}/log/karaf.log |
| 83 | log4j.appender.out.append=true |
| 84 | log4j.appender.out.maxFileSize=10MB |
| 85 | log4j.appender.out.maxBackupIndex=10 |
| 86 | |
| 87 | # Sift appender |
| 88 | log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender |
| 89 | log4j.appender.sift.key=bundle.name |
| 90 | log4j.appender.sift.default=karaf |
| 91 | log4j.appender.sift.appender=org.apache.log4j.FileAppender |
| 92 | log4j.appender.sift.appender.layout=org.apache.log4j.PatternLayout |
| 93 | log4j.appender.sift.appender.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %m%n |
| 94 | log4j.appender.sift.appender.file=${karaf.data}/log/$\\{bundle.name\\}.log |
| 95 | log4j.appender.sift.appender.append=true |
| 96 | |
| 97 | # Application logs |
Matteo Scandolo | 02112a9 | 2018-09-06 15:26:59 -0700 | [diff] [blame] | 98 | {{ .Values.application_logs }} |
| 99 | |
Matteo Scandolo | 55ff150 | 2018-09-06 15:15:01 -0700 | [diff] [blame] | 100 | {{- end -}} |