Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2967 from /issues/2610-host-volume
Browse files Browse the repository at this point in the history
Change weavedb from an emptyDir to a hostPath volume
  • Loading branch information
marccarre authored May 23, 2017
2 parents a7206be + bebaa48 commit 0c89bbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions prog/weave-kube/launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ post_start_actions &
/home/weave/weaver $EXTRA_ARGS --port=6783 $(router_bridge_opts) \
--host-root=$HOST_ROOT \
--http-addr=$HTTP_ADDR --status-addr=$STATUS_ADDR --docker-api='' --no-dns \
--db-prefix="/weavedb/weave-net" \
--ipalloc-range=$IPALLOC_RANGE $NICKNAME_ARG \
--ipalloc-init $IPALLOC_INIT \
--conn-limit=$CONN_LIMIT \
Expand Down
3 changes: 2 additions & 1 deletion prog/weave-kube/weave-daemonset-k8s-1.6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ spec:
type: spc_t
volumes:
- name: weavedb
emptyDir: {}
hostPath:
path: /var/lib/weave
- name: cni-bin
hostPath:
path: /opt
Expand Down
3 changes: 2 additions & 1 deletion prog/weave-kube/weave-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ spec:
restartPolicy: Always
volumes:
- name: weavedb
emptyDir: {}
hostPath:
path: /var/lib/weave
- name: cni-bin
hostPath:
path: /opt
Expand Down
3 changes: 2 additions & 1 deletion weave
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ docker_run_options() {

exec_options() {
case "$1" in
setup|setup-cni|launch)
setup|setup-cni|launch|reset)
echo -v /:/host -e HOST_ROOT=/host
;;
# All the other commands that may create the bridge and need machine id files.
Expand Down Expand Up @@ -1602,6 +1602,7 @@ case "$COMMAND" in
protect_against_docker_hang
VOLUME_CONTAINERS=$(docker ps -qa --filter label=weavevolumes)
[ -n "$VOLUME_CONTAINERS" ] && docker rm -v $VOLUME_CONTAINERS >/dev/null 2>&1 || true
rm -f $HOST_ROOT/var/lib/weave/weave-netdata.db >/dev/null 2>&1 || true
destroy_bridge
for LOCAL_IFNAME in $(ip link show | grep v${CONTAINER_IFNAME}pl | cut -d ' ' -f 2 | tr -d ':') ; do
ip link del ${LOCAL_IFNAME%@*} >/dev/null 2>&1 || true
Expand Down

0 comments on commit 0c89bbb

Please sign in to comment.