{"id":19277701,"url":"https://github.com/observiq/bindplane-op-helm","last_synced_at":"2026-07-01T13:30:23.034Z","repository":{"id":65746111,"uuid":"598760591","full_name":"observIQ/bindplane-op-helm","owner":"observIQ","description":"Chart for deploying BindPlane OP with Helm","archived":false,"fork":false,"pushed_at":"2024-10-16T15:47:41.000Z","size":407,"stargazers_count":8,"open_issues_count":1,"forks_count":4,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-10-18T14:52:44.037Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Mustache","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/observIQ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":"docs/GOVERNANCE.md","roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-07T18:56:39.000Z","updated_at":"2024-10-16T15:47:32.000Z","dependencies_parsed_at":"2023-10-25T18:47:39.464Z","dependency_job_id":"0a4babc5-8cbf-4bed-983b-6e7367b269ed","html_url":"https://github.com/observIQ/bindplane-op-helm","commit_stats":null,"previous_names":[],"tags_count":173,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observIQ%2Fbindplane-op-helm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observIQ%2Fbindplane-op-helm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observIQ%2Fbindplane-op-helm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observIQ%2Fbindplane-op-helm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/observIQ","download_url":"https://codeload.github.com/observIQ/bindplane-op-helm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240381308,"owners_count":19792443,"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":"2024-11-09T21:06:40.763Z","updated_at":"2026-07-01T13:30:23.001Z","avatar_url":"https://github.com/observIQ.png","language":"Mustache","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/observIQ/bindplane-op-helm/actions/workflows/ci.yml/badge.svg)](https://github.com/observIQ/bindplane-op-helm/actions/workflows/ci.yml)\n[![Helm Release](https://github.com/observIQ/bindplane-op-helm/actions/workflows/helm.yml/badge.svg)](https://github.com/observIQ/bindplane-op-helm/actions/workflows/helm.yml)\n[![Pages Deployment](https://github.com/observIQ/bindplane-op-helm/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/observIQ/bindplane-op-helm/actions/workflows/pages/pages-build-deployment)\n\n# Bindplane Helm\n\nThis repository contains a Helm chart for [Bindplane](https://bindplane.com).\n\n## Prerequisites\n\n### Postgres\n\nBindplane supports two backend storage options. Postgres and `bbolt` (deprecated). The chart will\nuse `bbolt` by default, however, Bindplane recommends using Postgres for production deployments. Additionally,\nthe `bbolt` backend will be removed in Bindplane version 2. Postgres allows for better performance and\nscalability. Bindplane with High Availability requires Postgres.\n\nSee the Bindplane [PostgreSQL documentation](https://bindplane.com/docs/advanced-setup/installation/postgresql)\nfor more details.\n\n### Helm\n\n[Helm](https://helm.sh) must be installed to use the charts. Please refer to\nHelm's [documentation](https://helm.sh/docs) to get started.\n\n### Secrets\n\nThe Chart can accept a secret for configuring sensitive options. This secret should be managed outside of helm with your preferred secret management solution. Alternatively, you can specify\nthese options using a values file. See the [Chart documentation](./charts/bindplane/README.md).\n\nThe secret should have the following keys:\n- `username`: Basic auth username to use for the default admin user\n- `password`: Basic auth password to use for the default admin user\n- `sessions_secret`: Random UUIDv4 used to derive web interface session tokens\n- `license`: Your Bindplane license key\n\nExample: Create secret with `kubectl`:\n\n```shell\nkubectl -n default create secret generic bindplane \\\n  --from-literal=username=myuser \\\n  --from-literal=password=mypassword \\\n  --from-literal=sessions_secret=d9425db6-c4ee-4769-9c1f-a66987679e90 \\\n  --from-literal=license=your_license_key\n```\n\n## Configuration\n\nSee the [Chart documentation](./charts/bindplane/README.md) for configuration documentation.\n\n## Usage\n\nAdd the repository:\n\n```bash\nhelm repo add bindplane \\\n    https://observiq.github.io/bindplane-op-helm\n\nhelm repo update\nhelm search repo\n```\n\nInstall\n\n```bash\nhelm upgrade --install bindplane bindplane/bindplane\n```\n\n## Connectivity\n\nBindplane can be reached using the clusterIP service deployed by the chart. By default the service\nname is `bindplane` and the port is `3001`.\n\n**Web Interface**\n\nYou can connect to Bindplane from your workstation using port forwarding:\n\n```bash\nkubectl -n default port-forward svc/bindplane 3001\n```\n\nYou should now be able to access http://localhost:3001\n\n**Command Line**\n\nYou can connect to Bindplane from your workstation using port forwarding:\n\n```bash\nkubectl -n default port-forward svc/bindplane 3001\n```\n\nCreate and use a profile:\n\n```bash\nbindplanectl profile set myprofile \\\n  --username \u003cusername\u003e \\\n  --password \u003cpassword\u003e \\\n  --server-url http://localhost:3001\n\nbindplanectl profile use myprofile\n```\n\nYou should be able to issue commands: `bindplanectl get agent`\n\n**Collectors**\n\nCollectors running within the cluster can connect with the following OpAMP URI:\n\n```\nws://bindplane.default:3001/v1/opamp\n```\n\n# Community\n\nBindplane Helm is an open source project. If you'd like to contribute, take a look at our [contribution guidelines](/docs/CONTRIBUTING.md). We look forward to building with you.\n\n## Code of Conduct\n\nBindplane Helm follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). Please report violations of the Code of Conduct to any or all [maintainers](/docs/MAINTAINERS.md).\n\n# Other questions?\n\nSend us an [email](mailto:support@observiq.com), or open an issue with your question. We'd love to hear from you!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobserviq%2Fbindplane-op-helm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fobserviq%2Fbindplane-op-helm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobserviq%2Fbindplane-op-helm/lists"}