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

Update dead ansible script link #74

Merged
merged 6 commits into from
Aug 9, 2023
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
5 changes: 2 additions & 3 deletions docs/CI.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,9 @@ The following packages are required for the tasks executed by the runner:
sudo apt install -y build-essential libssl-dev libffi-dev python3-dev
```

- Python pip and virtual environments
- Python pip, virtual environments and tox
```sh
sudo apt install -y python3-pip
sudo apt install -y python3-venv
sudo apt install -y python3-pip python3-venv tox
```

- (optional) cowsay + fortunes
Expand Down
2 changes: 2 additions & 0 deletions provisioning/ansible/roles/spark/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
get_url:
url: "{{ spark_url }}"
dest: "{{ spark_bin_tmp_archive }}"
# This particular task times out very often, this should hopefully alleviate that (default was 10)
timeout: 60

- name: "Extract Spark Tarball and move Spark to install directory {{ spark_dir }}"
unarchive:
Expand Down
6 changes: 3 additions & 3 deletions provisioning/packer/client.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
},
{
"inline": [
"iwr https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1 -UseBasicParsing | iex"
"iwr https://raw.githubusercontent.com/ansible/ansible-documentation/devel/examples/scripts/ConfigureRemotingForAnsible.ps1 -UseBasicParsing | iex"
],
"type": "powershell"
},
Expand All @@ -115,8 +115,8 @@
],
"variables": {
"floppy_files_path": "./floppy_files/",
"iso_checksum": "823c3cb59ff0fd43272f12bb2e3a089d",
"iso_url": "/usr/share/runner-dependencies/windows_isos/Win10_21H2_English_x64.iso",
"iso_checksum": "68c70d7ade5e9ab8510876c1f4bee58a",
"iso_url": "/usr/share/runner-dependencies/windows_isos/Win10_22H2_English_x64.iso",
"vm_description": "SOCBED: Client",
"vm_version": "fresh",
"vm_output": "./exports/client",
Expand Down