X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=integration_tests%2Ftestreceiver%2Ftemplates%2Fservice.yaml;h=1df7654e85bf1a34af0f898c3fa44eba0bbe899b;hb=971c91cbf40d7d735c4cc8c8871b1a4d677a6496;hp=7c32ff9648e51dfd1756db95eb14889463dc7581;hpb=0caac0f8bacd54d8b7ae81eda2e5fb53852aaad9;p=ric-plt%2Fa1.git diff --git a/integration_tests/testreceiver/templates/service.yaml b/integration_tests/testreceiver/templates/service.yaml index 7c32ff9..1df7654 100644 --- a/integration_tests/testreceiver/templates/service.yaml +++ b/integration_tests/testreceiver/templates/service.yaml @@ -1,14 +1,32 @@ apiVersion: v1 kind: Service metadata: - name: {{ .Values.rmrservice.name }} + name: {{ .Values.testrmrservice.name }} labels: {{ include "testreceiver.labels" . | indent 4 }} spec: - type: {{ .Values.rmrservice.type }} + type: {{ .Values.testrmrservice.type }} ports: - - port: {{ .Values.rmrservice.port }} - targetPort: {{ .Values.rmrservice.port }} + - port: {{ .Values.testrmrservice.port }} + targetPort: {{ .Values.testrmrservice.port }} + protocol: TCP + selector: + app.kubernetes.io/name: {{ include "testreceiver.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + +--- + +apiVersion: v1 +kind: Service +metadata: + name: {{ .Values.delayrmrservice.name }} + labels: +{{ include "testreceiver.labels" . | indent 4 }} +spec: + type: {{ .Values.delayrmrservice.type }} + ports: + - port: {{ .Values.delayrmrservice.port }} + targetPort: {{ .Values.delayrmrservice.port }} protocol: TCP selector: app.kubernetes.io/name: {{ include "testreceiver.name" . }}