Skip to content

Commit

Permalink
Move manifests to /
Browse files Browse the repository at this point in the history
The manifests are also an essential building block
thus we keep it on the top-level.

Change-Id: Ib13f679cbf7af86357be4a8276e17c0ea64b2fc8
Signed-off-by: Fabian Deutsch <[email protected]>
  • Loading branch information
fabiand committed Dec 13, 2016
1 parent 7c446bd commit b41eeb2
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ clean:

distclean: clean
find vendor/ -maxdepth 1 -mindepth 1 -not -name vendor.json -exec rm {} -rf \;
rm -f ./custer/manifest/*.yaml
rm -f manifest/*.yaml

sync:
govendor sync
Expand All @@ -35,7 +35,7 @@ docker: build
publish: docker
./hack/build-docker.sh push ${WHAT}

manifests: $(wildcard cluster/manifest/*.in)
manifests: $(wildcard manifest/*.in)
./hack/build-manifests.sh

check: check-bash
Expand Down
4 changes: 2 additions & 2 deletions cluster/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ set -ex
KUBECTL=${KUBECTL:-kubectl}

echo "Cleaning up ..."
for i in `ls cluster/manifest/*.yaml`; do
for i in `ls manifest/*.yaml`; do
$KUBECTL delete -f $i --grace-period 0 2>/dev/null || :
done

sleep 2

echo "Deploying ..."
for i in `ls cluster/manifest/*.yaml`; do
for i in `ls manifest/*.yaml`; do
$KUBECTL create -f $i
done
echo "Done"
2 changes: 1 addition & 1 deletion hack/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ binaries="cmd/virt-controller cmd/virt-launcher cmd/virt-handler cmd/virt-api"
docker_images="$binaries images/haproxy"
docker_prefix=kubevirt
docker_tag=latest
manifest_templates="`ls cluster/manifest/*.in`"
manifest_templates="`ls manifest/*.in`"
master_ip=192.168.200.2
network_provider=weave
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b41eeb2

Please sign in to comment.