Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
irumaru committed Oct 30, 2023
2 parents 363f6ae + 0fce66c commit 8997bce
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions deploy/syncing/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
issuer.yaml
36 changes: 36 additions & 0 deletions deploy/syncing/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
apiVersion: v1
kind: Service
metadata:
name: web-service
spec:
selector:
app: web
ports:
- protocol: TCP
port: 80
targetPort: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: web-ingress
annotations:
kubernetes.io/ingress.class: "nginx"
cert-manager.io/issuer: "letsencrypt"
spec:
# ingressClassName: nginx
tls:
- hosts:
- "numasai2023.mikusorigin.com"
secretName: web-secret
rules:
- host: "numasai2023.mikusorigin.com"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: web-service
port:
number: 80

0 comments on commit 8997bce

Please sign in to comment.