{"id":42979475,"url":"https://github.com/nofusscomputing/kubernetes-manifest-tools","last_synced_at":"2026-01-31T01:42:54.499Z","repository":{"id":299821073,"uuid":"1004298806","full_name":"nofusscomputing/kubernetes-manifest-tools","owner":"nofusscomputing","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-18T13:21:44.000Z","size":5,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"development","last_synced_at":"2025-06-18T13:47:41.883Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/nofusscomputing.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}},"created_at":"2025-06-18T12:14:45.000Z","updated_at":"2025-06-18T13:15:20.000Z","dependencies_parsed_at":"2025-06-18T13:57:46.407Z","dependency_job_id":null,"html_url":"https://github.com/nofusscomputing/kubernetes-manifest-tools","commit_stats":null,"previous_names":["nofusscomputing/kubernetes-manifest-tools"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/nofusscomputing/kubernetes-manifest-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nofusscomputing%2Fkubernetes-manifest-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nofusscomputing%2Fkubernetes-manifest-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nofusscomputing%2Fkubernetes-manifest-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nofusscomputing%2Fkubernetes-manifest-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nofusscomputing","download_url":"https://codeload.github.com/nofusscomputing/kubernetes-manifest-tools/tar.gz/refs/heads/development","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nofusscomputing%2Fkubernetes-manifest-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28926404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T22:32:35.345Z","status":"ssl_error","status_checked_at":"2026-01-30T22:32:31.927Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2026-01-31T01:42:54.380Z","updated_at":"2026-01-31T01:42:54.470Z","avatar_url":"https://github.com/nofusscomputing.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cspan style=\"text-align: center;\"\u003e\n\n# No Fuss Computing - Kubernetes Manifest Tools\n\n\u003cbr\u003e\n\n![Endpoint Badge](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fnofusscomputing%2Fkubernetes-manifest-tools%2Frefs%2Fheads%2Fdevelopment%2F.meta%2Fproject_status.json)\n\n----\n\n\u003cbr\u003e\n\n![GitHub forks](https://img.shields.io/github/forks/NofussComputing/kubernetes-manifest-tools?logo=github\u0026style=plastic\u0026color=000000\u0026labell=Forks) ![GitHub stars](https://img.shields.io/github/stars/NofussComputing/kubernetes-manifest-tools?color=000000\u0026logo=github\u0026style=plastic) ![Github Watchers](https://img.shields.io/github/watchers/NofussComputing/kubernetes-manifest-tools?color=000000\u0026label=Watchers\u0026logo=github\u0026style=plastic)\n\n\n---\n\n\u003c/span\u003e\n\n\u003cbr\u003e\n\nThis repository is for a docker container that contains various tools for working with and manipulating Kubernetes Manifests.\n\n\n## Using this Container\n\nThis container can be used from the console (requires docker be installed), as a Github Actions or as part of a Gitlab CI/CD Pipeline.\n\n ``` bash\n \ndocker run -ti \\\n  -e \"KUBECTL_SLICE_INPUT_FILE=k8s-manifest-file.yaml\" \\\n  -e \"KUBECTL_SLICE_OUTPUT_DIR=/split\" \\\n  -v ${PWD}:/workdir \\\n  --rm \\\n  nofusscomputing/kubernetes-manifest-tools:latest\n\n```\n\n### Variables\n\nThe container has variables available for use that are only required if not using this container as part of a github action.\n\n| ENV variable | Github Action Inputs | Description |\n|:---:|:---:|:---|\n| `KUBECTL_SLICE_INPUT_FILE` | _input-file_ | Kubernetes Manifest to process. must be relative path to file from root of repository. If a URL is supplied, the manifest will be downloaded. ||\n| `KUBECTL_SLICE_OUTPUT_DIR` | _output-dir_ | The directory where the manifests will be saved to. |\n| `NFC_FORMAT_YAML` | _format-yaml_ | If set, the YAML files will have the yaml header `---` added and have the indentation set to `2`. |\n| `KUBECTL_SLICE_TEMPLATE` | _filename-format_ | Sets the format of the filename. defaults to `\u003cKubernetes Kind name in CamelCase\u003e-\u003cmanifest name in lowercase\u003e.yaml` |\n\n\n\n## Contributing\n\nAs this repository is intended to be a single location for deploying all of your kubernetes services. We encourage collaborataion and welcome All contributions.\n\nFor further details on contributing please refer to the [contribution guide](CONTRIBUTING.md).\n\n\n## Other\n\nThis repo is release under this [licence](LICENCE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnofusscomputing%2Fkubernetes-manifest-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnofusscomputing%2Fkubernetes-manifest-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnofusscomputing%2Fkubernetes-manifest-tools/lists"}