File tree 2 files changed +13
-7
lines changed
2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
- apiVersion : extensions/v1beta1
1
+ apiVersion : networking.k8s.io/v1
2
2
kind : Ingress
3
3
metadata :
4
4
name : nginx-ingress
@@ -10,12 +10,15 @@ spec:
10
10
http :
11
11
paths :
12
12
- path : /nginx # <-- path this rule applies to
13
+ pathType : Prefix
13
14
backend :
14
- serviceName : nginx # <-- Service that serves the requests
15
- servicePort : 80
15
+ service :
16
+ name : nginx # <-- Service that serves the requests
17
+ port :
18
+ number : 80
16
19
17
20
---
18
- apiVersion : extensions/v1beta1
21
+ apiVersion : networking.k8s.io/v1
19
22
kind : Ingress
20
23
metadata :
21
24
name : httpd-ingress # <-- the same as above only for another service
27
30
http :
28
31
paths :
29
32
- path : /httpd
33
+ pathType : Prefix
30
34
backend :
31
- serviceName : httpd
32
- servicePort : 80
35
+ service :
36
+ name : httpd # <-- Service that serves the requests
37
+ port :
38
+ number : 80
33
39
Original file line number Diff line number Diff line change 1
- apiVersion : batch/v1beta1
1
+ apiVersion : batch/v1
2
2
kind : CronJob
3
3
metadata :
4
4
name : sleeper
You can’t perform that action at this time.
0 commit comments