{"id":28858251,"url":"https://github.com/open-metadata/hybrid-ingestion-runner-helm-chart","last_synced_at":"2026-04-14T20:00:42.495Z","repository":{"id":287385048,"uuid":"936694866","full_name":"open-metadata/hybrid-ingestion-runner-helm-chart","owner":"open-metadata","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-25T14:24:28.000Z","size":220,"stargazers_count":0,"open_issues_count":4,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-26T09:58:34.431Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go Template","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/open-metadata.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":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":"2025-02-21T14:24:53.000Z","updated_at":"2026-03-23T17:38:41.000Z","dependencies_parsed_at":"2025-06-13T12:31:40.742Z","dependency_job_id":"f64ed670-7a2f-48f5-86a5-cff00067b0d0","html_url":"https://github.com/open-metadata/hybrid-ingestion-runner-helm-chart","commit_stats":null,"previous_names":["open-metadata/hybrid-ingestion-runner-helm-chart"],"tags_count":63,"template":false,"template_full_name":null,"purl":"pkg:github/open-metadata/hybrid-ingestion-runner-helm-chart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-metadata%2Fhybrid-ingestion-runner-helm-chart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-metadata%2Fhybrid-ingestion-runner-helm-chart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-metadata%2Fhybrid-ingestion-runner-helm-chart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-metadata%2Fhybrid-ingestion-runner-helm-chart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/open-metadata","download_url":"https://codeload.github.com/open-metadata/hybrid-ingestion-runner-helm-chart/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-metadata%2Fhybrid-ingestion-runner-helm-chart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31812977,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-06-20T02:05:56.696Z","updated_at":"2026-04-14T20:00:42.483Z","avatar_url":"https://github.com/open-metadata.png","language":"Go Template","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hybrid-ingestion-runner-helm-chart\n\nHelm chart for deploying the Hybrid Ingestion Runner.\n\n## Features\n\n- Hybrid Ingestion Runner deployment\n- ServiceMonitor for Prometheus metrics\n- PrometheusRules for alerting\n- Grafana Dashboard using Grafana Operator\n- ECR Registry Helper for AWS authentication\n- Optional Argo Workflows integration\n- OpenShift / ROSA support\n\n## Installing on OpenShift / ROSA\n\n### Prerequisites\n\n- ROSA or OpenShift cluster with `oc` CLI configured\n- Helm 3 installed\n- AWS CLI configured with credentials that can authenticate to ECR\n\n### 1. Add the Argo Helm repo and build dependencies\n\n```bash\nhelm repo add argo https://argoproj.github.io/argo-helm\nhelm dependency build ./charts/hybrid-ingestion-runner\n```\n\n### 2. Create the namespace\n\n```bash\noc new-project hybrid-ingestion-runner\n```\n\n### 3. Create the ECR pull secret\n\nECR tokens expire after 12 hours. Create the secret manually using the AWS CLI:\n\n```bash\nNAMESPACE=\"hybrid-ingestion-runner\"\nAWS_REGION=\"eu-west-1\"\nAWS_ACCOUNT=\"118146679784\"\nECR_REGISTRY=\"${AWS_ACCOUNT}.dkr.ecr.${AWS_REGION}.amazonaws.com\"\n\nkubectl create secret docker-registry omd-registry-credentials \\\n  --docker-server=\"$ECR_REGISTRY\" \\\n  --docker-username=AWS \\\n  --docker-password=\"$(aws ecr get-login-password --region $AWS_REGION)\" \\\n  --namespace=\"$NAMESPACE\"\n```\n\nTo refresh the token before it expires (safe to re-run):\n\n```bash\nkubectl create secret docker-registry omd-registry-credentials \\\n  --docker-server=\"$ECR_REGISTRY\" \\\n  --docker-username=AWS \\\n  --docker-password=\"$(aws ecr get-login-password --region $AWS_REGION)\" \\\n  --namespace=\"$NAMESPACE\" \\\n  --dry-run=client -o yaml | kubectl apply -f -\n```\n\n### 4. Install using the rosa-values.yaml\n\nEdit `rosa-values.yaml` and set your Collate credentials:\n\n```yaml\nconfig:\n  agentId: \"RemoteRunner\"        # unique identifier for this runner\n  authToken: \"your-auth-token\"   # Collate auth token\n  serverHost: \"your-cluster.getcollate.io\"\n```\n\nThen install:\n\n```bash\nhelm upgrade --install hybrid-ingestion-runner \\\n  ./charts/hybrid-ingestion-runner \\\n  --namespace hybrid-ingestion-runner \\\n  -f rosa-values.yaml\n```\n\n### OpenShift SCC compatibility\n\nOpenShift's `restricted-v2` SCC rejects pods that set a specific `runAsUser`, `fsGroup`, or `seccompProfile` — it assigns a UID from its own allowed range automatically. Setting `openshift.enabled: true` in your values instructs the chart to omit those fields:\n\n```yaml\nopenshift:\n  enabled: true\n```\n\nThis causes the deployment to render only the fields that are compatible with `restricted-v2`:\n\n```yaml\n# pod level\nsecurityContext:\n  runAsNonRoot: true\n\n# container level\nsecurityContext:\n  allowPrivilegeEscalation: false\n  capabilities:\n    drop: [ALL]\n  runAsNonRoot: true\n```\n\n### ECR Registry Helper on OpenShift\n\nThe built-in `ecrRegistryHelper` CronJob uses the `heyvaldemar/aws-kubectl` image which requires root and is blocked by OpenShift SCCs. It is disabled in `rosa-values.yaml`. Refresh the `omd-registry-credentials` secret manually using the command in step 3, or schedule it externally.\n\n## Grafana Dashboard\n\nThis chart includes a Grafana dashboard that can be deployed using the [Grafana Operator](https://github.com/grafana/grafana-operator).\n\n### Prerequisites\n\n1. Grafana Operator must be installed in your cluster\n2. A Grafana instance must be deployed via the Grafana Operator\n\n### Configuration\n\nEnable the Grafana dashboard in your `values.yaml`:\n\n```yaml\ngrafanaDashboard:\n  enabled: true\n  # Namespace where the dashboard will be created (defaults to Release namespace)\n  namespace: \"\"\n  # Folder name in Grafana where the dashboard will be placed\n  folderName: \"Hybrid Ingestion Runner\"\n  # Instance selector to match the Grafana instance\n  # This should match the labels on your Grafana CR\n  instanceSelector:\n    dashboards: \"grafana\"\n  # Additional labels for the dashboard\n  labels: {}\n  # Additional annotations for the dashboard\n  annotations: {}\n  # Allow cross-namespace import\n  allowCrossNamespaceImport: false\n```\n\n### Instance Selector\n\nThe `instanceSelector` field is crucial - it must match the labels on your Grafana CR. For example, if your Grafana instance has the label `dashboards: grafana`, use:\n\n```yaml\ninstanceSelector:\n  dashboards: \"grafana\"\n```\n\nTo find the labels on your Grafana instance:\n\n```bash\nkubectl get grafana -n \u003cgrafana-namespace\u003e -o yaml\n```\n\n### Dashboard Features\n\nThe dashboard includes the following panels:\n\n- **Agent Status**: Shows if the hybrid ingestion runner pod is up\n- **Connection Status**: Shows the connection status to the Collate server\n- **Request Rate**: Displays HTTP request rates\n- **CPU Usage**: Container CPU usage over time\n- **Memory Usage**: Container memory usage over time\n- **Pod Status by Phase**: Shows pod status across different phases\n\n### Dashboard Customization\n\nThe dashboard JSON is located at `dashboards/hybrid-ingestion-runner-dashboard.json`. You can customize it by:\n\n1. Importing the JSON into Grafana\n2. Making your changes in the Grafana UI\n3. Exporting the modified JSON\n4. Replacing the file in the chart\n\n### Datasource Configuration\n\nThe dashboard uses template variables for datasource selection. If you need to map specific datasource names, use the `datasources` configuration:\n\n```yaml\ngrafanaDashboard:\n  enabled: true\n  datasources:\n    - inputName: \"DS_PROMETHEUS\"\n      datasourceName: \"Prometheus\"\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopen-metadata%2Fhybrid-ingestion-runner-helm-chart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopen-metadata%2Fhybrid-ingestion-runner-helm-chart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopen-metadata%2Fhybrid-ingestion-runner-helm-chart/lists"}