{"id":14965263,"url":"https://github.com/salt-extensions/saltext-haproxy","last_synced_at":"2025-10-25T11:31:15.782Z","repository":{"id":221084360,"uuid":"733594252","full_name":"salt-extensions/saltext-haproxy","owner":"salt-extensions","description":"Salt Extension for interacting with HAProxy","archived":false,"fork":false,"pushed_at":"2024-11-03T18:26:17.000Z","size":624,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-31T07:03:48.428Z","etag":null,"topics":["devops","haproxy","salt-extension","saltstack","saltstack-extension"],"latest_commit_sha":null,"homepage":"https://salt-extensions.github.io/saltext-haproxy/","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-19T17:18:45.000Z","updated_at":"2024-11-03T18:26:19.000Z","dependencies_parsed_at":"2024-09-02T17:40:55.427Z","dependency_job_id":"3243cf98-c493-4b7d-914a-74177de18e5f","html_url":"https://github.com/salt-extensions/saltext-haproxy","commit_stats":null,"previous_names":["salt-extensions/saltext-haproxy"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-haproxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-haproxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-haproxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-haproxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/salt-extensions","download_url":"https://codeload.github.com/salt-extensions/saltext-haproxy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238128543,"owners_count":19421053,"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","haproxy","salt-extension","saltstack","saltstack-extension"],"created_at":"2024-09-24T13:34:30.042Z","updated_at":"2025-10-25T11:31:15.764Z","avatar_url":"https://github.com/salt-extensions.png","language":"Python","readme":"# Salt Extension for HAProxy\n\nSalt Extension for interacting with HAProxy\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-haproxy 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-haproxy.git\n\n# Change to the repo dir\ncd saltext-haproxy\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 + HAProxy\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-haproxy/issues\n[PRs]: https://github.com/salt-extensions/saltext-haproxy/pulls\n[discussions]: https://github.com/salt-extensions/saltext-haproxy/discussions\n[comments]: https://conventionalcomments.org/\n[docs]: https://salt-extensions.github.io/saltext-haproxy/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalt-extensions%2Fsaltext-haproxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsalt-extensions%2Fsaltext-haproxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalt-extensions%2Fsaltext-haproxy/lists"}