{"id":21657273,"url":"https://github.com/zcubbs/awx-ansible-runner","last_synced_at":"2026-05-04T09:31:51.953Z","repository":{"id":218749071,"uuid":"746736704","full_name":"zcubbs/awx-ansible-runner","owner":"zcubbs","description":null,"archived":false,"fork":false,"pushed_at":"2024-01-23T15:20:53.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-16T09:19:11.284Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zcubbs.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-22T15:18:46.000Z","updated_at":"2024-05-02T15:25:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"d00e9cb2-81ee-4a3a-a88b-2f0042e3b8fd","html_url":"https://github.com/zcubbs/awx-ansible-runner","commit_stats":null,"previous_names":["zcubbs/awx-ansible-runner"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zcubbs/awx-ansible-runner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcubbs%2Fawx-ansible-runner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcubbs%2Fawx-ansible-runner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcubbs%2Fawx-ansible-runner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcubbs%2Fawx-ansible-runner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zcubbs","download_url":"https://codeload.github.com/zcubbs/awx-ansible-runner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcubbs%2Fawx-ansible-runner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32601509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-25T09:20:22.637Z","updated_at":"2026-05-04T09:31:51.934Z","avatar_url":"https://github.com/zcubbs.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWX Bootsrap Runner\n\nUpdate AWX configuration (templates, inventories, etc...) from git using a Kubernetes Job.\n\n## Usage\n\n### Create a sercret:\n\n```yaml\napiVersion: v1\nkind: Secret\nmetadata:\n  name: ansible-secrets\ntype: Opaque\ndata:\n  GIT_REPO_URL: \u003cbase64-encoded-git-url\u003e\n  GIT_REPO_USERNAME: \u003cbase64-encoded-git-username\u003e\n  GIT_REPO_PASSWORD: \u003cbase64-encoded-git-password\u003e\n  ANSIBLE_VAULT_KEY: \u003cbase64-encoded-vault-key\u003e\n  CONTROLLER_HOST: \u003cbase64-encoded-controller-host\u003e\n  CONTROLLER_USERNAME: \u003cbase64-encoded-username\u003e\n  CONTROLLER_PASSWORD: \u003cbase64-encoded-password\u003e\n  CONTROLLER_VERIFY_SSL: \u003cbase64-encoded-verify-ssl\u003e\n```\n\n### Create the Job Manifest:\n```yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n  name: ansible-job\nspec:\n  template:\n    spec:\n      containers:\n        - name: ansible\n          image: ghcr.io/zcubbs/awx-ansible-runner:latest\n          imagePullPolicy: Always\n          env:\n            - name: GIT_REPO_URL\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: GIT_REPO_URL\n            - name: GIT_REPO_USERNAME\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: GIT_REPO_USERNAME\n            - name: GIT_REPO_PASSWORD\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: GIT_REPO_PASSWORD\n            - name: ANSIBLE_VAULT_KEY\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: ANSIBLE_VAULT_KEY\n            - name: CONTROLLER_HOST\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: CONTROLLER_HOST\n            - name: CONTROLLER_USERNAME\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: CONTROLLER_USERNAME\n            - name: CONTROLLER_PASSWORD\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: CONTROLLER_PASSWORD\n            - name: CONTROLLER_VERIFY_SSL\n              valueFrom:\n                secretKeyRef:\n                  name: ansible-secrets\n                  key: CONTROLLER_VERIFY_SSL\n            - name: PLAYBOOK_NAME\n              value: \"my-playbook.yaml\"\n      restartPolicy: Never\n  backoffLimit: 0\n```\n\n### Run the job:\n```bash\nkubectl -n awx apply -f my-secret.yaml\nkubectl -n awx apply -f my-job.yaml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzcubbs%2Fawx-ansible-runner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzcubbs%2Fawx-ansible-runner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzcubbs%2Fawx-ansible-runner/lists"}