-
Notifications
You must be signed in to change notification settings - Fork 0
/
docs-api.yaml
59 lines (59 loc) · 1.05 KB
/
docs-api.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: docs-api
labels:
app: docs-api
spec:
selector:
matchLabels:
app: docs-api
template:
metadata:
labels:
app: docs-api
spec:
containers:
- name: docs-api
image: quay.io/kuadrant/authorino-examples:news-api
imagePullPolicy: IfNotPresent
env:
- name: PORT
value: "3000"
tty: true
ports:
- containerPort: 3000
replicas: 1
---
apiVersion: v1
kind: Service
metadata:
name: docs-api
labels:
app: docs-api
spec:
selector:
app: docs-api
ports:
- name: http
port: 3000
protocol: TCP
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: docs-api
labels:
app: docs-api
spec:
rules:
- host: docs-api.127.0.0.1.nip.io
http:
paths:
- backend:
service:
name: docs-api
port:
number: 3000
path: /docs
pathType: Prefix