Skip to content

Commit

Permalink
update some TODO that are done
Browse files Browse the repository at this point in the history
  • Loading branch information
BenTheElder committed Oct 8, 2018
1 parent cde87cc commit 57da2c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ A non-exhaustive list of tasks (in no-particular order) includes:
- [ ] kubetest ingregration [WIP]
- [ ] point existing ["dind"](https://github.com/kubernetes/test-infra/tree/master/dind) integration here once complete
- [ ] improved logging and error handling
- [ ] continuous integration
- [ ] publish pre-built images to a registry
- [x] continuous integration
- [x] publish pre-built images to a registry
- [ ] fake out all internals and unit test [WIP]
- [ ] pre-load images that are not from the build / possibly build more images
- [ ] etcd
Expand Down
2 changes: 1 addition & 1 deletion hack/build/push-base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ TAG="${DATE}-$(git describe --tags --always --dirty)"
IMAGE="kindest/base:${TAG}"

# build
(set -x; "${KIND}" build base --image="${IMAGE}")
(set -x; "${KIND}" build base-image --image="${IMAGE}")

# push
docker push "${IMAGE}"
Expand Down
2 changes: 1 addition & 1 deletion hack/build/push-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ TAG="${DATE}-$(git describe --tags --always --dirty)"

# build
set -x
"${KIND}" build node --image="kindest/node:${TAG}" --base-image="kindest/base:${TAG}"
"${KIND}" build node-image --image="kindest/node:${TAG}" --base-image="kindest/base:${TAG}"

# re-tag with kubernetes version
IMG="kindest/node:${TAG}"
Expand Down

0 comments on commit 57da2c2

Please sign in to comment.