-
Notifications
You must be signed in to change notification settings - Fork 180
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
contiv k8s container now tagged with git version #1082
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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 |
---|---|---|
@@ -1,74 +1,31 @@ | ||
#!/bin/bash | ||
|
||
BUILD_ENV_IMAGE_NAME="contiv-netplugin-build" | ||
TEMPORARY_CONTAINER_NAME="contiv-netplugin-build-temporary" | ||
FINAL_IMAGE_NAME="contivbase" | ||
set -euo pipefail | ||
|
||
REPOSITORY="contivbase" | ||
NETPLUGIN_BINARIES="netplugin netmaster netctl contivk8s" | ||
IMAGE=$REPOSITORY:${NETPLUGIN_CONTAINER_TAG} | ||
|
||
function get_image_id() { | ||
docker inspect --format '{{.ID}}' $1 | ||
return $? | ||
docker inspect --format '{{.ID}}' $IMAGE || : | ||
} | ||
|
||
function build_image_from_path() { | ||
set +e | ||
old_image=$(get_image_id $2) | ||
set -e | ||
if [ "$?" -ne 0 ]; then | ||
old_image= | ||
fi | ||
|
||
echo "Building image $2 from $1 ..." | ||
docker build -t $2 --force-rm $1 | ||
if [ "$?" -ne 0 ]; then | ||
echo "Image $2 was not built properly" | ||
return 1 | ||
fi | ||
|
||
new_image=$(get_image_id $2) | ||
if [ "$old_image" != "" ] && [ "$old_image" != "$new_image" ]; then | ||
docker rmi $old_image >/dev/null 2>&1 || true | ||
fi | ||
|
||
echo "Image $2 has been built" | ||
return 0 | ||
} | ||
|
||
set -x | ||
set -e | ||
|
||
# ensure this script wasn't called from the directory where this script | ||
# lives; it should be called from the repository's top level | ||
script_dir="$(dirname -- "$0")" | ||
if [ "$script_dir" == "." ]; then | ||
echo "This script must be called from the top level of the repository" | ||
exit 1 | ||
fi | ||
|
||
rm -rf scripts/netContain/bin | ||
mkdir scripts/netContain/bin | ||
|
||
build_image_from_path . $BUILD_ENV_IMAGE_NAME | ||
if [ "$?" -ne 0 ]; then | ||
echo "Failed to build the " | ||
exit 1 | ||
fi | ||
# it's expected that makefile targets compile-with-docker and | ||
# binaries-from-container have already been run | ||
tar c -C bin $NETPLUGIN_BINARIES | tar x -C scripts/netcontain/bin | ||
|
||
docker run --name=$TEMPORARY_CONTAINER_NAME $BUILD_ENV_IMAGE_NAME || true | ||
old_image=$(get_image_id) | ||
|
||
echo "Copying the Contiv binaries..." | ||
for f in $NETPLUGIN_BINARIES; do | ||
docker cp $TEMPORARY_CONTAINER_NAME:/go/bin/$f scripts/netContain/bin/ | ||
done | ||
cd scripts/netContain | ||
|
||
docker rm -fv $TEMPORARY_CONTAINER_NAME | ||
docker build -t $IMAGE -t $REPOSITORY:latest . | ||
|
||
echo "Building the final Docker image..." | ||
build_image_from_path scripts/netContain contivbase | ||
if [ "$?" -ne 0 ]; then | ||
echo "Failed to build the final Docker image" | ||
exit 1 | ||
fi | ||
new_image=$(get_image_id) | ||
|
||
rm -rf scripts/netContain/bin | ||
if [ "$old_image" != "" ] && [ "$old_image" != "$new_image" ]; then | ||
echo Removing old image $old_image | ||
docker rmi -f $old_image >/dev/null 2>&1 || true | ||
fi |
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.
This needs to be netContain.