blob: 523136d1eda4357af1f5ee05c531ff243a246349 [file] [log] [blame]
Scott Baker2fe81652019-12-09 16:30:40 -08001---
2# Copyright 2018-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Matteo Scandolo49679882020-07-28 12:04:47 -070016apiVersion: apps/v1
Scott Baker2fe81652019-12-09 16:30:40 -080017kind: Deployment
18metadata:
19 name: voltha-kafka-dump
20 labels:
21 app: voltha-kafka-dump
22 chart: voltha-kafka-dump
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
26 replicas: 1
27 selector:
28 matchLabels:
29 app: voltha-kafka-dump
30 release: {{ .Release.Name }}
31 template:
32 metadata:
33 labels:
34 app: voltha-kafka-dump
35 release: {{ .Release.Name }}
36 spec:
37 containers:
38 - name: voltha-kafka-dump
39 image: {{ .Values.global.registry }}{{ .Values.image.repository }}:{{ tpl .Values.image.tag . }}
40 imagePullPolicy: {{ .Values.image.pullPolicy }}
41 command: ["/bin/bash", "-c", "sleep 86400"]