-
Notifications
You must be signed in to change notification settings - Fork 1
Add index page to the results bucket #46
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
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
4c36222
rename results bucket to set up for hosting a static index page
emlys bdeec5f
fixes to allow reproducible terraform destroy and apply
emlys 05e9f02
update bucket name
emlys fcd359b
Merge branch 'main' into feature/24
emlys ac754ff
downgrade filestore tier and capacity
emlys 3e15348
update results bucket name
emlys efcbbf8
remove startup script for compute nodes
emlys 2ae51d3
remove outdated readme content and add notes about new files
emlys 19c2983
create compute node env up front in ansible playbook
emlys 5fdca8e
add index page and script to results bucket
emlys 2d02a3c
update results page to point to browsable bucket
emlys 196dcac
add directory listing html and javascript source for results bucket
emlys 6029066
simplify some unused features of directory listing code
emlys bc7aa63
update workload identity provider for gha
emlys b5fd6f1
return updated job results from sync execution
emlys af40300
add test assertion for new bucket_url response attribute
emlys 06e3b09
update tests for new bucket_url response attribute
emlys File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| {% extends "_base.html" %} | ||
| {% block title %}{{ super() }} {% trans %}Job result{% endtrans %} {% endblock %} | ||
| {% block crumbs %}{{ super() }} | ||
| / <a href="../../jobs">{% trans %}Jobs{% endtrans %}</a> | ||
| / <a href="../{{ data.job.id }}">{{ data.job.id }}</a> | ||
| / <a href="./results">{% trans %}Results{% endtrans %}</a> | ||
| {% endblock %} | ||
| {% block body %} | ||
| <section id="jobs"> | ||
| <h2>{% trans %}Results of job{% endtrans %} {{data.job.id}}</h2> | ||
| <div> | ||
| Browse results at: | ||
| <pre> | ||
| <a href="{{ data.result.bucket_url }}">{{ data.result.bucket_url }}</a> | ||
| </pre> | ||
| </div> | ||
| <div> | ||
| Download the entire workspace: | ||
| <pre> | ||
| gcloud storage cp --recursive "{{ data.result.workspace_url }}/*" . | ||
| </pre> | ||
| </div> | ||
| </section> | ||
| {% endblock %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,7 +58,8 @@ module "homefs" { | |
| region = var.region | ||
| reserved_ip_range = module.private_service_access.reserved_ip_range | ||
| zone = var.zone | ||
| size_gb = 2560 | ||
| filestore_tier = "BASIC_HDD" | ||
| size_gb = 1024 | ||
| } | ||
|
|
||
| module "debug_nodeset" { | ||
|
|
@@ -71,7 +72,6 @@ module "debug_nodeset" { | |
| node_count_dynamic_max = 4 | ||
| project_id = var.project_id | ||
| region = var.region | ||
| startup_script = "/home/bin/startup_script.sh" | ||
| subnetwork_self_link = module.network.subnetwork_self_link | ||
| zone = var.zone | ||
| } | ||
|
|
@@ -94,7 +94,6 @@ module "compute_nodeset" { | |
| node_count_dynamic_max = 20 | ||
| project_id = var.project_id | ||
| region = var.region | ||
| startup_script = "/home/bin/startup_script.sh" | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The startup script has been removed, and all the environment setup now happens in the ansible playbook. |
||
| subnetwork_self_link = module.network.subnetwork_self_link | ||
| zone = var.zone | ||
| } | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Downgrading from SSD to HDD to reduce costs.