-
Notifications
You must be signed in to change notification settings - Fork 1
/
k8s.yml
55 lines (54 loc) · 981 Bytes
/
k8s.yml
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
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: proxy
namespace: production
labels:
name: proxy
spec:
replicas: 2
selector:
matchLabels:
app: proxy
template:
metadata:
labels:
app: proxy
spec:
containers:
- image: "kumojin/bye-bye-cors"
name: proxy
imagePullPolicy: Always
ports:
- containerPort: 3000
imagePullSecrets:
- name: acs
---
apiVersion: v1
kind: Service
metadata:
name: proxy
namespace: production
spec:
ports:
- name: node
targetPort: 3000
port: 3000
selector:
app: proxy
---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: proxy
namespace: production
annotations:
kubernetes.io/ingress.class: "nginx"
cert-manager.io/cluster-issuer: "letsencrypt"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
tls:
- hosts: []
secretName: proxy-tls
rules: []