{"id":16139403,"url":"https://github.com/networkop/nmos-kubernetes","last_synced_at":"2026-03-18T18:03:34.963Z","repository":{"id":83590198,"uuid":"504535536","full_name":"networkop/nmos-kubernetes","owner":"networkop","description":null,"archived":false,"fork":false,"pushed_at":"2022-06-17T13:01:03.000Z","size":5,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-06T17:51:56.917Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/networkop.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}},"created_at":"2022-06-17T12:58:37.000Z","updated_at":"2024-10-25T22:37:39.000Z","dependencies_parsed_at":"2023-07-07T21:45:42.665Z","dependency_job_id":null,"html_url":"https://github.com/networkop/nmos-kubernetes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/networkop/nmos-kubernetes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkop%2Fnmos-kubernetes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkop%2Fnmos-kubernetes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkop%2Fnmos-kubernetes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkop%2Fnmos-kubernetes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/networkop","download_url":"https://codeload.github.com/networkop/nmos-kubernetes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networkop%2Fnmos-kubernetes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28594958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":"2024-10-09T23:48:59.045Z","updated_at":"2026-01-20T02:47:32.180Z","avatar_url":"https://github.com/networkop.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Prerequisites:\n\n\nCreate a test cluster\n\n```\nkind create cluster --config kind.yaml\n```\n\n```\nhelm repo add k8s_gateway https://ori-edge.github.io/k8s_gateway/\nhelm repo add metallb https://metallb.github.io/metallb\nhelm repo add istio https://istio-release.storage.googleapis.com/charts\n```\n\nInstall `metallb`:\n\n```\nhelm install metallb metallb/metallb -f values.yaml\n```\n\nInstall GatewayCRD (standard support for TCPRoute and HTTPRoute resources):\n\n```\nkubectl kustomize \"github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.4.0\" | kubectl apply -f -\n```\n\nInstall `k8s_gateway`:\n\n```\nhelm install exdns -f dns-values-http.yml k8s_gateway/k8s-gateway\n```\n\nUpdate internal CoreDNS to forward traffic to local plugin\n```\nk apply -f coredns-config.yaml\n```\n\nInstall Istio (GatewayAPI controller):\n\n```\nkubectl create namespace istio-system\nhelm install istio-base istio/base -n istio-system\nhelm install istiod istio/istiod -n istio-system \nkubectl create namespace istio-ingress\nhelm install istio-ingress istio/gateway -n istio-ingress\n```\n\n\n\nCreate a registry\n\n```\nkubectl apply -f registry.yaml\n```\n\n```\nkubectl apply -f node.yaml\n```\n\n\n\n---\n\ndns-sd -B  _nmos-register._tcp\n\ndns-sd -B  _nmos-register._tcp nmos.tv\n\n# create a nodeport to access this port\ncurl http://127.0.0.1:8010\n[\"admin/\",\"log/\",\"schemas/\",\"settings/\",\"x-dns-sd/\",\"x-nmos/\"]\n\n{\n  \"pri\": 10, # set to 4,294,967,295\n  \"logging_level\": 0,\n  \"http_trace\": false,\n  \"label\": \"nmos-cpp-registry\",\n  \"http_port\": 8010,\n  \"query_ws_port\": 8011,\n  \"registration_expiry_interval\": 12\n}\n\n\n\nnew yaml with\n\n    - name: RUN_NODE\n      value: \"true\"\n\n    https://github.com/sony/nmos-cpp/blob/master/Development/nmos-cpp-registry/config.json\n\n  override the default domain \n\n      // domain [registry, node]: the domain on which to browse for services or an empty string to use the default domain (specify \"local.\" to explictly select mDNS)\n    //\"domain\": \"nmos.tv\",\n\n\n\n b._dns-sd._udp\tIN\tPTR\t@\n    lb._dns-sd._udp\tIN\tPTR\t@\n_services._dns-sd._udp.nmos.tv PTR\n\nhttps://github.com/sony/nmos-cpp/blob/master/Development/nmos-cpp-node/config.json","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworkop%2Fnmos-kubernetes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetworkop%2Fnmos-kubernetes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworkop%2Fnmos-kubernetes/lists"}