Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openstack: Implement backend and test suite #685

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ coverage.xml
config.yaml
.env
.reports
clouds.yaml
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim
FROM python:3.11

ARG VERSION=dev

Expand Down
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ services:
volumes:
- ./runner_manager:/app/runner_manager
- ./config.yaml:/app/config.yaml
- ./clouds.yaml:/app/clouds.yaml
- /var/run/docker.sock:/var/run/docker.sock
webhook:
profiles:
Expand Down
1 change: 1 addition & 0 deletions docs/development/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ for hosting the runners. The following backends will be supported:

- GCP.
- AWS.
- Openstack.
- VMware vSphere.
- Docker (For local functional testing).
- FakeBackend (For local unit testing).
Expand Down
207 changes: 206 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ botocore = "^1.34.162"
boto3-stubs = { extras = ["ec2"], version = "^1.35.14" }
githubkit = { extras = ["auth-app"], version = "^0.11.8" }
rq-scheduler = "^0.13.1"
openstacksdk = "^3.1.0"
pyvmomi = "^8.0.3.0.1"
vapi-runtime = { url = "https://raw.githubusercontent.com/vmware/vsphere-automation-sdk-python/v8.0.1.0/lib/vapi-runtime/vapi_runtime-2.40.0-py2.py3-none-any.whl" }
vcenter-bindings = { url = "https://raw.githubusercontent.com/vmware/vsphere-automation-sdk-python/v8.0.1.0/lib/vcenter-bindings/vcenter_bindings-4.1.0-py2.py3-none-any.whl" }
Expand Down
Loading
Loading