aboutsummaryrefslogtreecommitdiffstats
path: root/old/tools/moon_kubernetes/templates/consul.yaml
blob: f0fb764efa54c3a8a94c16aa87c3a7c0b460b4f2 (plain)
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
apiVersion: apps/v1beta1
kind: Deployment
metadata:
  namespace: moon
  name: consul
spec:
  replicas: 1
  template:
    metadata:
      labels:
        app: consul
    spec:
      hostname: consul
      containers:
      - name: consul
        image: consul:latest
        ports:
        - containerPort: 8500
---

apiVersion: v1
kind: Service
metadata:
  name: consul
  namespace: moon
spec:
  ports:
    - port: 8500
      targetPort: 8500
      nodePort: 30005
  selector:
    app: consul
  type: NodePort