andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
andres's comments
andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
Regarding Heroku - I loved Heroku the first time I used it so I set up my Kubernetes cluster to work in a similar way (`git push` to deploy to production). I know K8s has a reputation for being useful only for large deployments/large teams but in my experience this isn't true. You can run a single node cluster and use it to host multiple projects all sharing the same load balancer, or you can scale up to thousands of machines with many microservices working together internally. Would it be helpful for you to see a HOWTO for setting up a Heroku-like K8s cluster?
andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
Stern is a CLI tool which more closely compares to the Kubetail CLI tool (as opposed to the Kubetail web interface). Currently, there's a lot of overlap between the two tools but Kubetail gives you more control over source filters and time. For example with the Kubetail CLI tool you can do queries like this:
kubetail logs deployments/web \
--since 2025-05-01T00:00:00Z \
--until 2025-05-02T00:00:00Z \
--zone us-east-1a \
--with-ts \
--with-node \
--with-pod \
--tail=100
I'm not too familiar with stern though so please correct me if I'm wrong. In any case, soon we're going to add more features to the Kubetail CLI tool that will be unique (e.g. remote grep, system logs).andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
helm repo add kubetail https://kubetail-org.github.io/helm-charts/
helm install kubetail kubetail/kubetail --namespace kubetail-system --create-namespace
Then you can access it using `kubectl proxy` or `kubectl port-forward`: kubectl port-forward -n kubetail-system svc/kubetail-dashboard 8080:8080
You can also configure an ingress using the values.yaml file (https://github.com/kubetail-org/helm-charts/blob/main/charts...)andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
andres | 10 months ago | on: Show HN: Kubetail – Real-time log search for Kubernetes
andres | 1 year ago | on: Preview of Explore Logs, a new way to browse your logs without writing LogQL
andres | 1 year ago | on: Show HN: Fancy-ANSI – Small JavaScript library for converting ANSI to HTML
andres | 1 year ago | on: Show HN: Fancy-ANSI – Small JavaScript library for converting ANSI to HTML
Blink support would use CSS animations which requires a deeper level of integration than the other SGR parameters so I wanted to hold off until I could iterate over a solution with a user. If you'd like to use Fancy-ANSI with blink support, please let me know on GitHub and I can implement it fairly quickly.
andres | 1 year ago | on: Show HN: Fancy-ANSI – Small JavaScript library for converting ANSI to HTML
andres | 1 year ago | on: Show HN: Fancy-ANSI – Small JavaScript library for converting ANSI to HTML
andres | 1 year ago | on: Show HN: Fancy-ANSI – Small JavaScript library for converting ANSI to HTML
The full list of supported SGR parameters is in the README: https://github.com/kubetail-org/fancy-ansi?tab=readme-ov-fil...
Let me know if you have any suggestions on how to make it clearer which subset of ANSI is supported.
andres | 1 year ago | on: Show HN: Fancy-ANSI – Small JavaScript library for rendering ANSI in the browser
andres | 1 year ago | on: Show HN: Fancy-ANSI – Small JavaScript library for rendering ANSI in the browser
andres | 2 years ago | on: Show HN: Kubetail – Web-based real-time log viewer for Kubernetes
andres | 2 years ago | on: Show HN: Kubetail – Web-based real-time log viewer for Kubernetes