Skip to content

Commit

Permalink
Ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
vfarcic committed Feb 5, 2022
1 parent dd7dd37 commit 7af69a4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions k8s/ing.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
---

apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: devops-toolkit
labels:
app: devops-toolkit
annotations:
kubernetes.io/ingress.class: nginx
ingress.kubernetes.io/ssl-redirect: "false"
spec:
rules:
- http:
paths:
- backend:
serviceName: devops-toolkit
servicePort: 80
- path: /
pathType: ImplementationSpecific
backend:
service:
name: devops-toolkit
port:
number: 80
host: devopstoolkitseries.com

0 comments on commit 7af69a4

Please sign in to comment.