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

Skypilot dws kueue #942

Merged
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9ab3bdc
SkyPilot with DWS and Kueue tutorial
volatilemolotov Dec 19, 2024
8e4b1a2
typo
volatilemolotov Dec 20, 2024
0e8866d
fix topics
volatilemolotov Dec 20, 2024
266a52d
fix backend placeholder
volatilemolotov Dec 30, 2024
54fbfd6
add missing terrafrom outputs
volatilemolotov Dec 30, 2024
b3b4a34
update with files needed for finetune and serve
volatilemolotov Jan 8, 2025
972a281
add mount for text classification files for train task
volatilemolotov Jan 9, 2025
68d800f
change example environment structure
volatilemolotov Jan 14, 2025
c72ef05
move serve to l4
volatilemolotov Jan 21, 2025
3f155a3
added clarification on experimental section for skypilot task/service…
volatilemolotov Jan 21, 2025
3328e8e
readme update
volatilemolotov Jan 22, 2025
4af720e
Minor README fixes
ArthurKamalov Jan 22, 2025
efe760c
Update README.md
ArthurKamalov Jan 22, 2025
ed1e48d
Update README.md
ArthurKamalov Jan 22, 2025
48850b2
Merge pull request #2 from volatilemolotov/README
volatilemolotov Jan 23, 2025
799a5df
minor updates
volatilemolotov Jan 23, 2025
53e74b7
minor updates
volatilemolotov Jan 23, 2025
cff2fda
newlines added
volatilemolotov Jan 23, 2025
becc5da
added kueue quota warning
volatilemolotov Jan 23, 2025
5c54c3e
minor whitespace
volatilemolotov Jan 23, 2025
e654dd3
minor whitespace
volatilemolotov Jan 23, 2025
86f7cb9
main.tf fmt issues
volatilemolotov Jan 23, 2025
06c2539
terraform fmt newlines
volatilemolotov Jan 23, 2025
d2162ce
terraform fmt newlines
volatilemolotov Jan 23, 2025
aac6998
Update tutorials-and-examples/skypilot/dws-and-kueue/example_environm…
volatilemolotov Jan 30, 2025
38dfab9
Update tutorials-and-examples/skypilot/dws-and-kueue/README.md
volatilemolotov Jan 30, 2025
642ea48
Update tutorials-and-examples/skypilot/dws-and-kueue/README.md
volatilemolotov Jan 30, 2025
15cb8e4
remove repeated steps
volatilemolotov Jan 30, 2025
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
11 changes: 11 additions & 0 deletions infrastructure/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ output "ca_certificate" {

}

output "service_account" {
value = var.create_cluster && var.autopilot_cluster && var.private_cluster ? module.private-gke-autopilot-cluster[0].service_account : (
var.create_cluster && !var.autopilot_cluster && var.private_cluster ? module.private-gke-standard-cluster[0].service_account : (
var.create_cluster && var.autopilot_cluster && !var.private_cluster ? module.public-gke-autopilot-cluster[0].service_account : (
var.create_cluster && !var.autopilot_cluster && !var.private_cluster ? module.public-gke-standard-cluster[0].service_account :
"")))
sensitive = true
depends_on = [module.private-gke-autopilot-cluster, module.private-gke-standard-cluster, module.public-gke-autopilot-cluster, module.public-gke-standard-cluster]

}

output "private_cluster" {
value = var.private_cluster
}
4 changes: 4 additions & 0 deletions modules/gke-autopilot-private-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ output "endpoint" {

output "ca_certificate" {
value = module.gke.ca_certificate
}

output "service_account" {
value = module.gke.service_account
}
4 changes: 4 additions & 0 deletions modules/gke-autopilot-public-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ output "endpoint" {

output "ca_certificate" {
value = module.gke.ca_certificate
}

output "service_account" {
value = module.gke.service_account
}
4 changes: 4 additions & 0 deletions modules/gke-standard-private-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ output "endpoint" {

output "ca_certificate" {
value = module.gke.ca_certificate
}

output "service_account" {
value = module.gke.service_account
}
5 changes: 5 additions & 0 deletions modules/gke-standard-public-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ output "endpoint" {
output "ca_certificate" {
value = module.gke.ca_certificate
}


output "service_account" {
value = module.gke.service_account
}
Loading
Loading