-
Notifications
You must be signed in to change notification settings - Fork 619
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add one rule to build the tar for csi driver
- Loading branch information
Showing
7 changed files
with
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/bin/bash | ||
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). You may | ||
# not use this file except in compliance with the License. A copy of the | ||
# License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file 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 script builds a csi driver image. | ||
|
||
set -ex | ||
|
||
ROOT=$(pwd) | ||
cd "${ROOT}" | ||
VERSION="v$(cat ./container/VERSION)" | ||
|
||
architecture="" | ||
case $(uname -m) in | ||
x86_64) | ||
architecture="amd64" | ||
;; | ||
arm64) | ||
architecture="arm64" | ||
;; | ||
aarch64) | ||
architecture="arm64" | ||
;; | ||
*) | ||
echo $"Unknown architecture $0" | ||
exit 1 | ||
esac | ||
|
||
if [ "$architecture" == "amd64" ]; then export GOARCH=amd64; fi | ||
if [ "$architecture" == "arm64" ]; then export GOARCH=arm64; fi | ||
|
||
# build binary | ||
mkdir -p rootfs/bin/ | ||
cp bin/csi-driver rootfs/bin/csi-driver | ||
|
||
# build container | ||
mkdir -p image/rootfs | ||
tar --mtime="@1492525740" --owner=0 --group=0 --numeric-owner -cf image/rootfs/layer.tar -C rootfs . | ||
DIGEST=$(sha256sum image/rootfs/layer.tar | sed -e 's/ .*//') | ||
install -m 0644 ./container/VERSION image/rootfs/VERSION | ||
install -m 0644 ./container/config.json image/config.json | ||
sed -i "s/~~digest~~/${DIGEST}/" image/config.json | ||
sed -i "s/~~architecture~~/${GOARCH}/" image/config.json | ||
sed -i "s/~~timestamp~~/$(date +"%FT%T.%NZ")/g" image/config.json | ||
install -m 0644 ./container/manifest.json image/manifest.json | ||
install -m 0644 ./container/repositories image/repositories | ||
mkdir -p tarfiles/ | ||
tar --mtime="@1492525740" --owner=0 --group=0 --numeric-owner -cf ./tarfiles/csi-driver-${GOARCH}.tar -C image . | ||
rm -rf image/ | ||
rm -rf rootfs/ |
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 @@ | ||
1.0.0 |
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 @@ | ||
{"architecture":"~~architecture~~","author":"Amazon Web Services, Inc.","config":{"Entrypoint":["/bin/csi-driver"],"ArgsEscaped":true,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null},"created":"~~timestamp~~","history":[{"created":"~~timestamp~~","author":"Amazon Web Services, Inc.","created_by":"°o°","empty_layer":true}],"os":"linux","rootfs":{"type":"layers","diff_ids":["sha256:~~digest~~"]}} |
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 @@ | ||
[{"Config":"config.json","RepoTags":["amazon/amazon-ebs-csi-driver:latest"],"Layers":["rootfs/layer.tar"]}] |
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 @@ | ||
{"amazon/amazon-ebs-csi-driver":{"amazon-ecs":"rootfs"}} |
Binary file not shown.