infra/config/helm/publisher/templates/configmap.yaml (18 lines of code) (raw):
# Copyright 2023 Google LLC
#
# 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
data:
EVENT_TOPIC: '{{ .Values.config_maps.event_topic }}'
PUBLISHER_THREADS: "7"
PUBLISHER_FLOW_CONTROL_MAX_OUTSTANDING_MESSAGES: "100"
REST_PORT: "8001"
EVENT_GENERATOR_THREADS: "10"
EVENT_GENERATOR_RUNTIME: "60" # in minutes
PUBLISHER_RETRY_INITIAL_TIMEOUT: "5" # in seconds
PUBLISHER_RETRY_TOTAL_TIMEOUT: "600" # in seconds
PUBLISHER_BATCH_SIZE: "1"
kind: ConfigMap
metadata:
namespace: '{{ .Values.namespace }}'
labels:
app: publisher
operator: '{{ .Values.operator }}'
name: '{{ .Values.project_id }}-publisher-config-maps-{{ .Values.region }}'