Olaf Bohlen
2023-02-06 4441766567f5f2402d662c29fd24cd0be7060075
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
52
53
54
55
56
57
apiVersion: apps/v1
kind: Deployment
metadata:
  name: email
spec:
  selector:
    matchLabels:
      app: email
  replicas: 1
  template:
    metadata:
      labels:
        app: email
    spec:
      containers:
        - name: email
          image: quay.io/redhattraining/maildev-mirror:latest
          imagePullPolicy: Always
          command: ["bin/maildev"]
          args: ["--web", "8080", "--smtp", "1025", "--verbose"]
          ports:
            - containerPort: 1025
              protocol: TCP
            - containerPort: 8080
              protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
  labels:
    app: email
  name: email
spec:
  ports:
    - port: 8080
      name: web
      protocol: TCP
      targetPort: 8080
    - port: 25
      name: smtp
      protocol: TCP
      targetPort: 1025
  selector:
    app: email
---
kind: Route
apiVersion: route.openshift.io/v1
metadata:
  name: email
  labels:
    app: email
spec:
  to:
    kind: Service
    name: email
  port:
    targetPort: 8080