-
Notifications
You must be signed in to change notification settings - Fork 0
/
kubectl.yaml
80 lines (80 loc) · 2.25 KB
/
kubectl.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
76
77
78
79
80
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: default
name: ashessin-roomos-device-widgets
spec:
selector:
matchLabels:
app: ashessin-roomos-device-widgets
replicas: 1
template:
metadata:
labels:
app: ashessin-roomos-device-widgets
spec:
volumes:
- name: persistent-storage
persistentVolumeClaim:
claimName: roomos-device-widgets-claim
containers:
- name: ashessin-roomos-device-widgets
image: 191518685251.dkr.ecr.us-west-1.amazonaws.com/ashessin-roomos-device-widgets:latest
ports:
- containerPort: 3000
protocol: TCP
resources:
requests:
cpu: '2'
memory: '4Gi'
limits:
cpu: '2'
memory: '4Gi'
volumeMounts:
- name: persistent-storage
mountPath: /app/.data
---
apiVersion: v1
kind: Service
metadata:
namespace: default
name: ashessin-roomos-device-widgets-service
spec:
ports:
- port: 80
targetPort: 3000
protocol: TCP
type: NodePort
selector:
app: ashessin-roomos-device-widgets
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
namespace: default
name: ashessin-roomos-device-widgets-ingress
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/listen-ports: '[{"HTTP": 80}, {"HTTPS":443}]'
alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:us-west-1:191518685251:certificate/1b36669f-ca16-455b-b2b9-bf4c1bea2aa8
alb.ingress.kubernetes.io/actions.ssl-redirect: '{"Type": "redirect", "RedirectConfig": { "Protocol": "HTTPS", "Port": "443", "StatusCode": "HTTP_301"}}'
alb.ingress.kubernetes.io/scheme: internet-facing
alb.ingress.kubernetes.io/target-type: ip
spec:
rules:
- http:
paths:
- path: /*
pathType: ImplementationSpecific
backend:
service:
name: ssl-redirect
port:
name: use-annotation
- path: /*
pathType: ImplementationSpecific
backend:
service:
name: ashessin-roomos-device-widgets-service
port:
number: 80