2026-02-28 13:42:27 +00:00
|
|
|
apiVersion: v1
|
|
|
|
|
kind: Service
|
|
|
|
|
metadata:
|
|
|
|
|
name: opensearch
|
|
|
|
|
namespace: data
|
2026-03-24 12:21:18 +00:00
|
|
|
labels:
|
|
|
|
|
app: opensearch
|
2026-02-28 13:42:27 +00:00
|
|
|
spec:
|
|
|
|
|
selector:
|
|
|
|
|
app: opensearch
|
|
|
|
|
ports:
|
|
|
|
|
- name: http
|
|
|
|
|
port: 9200
|
|
|
|
|
targetPort: 9200
|
|
|
|
|
protocol: TCP
|
|
|
|
|
- name: transport
|
|
|
|
|
port: 9300
|
|
|
|
|
targetPort: 9300
|
|
|
|
|
protocol: TCP
|
2026-03-25 17:53:59 +00:00
|
|
|
- name: metrics
|
|
|
|
|
port: 9114
|
|
|
|
|
targetPort: 9114
|
|
|
|
|
protocol: TCP
|