-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathargo-gateway.yaml
45 lines (44 loc) · 949 Bytes
/
argo-gateway.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
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: app-gateway
namespace: default
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
gatewayClassName: nginx
listeners:
- name: http
port: 80
protocol: HTTP
hostname: "app.kubesimplify.com"
- name: https
hostname: "app.kubesimplify.com"
port: 443
protocol: HTTPS
allowedRoutes:
namespaces:
from: All
tls:
mode: Terminate
certificateRefs:
- name: app-kubesimplify-com-tls
kind: Secret
group: ""
- name: argo-http
port: 80
protocol: HTTP
hostname: "argo.kubesimplify.com"
- name: argo-https
hostname: "argo.kubesimplify.com"
port: 443
protocol: HTTPS
allowedRoutes:
namespaces:
from: All
tls:
mode: Terminate
certificateRefs:
- name: argo-kubesimplify-com-tls
kind: Secret
group: ""