Skip to content

Commit

Permalink
update README.md to v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Vonng committed May 6, 2021
1 parent 00c38cc commit 6306ece
Show file tree
Hide file tree
Showing 3 changed files with 147 additions and 86 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# Copyright (C) 2018-2021 Ruohang Feng
#==============================================================#

# the latest version of pigsty is 0.9
VERSION=0.9

# make default will pull up vm nodes
Expand All @@ -31,7 +32,7 @@ install:
# BUT if your meta node DOES NOT HAVE INTERNET ACCESS
# You may have to copy/ftp/scp pkg.tgz & pigsty.tgz into meta node manually
pkg:
bin/get_pkg
bin/get_pkg ${VERSION}

# install ansible and init infrastructure
meta: boot infra
Expand Down Expand Up @@ -77,10 +78,11 @@ deps:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install vagrant virtualbox ansible

# download pigsty resources (and copy to files/pkg.tgz )
# download pigsty resources (to files/release/v*.*/{pkg,pigsty}.tgz)
download: pkg
cp -f /tmp/pkg.tgz files/pkg.tgz
curl -fsSL https://pigsty.cc/pigsty.tgz -o files/pigsty.tgz
mkdir files/release/v${VERSION}/
cp -f /tmp/pkg.tgz files/release/v${VERSION}/pkg.tgz
curl -fsSL https://pigsty.cc/pigsty.tgz -o files/release/v${VERSION}/pigsty.tgz

# start will pull-up node and write ssh-config
start: up ssh sync
Expand Down
Loading

0 comments on commit 6306ece

Please sign in to comment.