-
Notifications
You must be signed in to change notification settings - Fork 31
/
k8s.yaml
75 lines (74 loc) · 1.38 KB
/
k8s.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
73
74
75
# kubectl apply -f k8s.yaml
apiVersion: v1
kind: Namespace
metadata:
name: siop
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
name: siop-ingress
namespace: siop
spec:
rules:
- host: demo-portals.smarthealth.cards
http:
paths:
- pathType: Prefix
path: /
backend:
service:
name: demo-portals
port:
number: 80
tls:
- hosts:
- demo-portals.smarthealth.cards
secretName: tls-secret
---
apiVersion: v1
kind: Service
metadata:
namespace: siop
name: demo-portals
spec:
selector:
app: demo-portals
ports:
- protocol: TCP
port: 80
targetPort: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: siop
name: demo-portals
labels:
app: demo-portals
spec:
replicas: 1
selector:
matchLabels:
app: demo-portals
template:
metadata:
labels:
app: demo-portals
spec:
volumes:
containers:
- name: demo-portals
image: ghcr.io/smart-on-fhir/health-cards-tests:latest
imagePullPolicy: Always
resources:
requests:
memory: "128Mi"
cpu: "125m"
ports:
- containerPort: 8080
env:
- name: SERVER_BASE
value: "https://demo-portals.smarthealth.cards/"