{"id":28521548,"url":"https://github.com/keephq/helm-charts","last_synced_at":"2025-07-03T17:31:16.226Z","repository":{"id":225297473,"uuid":"765260399","full_name":"keephq/helm-charts","owner":"keephq","description":"Charts for Keep https://github.com/keephq/keep","archived":false,"fork":false,"pushed_at":"2025-06-14T08:52:43.000Z","size":557,"stargazers_count":15,"open_issues_count":7,"forks_count":23,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-26T04:42:57.795Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/keephq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-29T15:27:23.000Z","updated_at":"2025-06-14T08:52:33.000Z","dependencies_parsed_at":"2024-03-26T18:24:07.392Z","dependency_job_id":"57d08f9f-0d1c-4f6a-9a16-730f2dfe7539","html_url":"https://github.com/keephq/helm-charts","commit_stats":null,"previous_names":["keephq/helm-charts"],"tags_count":98,"template":false,"template_full_name":null,"purl":"pkg:github/keephq/helm-charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keephq%2Fhelm-charts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keephq%2Fhelm-charts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keephq%2Fhelm-charts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keephq%2Fhelm-charts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keephq","download_url":"https://codeload.github.com/keephq/helm-charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keephq%2Fhelm-charts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263369521,"owners_count":23456314,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-09T07:36:35.124Z","updated_at":"2025-07-03T17:31:16.219Z","avatar_url":"https://github.com/keephq.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Keep Helm Chart\nThe Keep Helm Chart provides a convenient way to deploy and manage Keep on Kubernetes using Helm, a package manager for Kubernetes applications.\n\n# Documentation\nFull documentation can be found at [Keep Docs](https://docs.keephq.dev/deployment/kubernetes/installation).\n\n# Prerequisites\n\n## Ingress Controller (Recommended)\nThe recommended way to deploy Keep is with ingress-nginx that serves as a single ingress for all services (backend, frontend, and websocket server).\n\n1. Install ingress-nginx:\n```bash\nhelm upgrade --install ingress-nginx ingress-nginx \\\n  --repo https://kubernetes.github.io/ingress-nginx \\\n  --namespace ingress-nginx --create-namespace\n```\n\n2. Enable snippet annotations:\nThe ingress controller must have snippet annotations enabled. You can enable it during installation:\n```bash\nhelm upgrade --install ingress-nginx ingress-nginx \\\n  --repo https://kubernetes.github.io/ingress-nginx \\\n  --namespace ingress-nginx --create-namespace \\\n  --set controller.config.allow-snippet-annotations=true\n```\n\nTo verify if snippet annotations are enabled:\n```bash\n# Check the configmap\nkubectl get configmap -n ingress-nginx ingress-nginx-controller -o yaml | grep allow-snippet-annotations\n\n# Or check the controller logs\nkubectl logs -n ingress-nginx -l app.kubernetes.io/component=controller | grep \"allow-snippet-annotations\"\n```\n\n# Installation\n\n## Option 1: With ingress-nginx (Recommended)\n```bash\n# Add the Helm repository\nhelm repo add keephq https://keephq.github.io/helm-charts\n\n# Install Keep with ingress enabled (default nginx)\nhelm install keep keephq/keep -n keep --create-namespace\n```\n\n## Option 2: Without ingress-nginx (Not recommended)\nKeep can be deployed without ingress-nginx, but this will create three separate ingresses (one for each service):\n```bash\n# Add the Helm repository\nhelm repo add keephq https://keephq.github.io/helm-charts\n\n# Install Keep without ingress\nhelm install keep keephq/keep\n```\n\n# Post-Installation\n\n## With ingress-nginx\nYour Keep installation will be available at the ingress host you configured. Check your ingress status:\n```bash\nkubectl get ingress\n```\n\n## Without ingress-nginx\nYou'll need to set up port forwarding to access the services:\n```bash\n# Expose the UI locally\nkubectl port-forward svc/keep-frontend 3000:3000 \u0026\n\n# Expose the Backend locally\nkubectl port-forward svc/keep-backend 8080:8080 \u0026\n\n# Export websocket server (optional)\nkubectl port-forward svc/keep-websocket 6001:6001 \u0026\n```\n\n# Uninstallation\n```bash\nhelm uninstall keep\n```\n\n# Configuration\nTo view supported configuration, see [this](charts/keep/README.md).\n\n# Platform-Specific Instructions\n\n## Openshift\nKeep's Helm Chart supports installation on Openshift.\nConfigure the route settings under frontend(/backend).route:\n```yaml\nfrontend:\n  route:\n    host: your-desired-hostname\n```\n\n## Local Kubernetes\nFor local Kubernetes clusters without external IP (such as when using NodePort or LoadBalancer):\n\n1. If using ingress-nginx, ensure your ingress controller is properly configured for local development\n2. If not using ingress-nginx, use the port forwarding method described in the \"Without ingress-nginx\" section\n\n# Troubleshooting\n\n## Common Issues\n1. Ingress not working\n   - Verify ingress-nginx is properly installed\n   - Check if snippet annotations are enabled\n   - Verify ingress configuration with `kubectl describe ingress`\n\n2. WebSocket connection issues\n   - Ensure the websocket service is running\n   - Check ingress configuration for proper WebSocket headers\n   - Verify connectivity using `curl` or browser developer tools\n\nFor more detailed configuration options and troubleshooting, refer to the [documentation](charts/keep/README.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeephq%2Fhelm-charts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeephq%2Fhelm-charts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeephq%2Fhelm-charts/lists"}