Replies: 5 comments
-
Thanks for posting a discussion about homepage here on GitHub. Homepage now uses a fancy new AI tool thanks to our friends at Glime, so the answer below is the AI bot's attempt to answer your question. If you feel it's sufficient you can mark the answer and close this post, otherwise feel free to leave it open of course! Thanks for using Homepage! ❤️ Based on the information provided and the context from the documentation, it seems that your Traefik v3 IngressRoute resource is not being picked up by Homepage. There are a few things to check and consider:
If after checking these points the issue persists, you may want to look at the Homepage logs to see if there are any errors or messages related to the discovery of IngressRoute resources. Additionally, you can check the Traefik logs to ensure that the IngressRoute is correctly configured and recognized by Traefik. Since you mentioned that there are no errors and normal Ingress resources are being picked up, it's likely a specific issue with the IngressRoute resource or a compatibility issue with the version of Homepage you are using. If you need further assistance, please provide additional details such as any relevant logs or error messages you are encountering. This comment was generated by Glime. |
Beta Was this translation helpful? Give feedback.
-
Hi I was facing the same issue, except I installed the resources myself instead of going with the helm chart. Both the documentation and (probably) the helm chart are using a deprecated version of the traefik apigroup. The documentation is using the Below my working apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: homepage
labels:
app.kubernetes.io/name: homepage
rules:
- apiGroups:
- ""
resources:
- namespaces
- pods
- nodes
verbs:
- get
- list
- apiGroups:
- extensions
- networking.k8s.io
resources:
- ingresses
verbs:
- get
- list
- apiGroups:
# - traefik.containo.us
- traefik.io
resources:
- ingressroutes
verbs:
- get
- list
- apiGroups:
- metrics.k8s.io
resources:
- nodes
- pods
verbs:
- get
- list
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: homepage
labels:
app.kubernetes.io/name: homepage
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: homepage
subjects:
- kind: ServiceAccount
name: homepage
namespace: homepage Please be aware that I have homepage in its own namespace so in case your deployment is not in the namespace |
Beta Was this translation helpful? Give feedback.
-
This is the line that needs to be changed to homepage/docs/installation/k8s.md Line 212 in 1c5d9ca |
Beta Was this translation helpful? Give feedback.
-
This discussion has been automatically closed due to inactivity. See our contributing guidelines for more details. |
Beta Was this translation helpful? Give feedback.
-
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. See our contributing guidelines for more details. |
Beta Was this translation helpful? Give feedback.
-
Description
I have a traefik v3 IngressRoute resource but its not picked up by homepage. A normal Ingress resource does get picked up
homepage version
1.2.3 (helm)
Installation method
Other (please describe above)
Configuration
Beta Was this translation helpful? Give feedback.
All reactions