29 lines
638 B
YAML
29 lines
638 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
nginx.ingress.kubernetes.io/proxy-read-timeout: "600"
|
|
oceanbox.io/expose: internal
|
|
labels:
|
|
app.kubernetes.io/component: niks3
|
|
name: niks3
|
|
namespace: niks3
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: cache.ekman.oceanbox.io
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: niks3
|
|
port:
|
|
name: http
|
|
path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- cache.ekman.oceanbox.io
|
|
secretName: cache.ekman.oceanbox.io-tls
|