-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update kubeflow deployment to for standalone release
- Loading branch information
1 parent
26f5ed2
commit e880e11
Showing
4 changed files
with
36 additions
and
131 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -7,16 +7,27 @@ data "google_container_cluster" "testbed_cluster" { | |
} | ||
|
||
# Setup kubeflow with kubeflow "kustomization" provided by WOGRA-AG | ||
module "kubeflow" { | ||
source = "WOGRA-AG/kubeflow/kustomization" | ||
#module "kubeflow" { | ||
# source = "WOGRA-AG/kubeflow/kustomization" | ||
# | ||
# dex_user_email = "[email protected]" | ||
# | ||
# # Disable 'production' features of Kubeflow. Change if need, e.g. "serving" for inference. | ||
# deploy_notebooks = false | ||
# deploy_dashboard = false | ||
# deploy_katib = false | ||
# deploy_tensorboard = false | ||
# deploy_volumes = false | ||
# deploy_serving = false | ||
#} | ||
|
||
dex_user_email = "[email protected]" | ||
|
||
# Disable 'production' features of Kubeflow. Change if need, e.g. "serving" for inference. | ||
deploy_notebooks = false | ||
deploy_dashboard = false | ||
deploy_katib = false | ||
deploy_tensorboard = false | ||
deploy_volumes = false | ||
deploy_serving = false | ||
data "kustomization_build" "training-operator" { | ||
path = "github.com/kubeflow/manifests.git/apps/training-operator/upstream/overlays/standalone?ref=${var.kubeflow_version}" | ||
} | ||
|
||
resource "kustomization_resource" "training-operator" { | ||
for_each = data.kustomization_build.training-operator.ids | ||
manifest = data.kustomization_build.training-operator.manifests[each.value] | ||
|
||
} |
This file contains 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