blob: 3587cfc9cbe839baf3495a39d8cfe9aaba9ac532 [file] [log] [blame]
Matteo Scandolo2cc3d812018-08-13 10:21:43 -07001---
Matteo Scandolo2cc3d812018-08-13 10:21:43 -07002# 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 Scandolo5628d4b2021-01-11 11:46:12 -080016apiVersion: apps/v1
Matteo Scandolo2cc3d812018-08-13 10:21:43 -070017kind: Deployment
18metadata:
19 name: kafkacat
20 labels:
21 app: kafkacat
22 chart: kafkacat
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
26 replicas: 1
27 selector:
28 matchLabels:
29 app: kafkacat
30 release: {{ .Release.Name }}
31 template:
32 metadata:
33 labels:
34 app: kafkacat
35 release: {{ .Release.Name }}
36 spec:
37 containers:
38 - name: kafkacat
Zack Williamsd9d6b352018-10-05 07:53:30 -070039 image: {{ .Values.global.registry }}{{ .Values.image.repository }}:{{ tpl .Values.image.tag . }}
40 imagePullPolicy: {{ .Values.image.pullPolicy }}
Matteo Scandolo2cc3d812018-08-13 10:21:43 -070041 command: ["/bin/bash", "-c", "sleep 86400"]