forked from pires/kubernetes-elasticsearch-cluster
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathes-full-svc.yaml
51 lines (51 loc) · 875 Bytes
/
es-full-svc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
apiVersion: v1
kind: Service
metadata:
name: elasticsearch
namespace: logging
labels:
component: elasticsearch
role: full
spec:
selector:
component: elasticsearch
role: full
ports:
- name: http
port: 9200
type: NodePort
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: elasticsearch
namespace: logging
annotations:
traefik.frontend.rule.type: PathPrefix
spec:
rules:
- host: elasticsearch.internal.carlosedp.com
http:
paths:
- path: /
backend:
serviceName: elasticsearch
servicePort: 9200
---
apiVersion: v1
kind: Service
metadata:
name: elasticsearch-discovery
namespace: logging
labels:
component: elasticsearch
role: full
spec:
selector:
component: elasticsearch
role: full
ports:
- name: transport
port: 9300
protocol: TCP