jellyfin secrets

This commit is contained in:
2025-03-06 20:46:55 -07:00
parent 05c9026907
commit dbec9fd281
2 changed files with 5 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ spec:
tls: tls:
- hosts: - hosts:
- jellyfin.alexmickelson.guru - jellyfin.alexmickelson.guru
secretName: ha-tls-cert secretName: jellyfin-tls-cert
rules: rules:
- host: jellyfin.alexmickelson.guru - host: jellyfin.alexmickelson.guru
http: http:

View File

@@ -33,16 +33,9 @@ Currently clouflare domains cannot be CNAME'd to tailscale domains:
## Kubernetes ingress controller ## Kubernetes ingress controller
```
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.12.0/deploy/static/provider/baremetal/deploy.yaml
``
I'll need to create a custom service to bring in port 80 and 443 later I had to modify the base ingress to allow for use on 80 and 443. There should be a way to do this with helm, but I can never quite get it to work
``` this is the original: https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.12.0/deploy/static/provider/baremetal/deploy.yaml
helm upgrade --install ingress-nginx ingress-nginx \
--repo https://kubernetes.github.io/ingress-nginx \ the `ingress-nginx-controller` was changed to a daemonset rather than an deployment
--namespace ingress-nginx \
--create-namespace \
-f values.yml
```