Skip to content

Commit 33c7329

Browse files
committed
update metadata parameter
Signed-off-by: Robin Winkelewski <w9ncontact@gmail.com>
1 parent f7ac0ba commit 33c7329

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ jobs:
104104
command: |
105105
curl -fsSL -o /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-17.06.2-ce.tgz
106106
tar xfO /tmp/docker.tgz docker/docker > /workspace/bin/docker
107-
curl -fsSL -o /workspace/bin/linuxkit https://362-46932243-gh.circle-artifacts.com/0/linuxkit-linux-amd64
107+
# To update find the most recent successful build at https://circleci.com/gh/linuxkit/linuxkit/tree/master
108+
# and find the link + SHA256 in the `Artifacts` tab
109+
curl -fsSL -o /workspace/bin/linuxkit https://501-46932243-gh.circle-artifacts.com/0/linuxkit-linux-amd64
108110
curl -fsSL -o /workspace/bin/manifest-tool https://github.com/estesp/manifest-tool/releases/download/v0.7.0/manifest-tool-linux-amd64
109111
curl -fsSL -o /workspace/bin/notary https://github.com/theupdateframework/notary/releases/download/v0.4.3/notary-Linux-amd64
110112
@@ -115,7 +117,7 @@ jobs:
115117
echo "Checking checksums"
116118
sha256sum -c <<EOF
117119
6af40e74b2dbb2927882acab52d50bfc72551779d541957fc70b6adc325ee5ef /workspace/bin/docker
118-
b61188823c2491e9a1c16d275e41c68d5736f3f10577d01cb358261ff71bbad6 /workspace/bin/linuxkit
120+
fd15a491d834e93c29729d8dc295d1684ec2cf1df42fb751ff20bd0b2a3e5110 /workspace/bin/linuxkit
119121
e4ca2ef0015a4be8597d31d9e3e70d88da33924ae72b0999e9f3b79304d4710d /workspace/bin/manifest-tool
120122
06cd02c4c2e7a3b1ad9899b03b3d4dde5392d964c675247d32f604a24661f839 /workspace/bin/notary
121123
EOF

boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ if [ -n "${kubeadm_data}" ] ; then
8888
echo "{ \"kubeadm\": { \"entries\": { ${kubeadm_data} } } }" > $state/metadata.json
8989
fi
9090

91-
exec linuxkit run ${KUBE_RUN_ARGS} -networking ${KUBE_NETWORKING} -cpus ${KUBE_VCPUS} -mem ${KUBE_MEM} -state "${state}" -disk size=${KUBE_DISK} -data $state/metadata.json ${uefi} "${img}${suffix}"
91+
exec linuxkit run ${KUBE_RUN_ARGS} -networking ${KUBE_NETWORKING} -cpus ${KUBE_VCPUS} -mem ${KUBE_MEM} -state "${state}" -disk size=${KUBE_DISK} -data-file $state/metadata.json ${uefi} "${img}${suffix}"

0 commit comments

Comments
 (0)