{"id":19329763,"url":"https://github.com/outerbounds/onprem-workstations-configuration","last_synced_at":"2026-02-06T10:02:25.373Z","repository":{"id":198036346,"uuid":"699602983","full_name":"outerbounds/onprem-workstations-configuration","owner":"outerbounds","description":"Describes how to configure on-premise machines so Outerbounds onprem-workstations can run on them","archived":false,"fork":false,"pushed_at":"2023-10-05T18:57:53.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-07-11T00:18:42.754Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"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/outerbounds.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}},"created_at":"2023-10-03T00:42:12.000Z","updated_at":"2023-10-06T16:48:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"c63b12e1-904a-4a43-869f-6ea7ab1144bc","html_url":"https://github.com/outerbounds/onprem-workstations-configuration","commit_stats":null,"previous_names":["outerbounds/onprem-workstations-configuration"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/outerbounds/onprem-workstations-configuration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outerbounds%2Fonprem-workstations-configuration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outerbounds%2Fonprem-workstations-configuration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outerbounds%2Fonprem-workstations-configuration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outerbounds%2Fonprem-workstations-configuration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/outerbounds","download_url":"https://codeload.github.com/outerbounds/onprem-workstations-configuration/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/outerbounds%2Fonprem-workstations-configuration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29157470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T07:18:23.844Z","status":"ssl_error","status_checked_at":"2026-02-06T07:13:32.659Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-10T02:29:49.424Z","updated_at":"2026-02-06T10:02:25.351Z","avatar_url":"https://github.com/outerbounds.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Instructions\n============\n\nTo run/deploy Ansible in order to configure an on-premise machine follow these steps:\n\n1. Install Ansible on you local machine. You can use Homebrew or other methods document [here](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html).\n\n1. Ensure the target in `inventory.yam` have all the nodes you would like to target. Example setup\n\n    ```yaml\n        ...\n        machine_2:                      # target name\n            ansible_host: 10.10.34.56   # target host ip or DNS\n            ansible_user: ubuntu        # ssh username\n    ```\n1. Update the JWT issuer URL and expected audience variables in `playbook.yaml`\n\n    ```yaml\n        ...\n        - name: ansible-role-onprem-workstations\n        vars:\n            outerbounds_issuer: \u003cthe issuer URL\u003e # This will be provided to you by Outerbounds\n            outerbounds_audience: \u003cthe expected jwt audience\u003e # This will be provided to you by Outerbounds\n        ...\n    ```\n\n1. Install the external Ansible roles:\n\n    ```bash\n    $ ansible-galaxy install -r requirements.yml --force\n    ```\n\n1. Ensure you have ssh access to all the target nodes in the inventory list. If so you can now deploy the playbok like:\n\n    ```bash\n    $ # to deploy to all nodes\n    $ ansible-playbook -i inventory.yaml playbook.yaml\n\n    $ # to deploy to a single target\n    $ ansible-playbook -i inventory.yaml -l \u003ctarget-name\u003e playbook.yaml\n    ```\n\nTroubleshooting\n===============\n\n1. If Ansible gets stuck on the \"Gather Facts\" step you can try to remove the cache by deleting the `~/.ansible/` folder and rerun the playbook. You may also need to reinstall the Ansible roles using `ansible-galaxy install -r requirements.yml --force`.\n\n2. If your local machine doesn't have nvidia drivers and would like them to be enabled as part of the same Ansible run, you and enable reboot by updating the `playbook.yaml` as shown below.\n    ```yaml\n    ...\n    - name: nvidia_driver\n      vars:\n        nvidia_driver_skip_reboot: no\n    ...\n    ```\n\n    **Note:** this variables is disabled in the playbook to avoid forcing a reboot.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fouterbounds%2Fonprem-workstations-configuration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fouterbounds%2Fonprem-workstations-configuration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fouterbounds%2Fonprem-workstations-configuration/lists"}