You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
548 B
24 lines
548 B
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: influxdb-ingress
|
|
annotations:
|
|
kubernetes.io/ingress.class: nginx
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
namespace: influx
|
|
spec:
|
|
rules:
|
|
- host: influx.cyclops-labs.io
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: influxdb
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- influx.cyclops-labs.io
|
|
secretName: influx-tls
|
|
|