-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build image for DARTS Suggestion (#1178)
* Build image for darts Update katib config with darts * Update prow * Fix e2e test
- Loading branch information
1 parent
c23f9c6
commit ad3e326
Showing
6 changed files
with
57 additions
and
3 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2018 The Kubeflow Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# This shell script is used to build an image from our argo workflow | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
|
||
export PATH=${GOPATH}/bin:/usr/local/go/bin:${PATH} | ||
REGISTRY="${GCP_REGISTRY}" | ||
PROJECT="${GCP_PROJECT}" | ||
GO_DIR=${GOPATH}/src/github.com/${REPO_OWNER}/${REPO_NAME}-suggestion-darts | ||
VERSION=$(git describe --tags --always --dirty) | ||
|
||
echo "Activating service-account" | ||
gcloud auth activate-service-account --key-file=${GOOGLE_APPLICATION_CREDENTIALS} | ||
|
||
echo "Copy source to GOPATH" | ||
mkdir -p ${GO_DIR} | ||
cp -r cmd ${GO_DIR}/cmd | ||
cp -r pkg ${GO_DIR}/pkg | ||
cp -r vendor ${GO_DIR}/vendor | ||
|
||
cd ${GO_DIR} | ||
|
||
cp cmd/suggestion/nas/darts/v1alpha3/Dockerfile . | ||
gcloud builds submit . --tag=${REGISTRY}/${REPO_NAME}/v1alpha3/suggestion-darts:${VERSION} --project=${PROJECT} | ||
gcloud container images add-tag --quiet ${REGISTRY}/${REPO_NAME}/v1alpha3/suggestion-darts:${VERSION} ${REGISTRY}/${REPO_NAME}/v1alpha3/suggestion-darts:latest --verbosity=info |
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