# ============LICENSE_START======================================================= # Copyright (C) 2020-2022 Nordix 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. # # SPDX-License-Identifier: Apache-2.0 # ============LICENSE_END========================================================= apiVersion: apps/v1 kind: Deployment metadata: name: $DMAAP_MED_APP_NAME namespace: $KUBE_NONRTRIC_NAMESPACE labels: run: $DMAAP_MED_APP_NAME autotest: DMAAPMED spec: replicas: 1 selector: matchLabels: run: $DMAAP_MED_APP_NAME template: metadata: labels: run: $DMAAP_MED_APP_NAME autotest: DMAAPMED spec: containers: - name: $DMAAP_MED_APP_NAME image: $DMAAP_MED_IMAGE imagePullPolicy: $KUBE_IMAGE_PULL_POLICY ports: - name: http containerPort: $DMAAP_MED_INTERNAL_PORT - name: https containerPort: $DMAAP_MED_INTERNAL_SECURE_PORT volumeMounts: - mountPath: $DMAAP_MED_DATA_MOUNT_PATH/$DMAAP_MED_CONTR_DATA_FILE subPath: $DMAAP_MED_CONTR_DATA_FILE name: dmaapadp-data-name env: - name: INFO_PRODUCER_HOST value: "$DMAAP_MED_CONF_SELF_HOST" - name: INFO_PRODUCER_PORT value: "$DMAAP_MED_CONF_SELF_PORT" - name: INFO_COORD_ADDR value: "$ICS_SERVICE_PATH" - name: DMAAP_MR_ADDR value: "$MR_SERVICE_PATH" - name: LOG_LEVEL value: Debug - name: KAFKA_BOOTSTRAP_SERVERS value: "$MR_KAFKA_SERVICE_PATH" volumes: - configMap: defaultMode: 420 name: $DMAAP_MED_DATA_CONFIGMAP_NAME name: dmaapadp-data-name # Selector will be set when pod is started first time nodeSelector: