From 08e5546c0b306bef6d7fc8522071b59b3eeb5dc4 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 29 Jan 2026 16:04:55 -0800 Subject: [PATCH] Configure Hajimari with Kagi search and app groups - Set Kagi as default search provider with simple-icons:kagi - Add Google and DuckDuckGo as alternative search providers - Explicitly enable showAppGroups, showAppUrls, showAppInfo Co-Authored-By: Claude Opus 4.5 --- argocd/manifests/hajimari/values.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/argocd/manifests/hajimari/values.yaml b/argocd/manifests/hajimari/values.yaml index e8b12a2..b13446d 100644 --- a/argocd/manifests/hajimari/values.yaml +++ b/argocd/manifests/hajimari/values.yaml @@ -7,6 +7,30 @@ hajimari: name: Erich defaultEnable: true + # Display settings + showAppGroups: true + showAppUrls: true + showAppInfo: true + + # Search - default to Kagi + defaultSearchProvider: Kagi + searchProviders: + - name: Kagi + token: k + icon: simple-icons:kagi + searchUrl: https://kagi.com/search?q={query} + url: https://kagi.com + - name: Google + token: g + icon: simple-icons:google + searchUrl: https://www.google.com/search?q={query} + url: https://www.google.com + - name: DuckDuckGo + token: d + icon: simple-icons:duckduckgo + searchUrl: https://duckduckgo.com/?q={query} + url: https://duckduckgo.com + # Discover ingresses from all namespaces namespaceSelector: any: true