{"id":35673364,"url":"https://github.com/observeinc/helm-charts","last_synced_at":"2026-02-12T02:10:39.159Z","repository":{"id":155782000,"uuid":"616140032","full_name":"observeinc/helm-charts","owner":"observeinc","description":"Helm charts for installing the telemetry agents required for Observe apps on Kubernetes","archived":false,"fork":false,"pushed_at":"2026-02-06T23:54:38.000Z","size":1512,"stargazers_count":9,"open_issues_count":26,"forks_count":10,"subscribers_count":9,"default_branch":"main","last_synced_at":"2026-02-07T10:39:31.349Z","etag":null,"topics":["integrationname-k8s","integrations","k8s"],"latest_commit_sha":null,"homepage":"https://docs.observeinc.com/en/latest/content/integrations/kubernetes/kubernetes-install.html#connecting-kubernetes-with-helm","language":"Go Template","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/observeinc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-19T18:12:37.000Z","updated_at":"2026-02-06T23:54:20.000Z","dependencies_parsed_at":"2023-09-21T20:25:44.804Z","dependency_job_id":"d746231a-c8a6-498e-8815-9867da01e055","html_url":"https://github.com/observeinc/helm-charts","commit_stats":null,"previous_names":[],"tags_count":381,"template":false,"template_full_name":null,"purl":"pkg:github/observeinc/helm-charts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observeinc%2Fhelm-charts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observeinc%2Fhelm-charts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observeinc%2Fhelm-charts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observeinc%2Fhelm-charts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/observeinc","download_url":"https://codeload.github.com/observeinc/helm-charts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/observeinc%2Fhelm-charts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29354726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["integrationname-k8s","integrations","k8s"],"created_at":"2026-01-05T19:22:54.302Z","updated_at":"2026-02-12T02:10:39.136Z","avatar_url":"https://github.com/observeinc.png","language":"Go Template","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Observe Helm Charts\n\nThis repository contains Helm charts for installing the telemetry agents required for Observe apps on Kubernetes. The current chart that should be used is `agent`. The other charts are deprecated and should not be used.\n\n# Quick Start\n\nFirst, install and update the observe helm repository:\n\n```bash\nhelm repo add observe https://observeinc.github.io/helm-charts\nhelm repo update\n```\n\n## Namespace\n\nWe currently require that Observe charts are installed to an `observe` namespace.\nThe namespace should further be annotated with a human-readable cluster name. Helm\nsupports creating namespaces as a convenience feature, but does not support managing\nand configuring the namespace (that is, the `--create-namespace` option in `helm install`\nis equivalent to manually running `kubectl create namespace`). Thus it is recommended to\nmanage the namespace externally to Helm. This can likely be done by following the same\nmethodology you use to manage the creation of your Kubernetes clusters, and/or your other\nnamespaces.\n\nYou can also manage the namespace manually using the following commands:\n```\nkubectl create namespace observe\n```\n\n## Installing Agent stack\n### Creating the token secret\nThe first step is to provision an Observe Ingest Token and create a secret in the `observe` namespace:\n```\nkubectl -n observe create secret generic agent-credentials --from-literal=OBSERVE_TOKEN=${YOUR_INGEST_TOKEN}\n\nkubectl annotate secret agent-credentials -n observe \\\n  meta.helm.sh/release-name=observe-agent \\\n  meta.helm.sh/release-namespace=observe\n\nkubectl label secret agent-credentials -n observe \\\n  app.kubernetes.io/managed-by=Helm\n```\n\n### Install stack\nAfter the secret is created, you can install the agent stack.\n\n```\nhelm install observe-agent observe/agent -n observe \\\n--set observe.collectionEndpoint.value=\"${OBSERVE_COLLECTION_ENDPOINT}\" \\\n--set cluster.name=\"${CLUSTER_NAME}\" \\\n--set cluster.deploymentEnvironment.name=\"${DEPLOYMENT_ENVIRONMENT_NAME}\" \\\n\n\n# store values for further configuration and upgrades\nhelm -n observe get values observe-agent -o yaml \u003e observe-agent-values.yaml\n```\n\n## Installing Traces\nTraces and other app telemetry such as metrics can be sent to the `forwarder` daemonset that's installed as part of the `agent` stack. For more details please see the docs [here](https://docs.observeinc.com/en/latest/content/observe-agent/ConfigureApplicationInstrumentation.html)\n\n## Sizing\nFor more details on default sizing and how to tune the services in the helm chart, please see the docs [here](https://docs.observeinc.com/en/latest/content/observe-agent/tune_services.html).\n\n# Uninstall Stack\n```helm -n observe uninstall observe-agent```\n\n# Build\n\n## Dependencies\n\nKind needs to be installed in order to build and test this repository:\n\nhttps://kind.sigs.k8s.io/docs/user/quick-start/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobserveinc%2Fhelm-charts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fobserveinc%2Fhelm-charts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobserveinc%2Fhelm-charts/lists"}