{"id":15689801,"url":"https://github.com/dj95/kustomize-quick-create","last_synced_at":"2025-05-07T23:08:47.414Z","repository":{"id":166775880,"uuid":"637646883","full_name":"dj95/kustomize-quick-create","owner":"dj95","description":"A quick create wizard to create and modify opinionated kustomize deployments. ","archived":false,"fork":false,"pushed_at":"2024-03-05T18:40:27.000Z","size":9413,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-07T23:08:41.075Z","etag":null,"topics":["automation","kubernetes","kustomize","rust","template","wizard"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/dj95.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}},"created_at":"2023-05-08T05:45:33.000Z","updated_at":"2024-10-29T08:54:52.000Z","dependencies_parsed_at":"2024-10-30T22:35:51.415Z","dependency_job_id":null,"html_url":"https://github.com/dj95/kustomize-quick-create","commit_stats":{"total_commits":26,"total_committers":2,"mean_commits":13.0,"dds":"0.038461538461538436","last_synced_commit":"69d24002846d52fa93ca0439b81a92dbbc39f8c6"},"previous_names":["dj95/kustomize-quick-create"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dj95%2Fkustomize-quick-create","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dj95%2Fkustomize-quick-create/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dj95%2Fkustomize-quick-create/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dj95%2Fkustomize-quick-create/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dj95","download_url":"https://codeload.github.com/dj95/kustomize-quick-create/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252968118,"owners_count":21833252,"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":["automation","kubernetes","kustomize","rust","template","wizard"],"created_at":"2024-10-03T18:04:35.409Z","updated_at":"2025-05-07T23:08:47.396Z","avatar_url":"https://github.com/dj95.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003ekqc 🚀☸️\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  A quick create wizard to create and modify opinionated kustomize deployments.\n  \u003cbr\u003e\u003cbr\u003e\n  \u003ca href=\"https://github.com/dj95/kustomize-quick-create/releases\"\u003e\n    \u003cimg alt=\"latest version\" src=\"https://img.shields.io/github/v/tag/dj95/kustomize-quick-create.svg?sort=semver\" /\u003e\n  \u003c/a\u003e\n  \u003cbr\u003e\u003cbr\u003e\n  This tool should help to quickly create and build up kustomize deployments. It features a wizard, which\n  will let you create the boilerplate configuration and underlying file structure. With a templateing\n  engine the most important values are already set into the resources, such that only minor further tweaks\n  should be required for getting the deployment up and running.\n\u003c/p\u003e\n\n\n![Demo GIF of kqc in action](./example/demo.gif)\n\n\n### 📦 Requirements\n\n- rust\n\n*or*\n\n- nix\n- direnv\n\n\n### 🚀 Getting started\n\nClone the repository and make sure the dependencies are installed. You either need rust or nix installed.\nWith nix use either `nix-shell` or `direnv allow` up to your preferences.\nAfter dependencies are available run `cargo install --path .` to build and install the tool.\n\nThen you should be able to call the wizard with `kustomize-quick-create`.\nIt will detect the kustomize deployment if it exists in the `kubernetes/` subdirectory of the present working dir.\n\n\n### 🧪 Customizing the templates\n\nTemplates are stored in the *templates/* directory of this repository and statically compiled into the binary.\nFeel free to tinker around with the templates and customize them to your needs.\nPlease keep in mind that you need to update the fields of the relating struct in *src/resources* if you change them.\nSimply search for the template name in the code base and you should be able to find them.\n\n\n### ❄️ Installation with nix\n\n\nAdd the following code to your overlays. Then kustomize-quick-create can be installed from `pkgs`.\n\n```nix\nfinal: prev: {\n  kustomize-quick-create = prev.pkgs.rustPlatform.buildRustPackage rec {\n    version = \"0.1.0\";\n    pname = \"kustomize-quick-create\";\n\n    src = prev.fetchFromGitHub {\n      owner = \"dj95\";\n      repo = pname;\n      rev = \"f2c811652ab824616fb48cdbc8c78d1e8b83d8c0\";\n      sha256 = \"sha256-q6Cu0o5P3Tic3a3H9OOash6HbdJxciNhkKJQxd0WEaU=\";\n    };\n\n    cargoSha256 = \"sha256-Ay96cF3H3l7/yzU5ejOrK96T9WoEaIujiEM285qxMFU=\";\n  };\n}\n```\n\nIf you just want to try it with nix, run the following command.\n\n```bash\nnix run 'github:dj95/kustomize-quick-create'\n```\n\n\n## 🤝 Contributing\n\nIf you are missing features or find some annoying bugs please feel free to submit an issue or a bugfix within a pull request :)\n\n\n## 📝 License\n\n© 2023 Daniel Jankowski\n\n\nThis project is licensed under the MIT license.\n\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdj95%2Fkustomize-quick-create","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdj95%2Fkustomize-quick-create","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdj95%2Fkustomize-quick-create/lists"}