blob: cef01ac0781bf26a36a2070e5b4176bdad12fb3b [file] [log] [blame]
# Copyright 2017-present Open Networking Foundation
#
# 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.
{{- if .Values.alarm_generator_enable }}
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: alarm-generator
namespace: {{ .Values.global.namespace }}
serviceAccountName: {{ .Values.global.namespace }}-serviceaccount
spec:
replicas: {{ .Values.replicas.alarm_generator }}
template:
metadata:
labels:
app: alarm-generator
annotations:
cni: "calico"
spec:
serviceAccountName: {{ .Values.global.namespace }}-serviceaccount
containers:
- name: alarm-generator
image: {{ .Values.alarmGeneratorImage }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
env:
- name: POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
args:
{{ toYaml .Values.alarm_generator_args | indent 12 }}
{{- end }}