* Added -Dlog4j2.formatMsgNoLookups=true to PULSAR_MANAGER_OPTS * Bump the chart version to release changes Co-authored-by: Lari Hotari <lhotari@apache.org>
100 lines
4.0 KiB
YAML
100 lines
4.0 KiB
YAML
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you 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 or .Values.components.pulsar_manager .Values.extra.pulsar_manager }}
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}"
|
|
namespace: {{ template "pulsar.namespace" . }}
|
|
labels:
|
|
{{- include "pulsar.standardLabels" . | nindent 4 }}
|
|
component: {{ .Values.pulsar_manager.component }}
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
{{- include "pulsar.matchLabels" . | nindent 6 }}
|
|
component: {{ .Values.pulsar_manager.component }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
{{- include "pulsar.template.labels" . | nindent 8 }}
|
|
component: {{ .Values.pulsar_manager.component }}
|
|
annotations:
|
|
{{- if .Values.pulsar_manager.restartPodsOnConfigMapChange }}
|
|
checksum/config: {{ include (print $.Template.BasePath "/pulsar-manager-configmap.yaml") . | sha256sum }}
|
|
{{- end }}
|
|
{{ toYaml .Values.pulsar_manager.annotations | indent 8 }}
|
|
spec:
|
|
{{- if .Values.pulsar_manager.nodeSelector }}
|
|
nodeSelector:
|
|
{{ toYaml .Values.pulsar_manager.nodeSelector | indent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.pulsar_manager.tolerations }}
|
|
tolerations:
|
|
{{ toYaml .Values.pulsar_manager.tolerations | indent 8 }}
|
|
{{- end }}
|
|
terminationGracePeriodSeconds: {{ .Values.pulsar_manager.gracePeriod }}
|
|
containers:
|
|
- name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}"
|
|
image: "{{ .Values.images.pulsar_manager.repository }}:{{ .Values.images.pulsar_manager.tag }}"
|
|
imagePullPolicy: {{ .Values.images.pulsar_manager.pullPolicy }}
|
|
{{- if .Values.pulsar_manager.resources }}
|
|
resources:
|
|
{{ toYaml .Values.pulsar_manager.resources | indent 12 }}
|
|
{{- end }}
|
|
ports:
|
|
- containerPort: {{ .Values.pulsar_manager.service.targetPort }}
|
|
volumeMounts:
|
|
- name: pulsar-manager-data
|
|
mountPath: /data
|
|
envFrom:
|
|
- configMapRef:
|
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}"
|
|
env:
|
|
- name: PULSAR_CLUSTER
|
|
value: {{ template "pulsar.fullname" . }}
|
|
- name: USERNAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
key: PULSAR_MANAGER_ADMIN_USER
|
|
{{- if .Values.pulsar_manager.existingSecretName }}
|
|
name: "{{ .Values.pulsar_manager.existingSecretName }}"
|
|
{{- else }}
|
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}-secret"
|
|
{{- end }}
|
|
- name: PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
key: PULSAR_MANAGER_ADMIN_PASSWORD
|
|
{{- if .Values.pulsar_manager.existingSecretName }}
|
|
name: "{{ .Values.pulsar_manager.existingSecretName }}"
|
|
{{- else }}
|
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}-secret"
|
|
{{- end }}
|
|
- name: PULSAR_MANAGER_OPTS
|
|
value: "$(PULSAR_MANAGER_OPTS) -Dlog4j2.formatMsgNoLookups=true"
|
|
{{- include "pulsar.imagePullSecrets" . | nindent 6}}
|
|
volumes:
|
|
- name: pulsar-manager-data
|
|
emptyDir: {}
|
|
|
|
{{- end }}
|