How do I actually access anything? #1297
Unanswered
GodAtum360
asked this question in
Q&A
Replies: 2 comments
-
Did you figure it out, I'm experiencing the same? :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Did you setup a ingress for your service? For example: apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: example-ingress
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
cert-manager.io/cluster-issuer: example-issuer
spec:
rules:
- host: example.host.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: example-service
port:
number: 80
tls:
- hosts:
- example.host.com
secretName: example-tls-secret
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I've setup everything as per the readme. There are no errors in the logs. But how do I actually access anything? Such as the Traefik or Longhorn sites? I tried the k3s-traefik IP but just got a 404 page not found error.
Beta Was this translation helpful? Give feedback.
All reactions