Added basic setup for master and certification material
This commit is contained in:
22
files/LFS258/SOLUTIONS/s_11/ingress.yaml
Normal file
22
files/LFS258/SOLUTIONS/s_11/ingress.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: ingress-test
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: nginx
|
||||
namespace: default
|
||||
spec:
|
||||
rules:
|
||||
- host: www.external.com
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
service:
|
||||
name: web-one
|
||||
port:
|
||||
number: 80
|
||||
path: /
|
||||
pathType: ImplementationSpecific
|
||||
status:
|
||||
loadBalancer: {}
|
||||
|
||||
Reference in New Issue
Block a user