24 lines
634 B
YAML
24 lines
634 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations: {{ include "render-value" ( dict "value" .Values.global.commonAnnotations "context" .) | nindent 4 }}
|
|
labels: {{ include "render-value" ( dict "value" .Values.global.commonLabels "context" .) | nindent 4 }}
|
|
app.kubernetes.io/part-of: federatorai
|
|
app: alameda
|
|
component: alameda-rabbitmq
|
|
name: alameda-rabbitmq
|
|
namespace: {{ .Release.Namespace }}
|
|
spec:
|
|
ports:
|
|
- name: amqp
|
|
port: 5672
|
|
protocol: TCP
|
|
targetPort: amqp
|
|
- name: http
|
|
port: 15672
|
|
protocol: TCP
|
|
targetPort: http
|
|
selector:
|
|
component: alameda-rabbitmq
|
|
type: ClusterIP
|