{"id":18510682,"url":"https://github.com/operator-framework/ansible-operator-plugins","last_synced_at":"2025-04-07T13:07:02.705Z","repository":{"id":183544913,"uuid":"670336391","full_name":"operator-framework/ansible-operator-plugins","owner":"operator-framework","description":"Experimental extraction/refactoring of the Operator SDK's ansible operator plugin ","archived":false,"fork":false,"pushed_at":"2025-03-20T16:13:35.000Z","size":792,"stargazers_count":9,"open_issues_count":42,"forks_count":25,"subscribers_count":12,"default_branch":"main","last_synced_at":"2025-03-31T11:06:32.901Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/operator-framework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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-07-24T20:28:19.000Z","updated_at":"2025-03-20T15:42:28.000Z","dependencies_parsed_at":"2023-07-24T21:57:44.391Z","dependency_job_id":"253a6c6f-b461-4683-b9da-429c671f377c","html_url":"https://github.com/operator-framework/ansible-operator-plugins","commit_stats":null,"previous_names":["operator-framework/ansible-operator-plugins"],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operator-framework%2Fansible-operator-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operator-framework%2Fansible-operator-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operator-framework%2Fansible-operator-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operator-framework%2Fansible-operator-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/operator-framework","download_url":"https://codeload.github.com/operator-framework/ansible-operator-plugins/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247657281,"owners_count":20974345,"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":[],"created_at":"2024-11-06T15:24:25.272Z","updated_at":"2025-04-07T13:07:02.686Z","avatar_url":"https://github.com/operator-framework.png","language":"Go","readme":"# ansible-operator-plugins\nExperimental extraction/refactoring of the Operator SDK's ansible operator plugin \n\n\n# Releasing Guide\n\n## Pre-Requisites\n- Push access to this repository\n- Forked repository and local clone of fork\n- Remote ref named `upstream` that points to this repository\n\n## Release Prep (Applies to all releases)\nSince this project is currently consumed as a library there are some manual steps that need to take\nplace prior to creating a release. They are as follows:\n1. Checkout the `main` branch:\n```sh\ngit checkout main\n```\n2. Ensure the `main` branch is up to date:\n```sh\ngit fetch upstream \u0026\u0026 git pull upstream main\n```\n3. Checkout a new branch for release prep work:\n```sh\ngit checkout -b release/prep-vX.Y.Z\n```\n4. Update the `ImageVersion` variable in `internal/version/version.go` to be the version you are prepping for release\n5. Update the line with `export IMAGE_VERSION` in `Makefile` to be the version you are prepping for release\n6. Regenerate the testdata:\n```sh\nmake generate\n```\n7. Commit and push your changes to your fork\n8. Create a PR against the `main` branch\n\n## Creating Major/Minor Releases\n1. Ensure the steps in [Release Prep](#release-prep-applies-to-all-releases) have been completed. Do **NOT** progress past this point until the release prep PR has merged.\n2. Checkout the `main` branch:\n```sh\ngit checkout main\n```\n3. Ensure your local branch is up to date:\n```sh\ngit fetch upstream \u0026\u0026 git pull upstream main\n```\n4. Checkout a new branch for the new release following the pattern `release-vX.Y`. In this example we will create a branch for a `v0.2.0` release:\n```sh\ngit checkout -b release-v0.2\n```\n5. Push the newly created release branch:\n```sh\ngit push -u upstream release-v0.2\n```\n6. Create a new release tag:\n```sh\ngit tag -a -s -m \"ansible-operator-plugins release v0.2.0\" v0.2.0\n```\n7. Push the new tag:\n```sh\ngit push upstream v0.2.0\n```\n\n## Creating Patch Releases\n1. Ensure the steps in [Release Prep](#release-prep-applies-to-all-releases) have been completed. Do **NOT** progress past this point until the release prep PR has merged.\n2. Cherry pick the merged release prep PR to the proper major/minor branch by commenting the following on the PR:\n```\n/cherry-pick release-vX.Y\n```\nwhere X is the major version and Y is the minor version. An example of cherry picking for a `v0.2.1` release would be:\n```\n/cherry-pick release-v0.2\n```\n3. A bot will have created the cherry pick PR. Merge this. Do **NOT** progress past this point until the cherry pick PR has merged.\n4. Checkout the appropriate release branch. In this example we will be \"creating\" a `v0.2.1` release:\n```sh\ngit checkout release-v0.2\n```\n5. Ensure it is up to date:\n```sh\ngit fetch upstream \u0026\u0026 git pull upstream release-v0.2\n```\n6. Create a new release tag:\n```sh\ngit tag -a -s -m \"ansible-operator-plugins release v0.2.1\" v0.2.1\n```\n7. Push the new tag:\n```sh\ngit push upstream v0.2.1\n```\n\n\u003e [!NOTE]\n\u003e While the release process is automated once the tag is pushed it can occasionally timeout.\n\u003e If this happens, re-running the action will re-run the release process and typically succeed.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foperator-framework%2Fansible-operator-plugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foperator-framework%2Fansible-operator-plugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foperator-framework%2Fansible-operator-plugins/lists"}