blob: 103fc2731f770c84f46347bfd94b1f2cd78ad118 (
plain)
ofs | hex dump | ascii |
---|
0000 | ff d8 ff e0 00 10 4a 46 49 46 00 01 01 00 00 48 00 48 00 00 ff e1 00 58 45 78 69 66 00 00 4d 4d | ......JFIF.....H.H.....XExif..MM |
0020 | 00 2a 00 00 00 08 00 03 01 06 00 03 00 00 00 01 00 02 00 00 01 12 00 03 00 00 00 01 00 01 00 00 | .*.............................. |
0040 | 87 69 00 04 00 00 00 01 00 00 00 32 00 00 00 00 00 02 a0 02 00 04 00 00 00 01 00 00 05 ab a0 03 | .i.........2.................... |
0060 | 00 04 00 00 00 01 00 00 01 f0 00 00 00 00 ff ed 00 38 50 68 6f 74 6f 73 68 6f 70 20 33 2e 30 00 | .................8Photoshop.3.0. |
0080 | 38 42 49 4d 04 04 00 00 00 00 00 00 38 42 49 4d 04 25 00 00 00 00 00 10 d4 1d 8c d9 8f 00 b2 04 | 8BIM........8BIM.%.............. |
00a0 | e9 80 09 98 ec f8 42 7e ff e2 0c e8 49 43 43 5f 50 52 4f 46 49 4c 45 00 01 01 00 00 0c d8 61 70 | ......B~....ICC_PROFILE.......ap |
00c0 | 70 6c 02 10 00 00 6d 6e 74 72 52 47 42 20 58 59 5a 20 07 e2 00 01 00 03 00 08 00 0c 00 06 61 63 | pl..# Copyright © 2017 Amdocs, Bell Canada
# Modifications Copyright © 2018 AT&T
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "common.fullname" . }}
namespace: {{ include "common.namespace" . }}
labels:
app: {{ include "common.name" . }}
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
data:
{{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }}
spring_application_json: {{ tpl .Values.config.springApplicationJson . | quote }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-clamp-filebeat-configmap
namespace: {{ include "common.namespace" . }}
labels:
app: {{ include "common.name" . }}
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
data:
{{ tpl (.Files.Glob "resources/config/log/filebeat/*").AsConfig . | indent 2 }}
|