Skip to content

Commit

Permalink
Add tf1.8 build to jupyter notebook images (kubeflow#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankush Agarwal authored and k8s-ci-robot committed May 1, 2018
1 parent 3e9b559 commit d4fdd53
Showing 1 changed file with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
)
else [],


// Default parameters.
// The defaults are suitable based on suitable values for our test cluster.
defaultParams:: {
Expand Down Expand Up @@ -129,7 +128,7 @@
sidecars: sidecars,
}; // buildTemplate
local buildImageTemplate(tf_version, workflow_name, device, is_latest=true) = {
local image = params.registry + "/tensorflow-" + tf_version + "-notebook-" + device,
local image = params.registry + "/tensorflow-" + tf_version + "-notebook-" + device,
local tag = params.versionTag,
local base_image =
if device == "cpu" then
Expand Down Expand Up @@ -276,6 +275,16 @@
template: "build-1-7-0-cpu",
dependencies: ["checkout"],
},
{
name: "build-1-8-0-gpu",
template: "build-1-8-0-gpu",
dependencies: ["checkout"],
},
{
name: "build-1-8-0-cpu",
template: "build-1-8-0-cpu",
dependencies: ["checkout"],
},
{
name: "create-pr-symlink",
template: "create-pr-symlink",
Expand All @@ -292,6 +301,8 @@
buildImageTemplate("1.6.0", "1-6-0", "gpu"),
buildImageTemplate("1.7.0", "1-7-0", "cpu"),
buildImageTemplate("1.7.0", "1-7-0", "gpu"),
buildImageTemplate("1.8.0", "1-8-0", "cpu"),
buildImageTemplate("1.8.0", "1-8-0", "gpu"),
{
name: "exit-handler",
steps: [
Expand Down

0 comments on commit d4fdd53

Please sign in to comment.