File tree Expand file tree Collapse file tree 2 files changed +54
-1
lines changed
kubernetes/apps/networking/misc-ingress/app Expand file tree Collapse file tree 2 files changed +54
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
3
3
kind : Kustomization
4
4
namespace : networking
5
5
resources :
6
+ - ./nas-ingress.yaml
7
+ - ./portainer-ingress.yaml
6
8
- ./radarr-ingress.yaml
7
9
- ./sonarr-ingress.yaml
8
- - ./nas-ingress.yaml
Original file line number Diff line number Diff line change
1
+ ---
2
+ apiVersion : networking.k8s.io/v1
3
+ kind : Ingress
4
+ metadata :
5
+ name : portainer
6
+ namespace : networking
7
+ annotations :
8
+ external-dns.alpha.kubernetes.io/target : ipv4.lildrunkensmurf.com
9
+ nginx.ingress.kubernetes.io/whitelist-source-range : |
10
+ 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
11
+ hajimari.io/icon : mdi:television-classic
12
+ nginx.ingress.kubernetes.io/backend-protocol : " HTTP"
13
+ spec :
14
+ ingressClassName : nginx
15
+ rules :
16
+ - host : &host "portainer.${SECRET_DOMAIN}"
17
+ http :
18
+ paths :
19
+ - pathType : Prefix
20
+ path : " /"
21
+ backend :
22
+ service :
23
+ name : portainer
24
+ port :
25
+ number : 9000
26
+ tls :
27
+ - hosts :
28
+ - *host
29
+ ---
30
+ apiVersion : v1
31
+ kind : Endpoints
32
+ metadata :
33
+ name : portainer
34
+ namespace : networking
35
+ subsets :
36
+ - addresses :
37
+ - ip : 192.168.1.100
38
+ ports :
39
+ - name : http
40
+ port : 9000
41
+ protocol : TCP
42
+ ---
43
+ apiVersion : v1
44
+ kind : Service
45
+ metadata :
46
+ name : portainer
47
+ namespace : networking
48
+ spec :
49
+ ports :
50
+ - name : http
51
+ port : 9000
52
+ type : ClusterIP
You can’t perform that action at this time.
0 commit comments