forked from codemowers/hello-gin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yaml
72 lines (72 loc) · 1.44 KB
/
deployment.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-gin
spec:
replicas: 3
selector:
matchLabels:
app: hello-gin
template:
metadata:
labels:
app: hello-gin
spec:
enableServiceLinks: false
imagePullSecrets:
- name: imgcred
containers:
- name: hello-gin
image: hello-gin
env:
- name: USERNAME
value: world
- name: MY_POD_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
ports:
- containerPort: 8000
name: http
- containerPort: 8080
name: metrics
---
apiVersion: v1
kind: Service
metadata:
name: hello-gin
labels:
app: hello-gin
spec:
selector:
app: hello-gin
ports:
- protocol: TCP
port: 8000
name: http
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello-gin
annotations:
kubernetes.io/ingress.class: shared
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
external-dns.alpha.kubernetes.io/target: traefik.codemowers.ee
spec:
rules:
- host: hello-foobar.codemowers.ee
http:
paths:
- pathType: Prefix
path: "/api/v1/gin"
backend:
service:
name: hello-gin
port:
name: http
tls:
- hosts:
- "*.codemowers.ee"