{"id":14965267,"url":"https://github.com/salt-extensions/saltext-helm","last_synced_at":"2025-10-25T11:31:00.854Z","repository":{"id":221867894,"uuid":"731714788","full_name":"salt-extensions/saltext-helm","owner":"salt-extensions","description":"Salt Extension for interacting with Helm","archived":false,"fork":false,"pushed_at":"2024-11-03T18:28:21.000Z","size":483,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-31T07:03:30.618Z","etag":null,"topics":["devops","helm","salt-extension","saltstack","saltstack-extension"],"latest_commit_sha":null,"homepage":"https://salt-extensions.github.io/saltext-helm/","language":"Python","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/salt-extensions.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE-OF-CONDUCT.md","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-12-14T17:49:49.000Z","updated_at":"2024-11-03T18:28:23.000Z","dependencies_parsed_at":"2024-02-10T18:23:39.584Z","dependency_job_id":"b345f592-92f0-4396-b13a-bf11ccf1c37a","html_url":"https://github.com/salt-extensions/saltext-helm","commit_stats":null,"previous_names":["salt-extensions/saltext-helm"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-helm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-helm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-helm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-helm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/salt-extensions","download_url":"https://codeload.github.com/salt-extensions/saltext-helm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238128530,"owners_count":19421052,"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":["devops","helm","salt-extension","saltstack","saltstack-extension"],"created_at":"2024-09-24T13:34:30.346Z","updated_at":"2025-10-25T11:31:00.849Z","avatar_url":"https://github.com/salt-extensions.png","language":"Python","readme":"# Salt Extension for Helm\n\nSalt Extension for interacting with Helm\n\n## Security\n\nIf you discover a security vulnerability, please refer\nto [Salt's security guide][security].\n\n## User Documentation\n\nFor setup and usage instructions, please refer to the\n[User Documentation][docs].\n\n## Contributing\n\nThe saltext-helm project welcomes contributions from anyone!\n\nThe [Salt Extensions guide][salt-extensions-guide] provides comprehensive instructions on all aspects\nof Salt extension development, including [writing tests][writing-tests], [running tests][running-tests],\n[writing documentation][writing-docs] and [rendering the docs][rendering-docs].\n\n### Quickstart\n\nTo get started contributing, first clone this repository (or your fork):\n\n```bash\n# Clone the repo\ngit clone --origin upstream git@github.com:salt-extensions/saltext-helm.git\n\n# Change to the repo dir\ncd saltext-helm\n```\n\n#### Automatic\nIf you have installed [direnv][direnv], copying the included `.envrc.example` to `.envrc` and\nallowing it to run ensures a proper development environment is present and the virtual environment is active.\n\nWithout `direnv`, you can still run the automation explicitly:\n\n```bash\nmake dev  # or python3 tools/initialize.py\nsource .venv/bin/activate\n```\n\n#### Manual\nPlease follow the [first steps][first-steps], skipping the repository initialization and first commit.\n\n### Pull request\n\nAlways make changes in a feature branch:\n\n```bash\ngit switch -c my-feature-branch\n```\n\nPlease ensure you include a [news fragment](https://salt-extensions.github.io/salt-extension-copier/topics/documenting/changelog.html#procedure)\ndescribing your changes. This is a requirement for all user-facing changes (bug fixes, new features),\nwith the exception of documentation changes.\n\nTo [submit a Pull Request][submitting-pr], you'll need a fork of this repository in\nyour own GitHub account. If you followed the instructions above,\nset your fork as the `origin` remote now:\n\n```bash\ngit remote add origin git@github.com:\u003cyour_fork\u003e.git\n```\n\nEnsure you followed the [first steps][first-steps] and commit your changes, fixing any\nfailing `pre-commit` hooks. Then push the feature branch to your fork and submit a PR.\n\n### Ways to contribute\n\nContributions come in many forms, and they’re all valuable! Here are some ways you can help\nwithout writing code:\n\n* **Documentation**: Especially examples showing how to use this project\n  to solve specific problems.\n* **Triaging issues**: Help manage [issues][issues] and participate in [discussions][discussions].\n* **Reviewing [Pull Requests][PRs]**: We especially appreciate reviews using [Conventional Comments][comments].\n\nYou can also contribute by:\n\n* Writing blog posts\n* Sharing your experiences using Salt + Helm\n  on social media\n* Giving talks at conferences\n* Publishing videos\n* Engaging in IRC, Discord or email groups\n\nAny of these things are super valuable to our community, and we sincerely\nappreciate every contribution!\n\n[security]: https://github.com/saltstack/salt/blob/master/SECURITY.md\n[salt-extensions-guide]: https://salt-extensions.github.io/salt-extension-copier/\n[writing-tests]: https://salt-extensions.github.io/salt-extension-copier/topics/testing/writing.html\n[running-tests]: https://salt-extensions.github.io/salt-extension-copier/topics/testing/running.html\n[writing-docs]: https://salt-extensions.github.io/salt-extension-copier/topics/documenting/writing.html\n[rendering-docs]: https://salt-extensions.github.io/salt-extension-copier/topics/documenting/building.html\n[first-steps]: https://salt-extensions.github.io/salt-extension-copier/topics/creation.html#initialize-the-python-virtual-environment\n[submitting-pr]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork\n[direnv]: https://direnv.net\n[issues]: https://github.com/salt-extensions/saltext-helm/issues\n[PRs]: https://github.com/salt-extensions/saltext-helm/pulls\n[discussions]: https://github.com/salt-extensions/saltext-helm/discussions\n[comments]: https://conventionalcomments.org/\n[docs]: https://salt-extensions.github.io/saltext-helm/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalt-extensions%2Fsaltext-helm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsalt-extensions%2Fsaltext-helm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalt-extensions%2Fsaltext-helm/lists"}