# ============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: v1 kind: Service metadata: name: $MR_ZOOKEEPER_APP_NAME namespace: $KUBE_ONAP_NAMESPACE labels: run: $MR_ZOOKEEPER_APP_NAME autotest: DMAAPMR spec: type: ClusterIP ports: - port: $MR_ZOOKEEPER_PORT targetPort: $MR_ZOOKEEPER_PORT protocol: TCP name: http selector: run: $MR_ZOOKEEPER_APP_NAME --- apiVersion: v1 kind: Service metadata: name: $MR_KAFKA_APP_NAME namespace: $KUBE_ONAP_NAMESPACE labels: run: $MR_KAFKA_APP_NAME autotest: DMAAPMR spec: type: NodePort ports: - port: $MR_KAFKA_PORT targetPort: $MR_KAFKA_PORT protocol: TCP name: http - port: $MR_KAFKA_KUBE_NODE_PORT targetPort: $MR_KAFKA_KUBE_NODE_PORT protocol: TCP name: http-external nodePort: $MR_KAFKA_KUBE_NODE_PORT selector: run: $MR_KAFKA_APP_NAME --- apiVersion: v1 kind: Service metadata: name: $MR_DMAAP_APP_NAME namespace: $KUBE_ONAP_NAMESPACE labels: run: $MR_DMAAP_APP_NAME autotest: DMAAPMR spec: type: ClusterIP ports: - port: $MR_EXTERNAL_PORT targetPort: $MR_INTERNAL_PORT protocol: TCP name: http - port: $MR_EXTERNAL_SECURE_PORT targetPort: $MR_INTERNAL_SECURE_PORT protocol: TCP name: https selector: run: $MR_DMAAP_APP_NAME