-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yml
97 lines (97 loc) · 1.97 KB
/
deployment.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
apiVersion: v1
kind: Namespace
metadata:
name: golang
---
---
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
name: letsencrypt-nginx
namespace: golang
spec:
# ACME issuer configuration
# `email` - the email address to be associated with the ACME account (make sure it's a valid one)
# `server` - the URL used to access the ACME server’s directory endpoint
# `privateKeySecretRef` - Kubernetes Secret to store the automatically generated ACME account private key
acme:
email: <CERTIFICATE_EMAIL>
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: letsencrypt-nginx-private-key
solvers:
# Use the HTTP-01 challenge provider
- http01:
ingress:
class: nginx
---
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: golang-web
namespace: golang
spec:
replicas: 1
selector:
matchLabels:
app: golang-web
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
minReadySeconds: 5
template:
metadata:
labels:
app: golang-web
spec:
containers:
- name: hello-app
image: <IMAGE>
ports:
- containerPort: 8080
resources:
requests:
cpu: 50m
limits:
cpu: 50m
---
---
apiVersion: v1
kind: Service
metadata:
name: web
namespace: golang
spec:
ports:
- name: http
port: 80
targetPort: 8080
selector:
app: golang-web
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-myweb
namespace: golang
annotations:
cert-manager.io/issuer: letsencrypt-nginx
spec:
tls:
- hosts:
- myweb.giuliohome.org
secretName: letsencrypt-nginx-myweb
rules:
- host: myweb.giuliohome.org
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: web
port:
number: 80
ingressClassName: nginx