diff --git a/Makefile b/Makefile index aa0efe3a..03b3797e 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ # License : AGPLv3 #==============================================================# # pigsty version string -VERSION?=v3.0.1 +VERSION?=v3.0.2 # variables SRC_PKG=pigsty-$(VERSION).tgz diff --git a/README.md b/README.md index c4b0bceb..6b4f98a7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Pigsty [![Webite: pigsty.io](https://img.shields.io/badge/website-pigsty.io-slategray?style=flat&logo=cilium&logoColor=white)](https://pigsty.io) -[![Version: v3.0.1](https://img.shields.io/badge/version-v3.0.1-slategray?style=flat&logo=cilium&logoColor=white)](https://github.com/Vonng/pigsty/releases/tag/v3.0.1) +[![Version: v3.0.2](https://img.shields.io/badge/version-v3.0.2-slategray?style=flat&logo=cilium&logoColor=white)](https://github.com/Vonng/pigsty/releases/tag/v3.0.2) [![License: AGPLv3](https://img.shields.io/github/license/Vonng/pigsty?logo=opensourceinitiative&logoColor=green&color=slategray)](https://pigsty.io/docs/about/license/) [![GitHub Stars](https://img.shields.io/github/stars/Vonng/pigsty?style=flat&logo=github&logoColor=black&color=slategray)](https://star-history.com/#Vonng/pigsty&Date) [![Extensions: 335](https://img.shields.io/badge/extensions-335-%233E668F?style=flat&logo=postgresql&logoColor=white&labelColor=3E668F)](https://pigsty.io/docs/pgext/list) @@ -12,7 +12,7 @@ Battery-Included, Local-First **PostgreSQL** Distribution as a Free & Better **R [**Features**](https://pigsty.io/docs/about/feature) | [Website](https://pigsty.io/) | [Docs](https://pigsty.io/docs/) | [Demo](https://demo.pigsty.cc) | [Blog](https://pigsty.io/blog) | [Discuss](https://github.com/Vonng/pigsty/discussions) | [Roadmap](https://github.com/users/Vonng/projects/2/views/3) | [中文站](https://pigsty.cc/zh/) | [专业版](https://pigsty.cc/zh/docs/price/) | [博客](https://pigsty.cc/zh/blog) | [**特性**](https://pigsty.cc/zh/docs/about/feature) -[**Get Started**](https://pigsty.io/docs/setup/install/) with the latest [**v3.0.1**](https://github.com/Vonng/pigsty/releases/tag/v3.0.1) release: `curl -fsSL https://repo.pigsty.io/get | bash` +[**Get Started**](https://pigsty.io/docs/setup/install/) with the latest [**v3.0.2**](https://github.com/Vonng/pigsty/releases/tag/v3.0.2) release: `curl -fsSL https://repo.pigsty.io/get | bash` [![pigsty-desc](https://pigsty.io/img/pigsty/banner.en.jpg)](https://pigsty.io/docs/about/feature/) @@ -78,20 +78,20 @@ Finally, you will get a pigsty singleton node [**ready**](https://pigsty.io/docs ``` $ curl -fsSL https://repo.pigsty.io/get | bash -[v3.0.1] =========================================== +[v3.0.2] =========================================== $ curl -fsSL https://repo.pigsty.io/get | bash [Site] https://pigsty.io [Demo] https://demo.pigsty.cc [Repo] https://github.com/Vonng/pigsty [Docs] https://pigsty.io/docs/setup/install [Download] =========================================== -[ OK ] version = v3.0.1 (from default) -curl -fSL https://repo.pigsty.io/src/pigsty-v3.0.1.tgz -o /tmp/pigsty-v3.0.1.tgz +[ OK ] version = v3.0.2 (from default) +curl -fSL https://repo.pigsty.io/src/pigsty-v3.0.2.tgz -o /tmp/pigsty-v3.0.2.tgz ######################################################################## 100.0% -[ OK ] md5sums = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx /tmp/pigsty-v3.0.1.tgz +[ OK ] md5sums = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx /tmp/pigsty-v3.0.2.tgz [Install] =========================================== [WARN] os user = root , it's recommended to install as a sudo-able admin -[ OK ] install = /root/pigsty, from /tmp/pigsty-v3.0.1.tgz +[ OK ] install = /root/pigsty, from /tmp/pigsty-v3.0.2.tgz [TodoList] =========================================== cd /root/pigsty ./bootstrap # [OPTIONAL] install ansible & use offline package @@ -103,7 +103,7 @@ cd /root/pigsty > HINT: To install a specific version, pass the version string as the first parameter: > > ```bash -> curl -fsSL https://repo.pigsty.io/get | bash -s v3.0.1 +> curl -fsSL https://repo.pigsty.io/get | bash -s v3.0.2 > ``` @@ -114,7 +114,7 @@ cd /root/pigsty You can also download the pigsty source with `git`, remember to check out a specific version tag, the `main` branch is for development. ```bash -git clone https://github.com/Vonng/pigsty; cd pigsty; git checkout v3.0.1 +git clone https://github.com/Vonng/pigsty; cd pigsty; git checkout v3.0.2 ``` diff --git a/bin/boot-oss b/bin/boot-oss index 602790a4..f0968e3c 100755 --- a/bin/boot-oss +++ b/bin/boot-oss @@ -11,7 +11,7 @@ set -euo pipefail #==============================================================# PROG_NAME="$(basename $0)" PROG_DIR="$(cd $(dirname $0) && pwd)" -VERSION=${1-'v3.0.1'} +VERSION=${1-'v3.0.2'} #--------------------------------------------------------------# # Usage diff --git a/bin/boot-pro b/bin/boot-pro index 89b3e077..2e1cb83b 100755 --- a/bin/boot-pro +++ b/bin/boot-pro @@ -11,7 +11,7 @@ set -euo pipefail #==============================================================# PROG_NAME="$(basename $0)" PROG_DIR="$(cd $(dirname $0) && pwd)" -VERSION=${1-'v3.0.1'} +VERSION=${1-'v3.0.2'} #--------------------------------------------------------------# # Usage diff --git a/bin/install b/bin/install index cb4b9717..12801240 100755 --- a/bin/install +++ b/bin/install @@ -11,14 +11,14 @@ # Author : Ruohang Feng (rh@vonng.com) # License : AGPLv3 #==============================================================# -DEFAULT_VERSION=v3.0.1 +DEFAULT_VERSION=v3.0.2 DEFAULT_REGION=global -# To install the latest version of pigsty (v3.0.1): +# To install the latest version of pigsty (v3.0.2): # curl -fsSL https://repo.pigsty.io/get | bash -# To install a specific version of pigsty (e.g. v3.0.1) -# curl -fsSL https://repo.pigsty.io/get | bash -s v3.0.1 +# To install a specific version of pigsty (e.g. v3.0.2) +# curl -fsSL https://repo.pigsty.io/get | bash -s v3.0.2 #--------------------------------------------------------------# @@ -47,7 +47,7 @@ function log_line() { printf "${__CM}[$*] ===================================== VALID_VERSIONS="\ v1.0.0 v1.1.1 v1.2.0 v1.3.0 v1.4.0 v1.4.1 v1.5.0 v1.5.1 v2.0.0 \ v2.0.1 v2.0.2 v2.1.0 v2.2.0 v2.3.0 v2.3.1 v2.4.0 v2.4.1 v2.5.0 \ -v2.5.1 v2.6.0 v2.7.0 v3.0.0 v3.0.1 v3.1.0" +v2.5.1 v2.6.0 v2.7.0 v3.0.0 v3.0.1 v3.0.2 v3.0.3 v3.0.4 v3.1.0" VERSION=${DEFAULT_VERSION} VERSION_FROM="default" diff --git a/bootstrap b/bootstrap index 0f5b61d0..f4103c1d 100755 --- a/bootstrap +++ b/bootstrap @@ -8,7 +8,7 @@ # Author : Ruohang Feng (rh@vonng.com) # License : AGPLv3 #==============================================================# -PIGSTY_VERSION=v3.0.1 +PIGSTY_VERSION=v3.0.2 #--------------------------------------------------------------# diff --git a/cache.yml b/cache.yml index e6545e2d..16ae6059 100755 --- a/cache.yml +++ b/cache.yml @@ -18,7 +18,7 @@ tags: cache_dir tasks: - name: create local directory - file: path={{ cache_pkg_dir|default('dist/${version}') | replace('${version}', version|default('v3.0.1')) }} state=directory + file: path={{ cache_pkg_dir|default('dist/${version}') | replace('${version}', version|default('v3.0.2')) }} state=directory # gather offline packages from target nodes (the infra node with repo enabled) @@ -27,7 +27,7 @@ become: yes gather_facts: no vars: - #version: v3.0.1 + #version: v3.0.2 #cache_pkg_dir: 'dist/${version}' # where to store the cached package? dist/${version} by default #cache_pkg_name: 'pigsty-pkg-${version}.${os}.${arch}.tgz' # cache offline package filename pattern #cache_repo: pigsty # target repo(s) to be cached, use `,` to separate multiple repos @@ -47,7 +47,7 @@ - name: calculate cache tarball md5 checksum shell: | - cd {{ cache_pkg_dir|default('dist/${version}') | replace('${version}', version|default('v3.0.1')) }} + cd {{ cache_pkg_dir|default('dist/${version}') | replace('${version}', version|default('v3.0.2')) }} md5sum *.tgz > checksums cat checksums ls -lh *.tgz diff --git a/conf/build/ext.yml b/conf/build/ext.yml index 198549ed..1726c8ce 100644 --- a/conf/build/ext.yml +++ b/conf/build/ext.yml @@ -167,7 +167,7 @@ all: - pkgconfig,yum-utils vars: - version: v3.0.1 + version: v3.0.2 admin_ip: 10.10.10.8 region: china etcd_clean: true diff --git a/conf/build/oss.yml b/conf/build/oss.yml index ebbab056..0bcb5dd3 100644 --- a/conf/build/oss.yml +++ b/conf/build/oss.yml @@ -21,7 +21,7 @@ all: vars: - version: v3.0.1 + version: v3.0.2 admin_ip: 10.10.10.8 region: china etcd_clean: true diff --git a/conf/dbms/citus.yml b/conf/dbms/citus.yml index ada6ce31..bdb4a9be 100644 --- a/conf/dbms/citus.yml +++ b/conf/dbms/citus.yml @@ -35,7 +35,7 @@ all: vars: { pg_cluster: pg-citus3 , pg_group: 3 } vars: # global variables - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/dbms/ivory.yml b/conf/dbms/ivory.yml index 6333c174..568fc710 100644 --- a/conf/dbms/ivory.yml +++ b/conf/dbms/ivory.yml @@ -61,7 +61,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default,china,europe infra_portal: # domain names and upstream servers diff --git a/conf/dbms/minio.yml b/conf/dbms/minio.yml index d792f906..d0030aff 100644 --- a/conf/dbms/minio.yml +++ b/conf/dbms/minio.yml @@ -101,7 +101,7 @@ all: vars: - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe infra_portal: # domain names and upstream servers diff --git a/conf/dbms/mssql.yml b/conf/dbms/mssql.yml index 98a40dba..cfc71d6c 100644 --- a/conf/dbms/mssql.yml +++ b/conf/dbms/mssql.yml @@ -85,7 +85,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default,china,europe infra_portal: # domain names and upstream servers diff --git a/conf/dbms/polar.yml b/conf/dbms/polar.yml index 7874c856..5ce97312 100644 --- a/conf/dbms/polar.yml +++ b/conf/dbms/polar.yml @@ -50,7 +50,7 @@ all: pg_vip_interface: eth1 vars: # global variables - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # use tiny template for NODE in demo environment diff --git a/conf/dbms/redis.yml b/conf/dbms/redis.yml index 47b71775..def0a5cd 100644 --- a/conf/dbms/redis.yml +++ b/conf/dbms/redis.yml @@ -38,7 +38,7 @@ all: vars: - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe diff --git a/conf/dbms/supabase.yml b/conf/dbms/supabase.yml index fd3a4cbb..5291b576 100644 --- a/conf/dbms/supabase.yml +++ b/conf/dbms/supabase.yml @@ -80,7 +80,7 @@ all: - { user: all ,db: supa ,addr: all ,auth: pwd ,title: 'allow supa database access from entire world' } # not safe! vars: # global variables - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe infra_portal: # domain names and upstream servers diff --git a/conf/default/d11.yml b/conf/default/d11.yml index dbb15736..ca31f688 100644 --- a/conf/default/d11.yml +++ b/conf/default/d11.yml @@ -150,7 +150,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/default/d12.yml b/conf/default/d12.yml index 7d8c03b1..007d49c5 100644 --- a/conf/default/d12.yml +++ b/conf/default/d12.yml @@ -154,7 +154,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/default/el7.yml b/conf/default/el7.yml index 32b179d0..082375f0 100644 --- a/conf/default/el7.yml +++ b/conf/default/el7.yml @@ -155,7 +155,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: china # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/default/el8.yml b/conf/default/el8.yml index 9af12296..7d23ed9a 100644 --- a/conf/default/el8.yml +++ b/conf/default/el8.yml @@ -154,7 +154,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/default/el9.yml b/conf/default/el9.yml index 273e5157..d2585340 100644 --- a/conf/default/el9.yml +++ b/conf/default/el9.yml @@ -155,7 +155,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/default/u20.yml b/conf/default/u20.yml index 28493dbf..33c8cbe8 100644 --- a/conf/default/u20.yml +++ b/conf/default/u20.yml @@ -156,7 +156,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/default/u22.yml b/conf/default/u22.yml index b2c7e031..7db79cee 100644 --- a/conf/default/u22.yml +++ b/conf/default/u22.yml @@ -155,7 +155,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/conf/demo/debian.yml b/conf/demo/debian.yml index bf2f7582..69ac0d00 100644 --- a/conf/demo/debian.yml +++ b/conf/demo/debian.yml @@ -219,7 +219,7 @@ all: #----------------------------------------------------------------- # META #----------------------------------------------------------------- - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default,china,europe proxy_env: # global proxy env when downloading packages diff --git a/conf/demo/el.yml b/conf/demo/el.yml index 260a2fb0..6c28d2a4 100644 --- a/conf/demo/el.yml +++ b/conf/demo/el.yml @@ -219,7 +219,7 @@ all: #----------------------------------------------------------------- # META #----------------------------------------------------------------- - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default,china,europe proxy_env: # global proxy env when downloading packages diff --git a/conf/demo/pg17.yml b/conf/demo/pg17.yml index 30856e3f..5ec3079d 100644 --- a/conf/demo/pg17.yml +++ b/conf/demo/pg17.yml @@ -65,7 +65,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # oltp|olap|tiny|cirt diff --git a/conf/demo/public.yml b/conf/demo/public.yml index 2bce778f..f80b9cb5 100644 --- a/conf/demo/public.yml +++ b/conf/demo/public.yml @@ -96,7 +96,7 @@ all: vars: # global variables - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: china # upstream mirror region: default|china|europe infra_portal: # domain names and upstream servers diff --git a/conf/demo/remote.yml b/conf/demo/remote.yml index 6f88101a..871d0fcc 100644 --- a/conf/demo/remote.yml +++ b/conf/demo/remote.yml @@ -68,7 +68,7 @@ all: vars: - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default,china,europe ... \ No newline at end of file diff --git a/conf/demo/security.yml b/conf/demo/security.yml index 6ec64ced..b8010345 100644 --- a/conf/demo/security.yml +++ b/conf/demo/security.yml @@ -76,7 +76,7 @@ all: # Parameters # #################################################################### vars: # global variables - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe patroni_ssl_enabled: true # secure patroni RestAPI communications with SSL? diff --git a/conf/demo/wool.yml b/conf/demo/wool.yml index b98ec737..9a5ae9ef 100644 --- a/conf/demo/wool.yml +++ b/conf/demo/wool.yml @@ -33,7 +33,7 @@ all: pg_default_version: 13 # 用 PostgreSQL 13 vars: - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string region: china admin_ip: 10.10.10.10 # 这个 IP 地址应该是你 ECS 的内网IP地址 infra_portal: # 如果你有自己的 DNS 域名,这里面的域名后缀 pigsty 换成你自己的 DNS 域名 diff --git a/conf/sandbox/dual.yml b/conf/sandbox/dual.yml index 0d8291cc..e78d7cac 100644 --- a/conf/sandbox/dual.yml +++ b/conf/sandbox/dual.yml @@ -51,7 +51,7 @@ all: #pg_vip_interface: eth1 vars: # global parameters - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default,china,europe infra_portal: # domain names and upstream servers diff --git a/conf/sandbox/full.yml b/conf/sandbox/full.yml index 52ef6b84..740012ee 100644 --- a/conf/sandbox/full.yml +++ b/conf/sandbox/full.yml @@ -84,7 +84,7 @@ all: # Global Parameters #==============================================================# vars: - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # use tiny template for NODE in demo environment diff --git a/conf/sandbox/meta.yml b/conf/sandbox/meta.yml index 79ed2285..279d4d93 100644 --- a/conf/sandbox/meta.yml +++ b/conf/sandbox/meta.yml @@ -60,7 +60,7 @@ all: vars: { redis_cluster: redis-ms ,redis_password: 'redis.ms' ,redis_max_memory: 64MB } vars: # global variables - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # oltp|olap|tiny|cirt diff --git a/conf/sandbox/mini.yml b/conf/sandbox/mini.yml index ba6147a9..a2715c32 100644 --- a/conf/sandbox/mini.yml +++ b/conf/sandbox/mini.yml @@ -54,7 +54,7 @@ all: vars: - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # use tiny template for NODE in demo environment diff --git a/conf/sandbox/prod.yml b/conf/sandbox/prod.yml index c452ad57..e73c6c07 100644 --- a/conf/sandbox/prod.yml +++ b/conf/sandbox/prod.yml @@ -446,7 +446,7 @@ all: #==========================================================# # INFRA #==========================================================# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe infra_portal: # domain names and upstream servers diff --git a/conf/sandbox/trio.yml b/conf/sandbox/trio.yml index 298853cd..b9b6aa58 100644 --- a/conf/sandbox/trio.yml +++ b/conf/sandbox/trio.yml @@ -69,7 +69,7 @@ all: #----------------------------------# # Meta Data #----------------------------------# - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # node tuning specs: oltp,olap,tiny,crit diff --git a/configure b/configure index a9b1bafa..ceababc2 100755 --- a/configure +++ b/configure @@ -8,7 +8,7 @@ # Author : Ruohang Feng (rh@vonng.com) # License : AGPLv3 #==============================================================# -PIGSTY_VERSION=v3.0.1 +PIGSTY_VERSION=v3.0.2 #--------------------------------------------------------------# # Usage diff --git a/files/cmdb.sql b/files/cmdb.sql index d53a9133..6a03e734 100644 --- a/files/cmdb.sql +++ b/files/cmdb.sql @@ -1241,7 +1241,7 @@ TRUNCATE pigsty.default_var; INSERT INTO pigsty.default_var VALUES -- INFRA PARAMETERS -(101, 'version', '"v3.0.1"', 'INFRA', 'META', 'string', 'G', 'pigsty version string', NULL), +(101, 'version', '"v3.0.2"', 'INFRA', 'META', 'string', 'G', 'pigsty version string', NULL), (102, 'admin_ip', '"10.10.10.10"', 'INFRA', 'META', 'ip', 'G', 'admin node ip address', NULL), (103, 'region', '"default"', 'INFRA', 'META', 'enum', 'G', 'upstream mirror region: default,china,europe', NULL), (104, 'proxy_env', '{"no_proxy": "localhost,127.0.0.1,10.0.0.0/8,192.168.0.0/16,*.pigsty,*.aliyun.com,mirrors.*,*.myqcloud.com,*.tsinghua.edu.cn"}', 'INFRA', 'META', 'dict', 'G', 'global proxy env when downloading packages', NULL), diff --git a/files/grafana/pigsty.json b/files/grafana/pigsty.json index c4b8b08f..24761e29 100644 --- a/files/grafana/pigsty.json +++ b/files/grafana/pigsty.json @@ -2314,7 +2314,7 @@ "description": "Pigsty Version Number", "hide": 2, "name": "version", - "query": "v3.0.1", + "query": "v3.0.2", "skipUrlSync": false, "type": "constant" } diff --git a/pigsty.yml b/pigsty.yml index bba3832d..fac1e408 100644 --- a/pigsty.yml +++ b/pigsty.yml @@ -77,7 +77,7 @@ all: vars: { redis_cluster: redis-ms ,redis_password: 'redis.ms' ,redis_max_memory: 64MB } vars: # global variables - version: v3.0.1 # pigsty version string + version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address region: default # upstream mirror region: default|china|europe node_tune: tiny # oltp|olap|tiny|cirt diff --git a/roles/cache/defaults/main.yml b/roles/cache/defaults/main.yml index a3d4c77b..6c4eefa4 100644 --- a/roles/cache/defaults/main.yml +++ b/roles/cache/defaults/main.yml @@ -16,7 +16,7 @@ repo_name: pigsty # repo name, pigsty by default #----------------------------------------------------------------- # META (Reference) #----------------------------------------------------------------- -version: v3.0.1 # pigsty version string +version: v3.0.2 # pigsty version string #----------------------------------------------------------------- # NGINX (Reference) #----------------------------------------------------------------- diff --git a/roles/infra/defaults/main.yml b/roles/infra/defaults/main.yml index c190d188..28951936 100644 --- a/roles/infra/defaults/main.yml +++ b/roles/infra/defaults/main.yml @@ -106,7 +106,7 @@ nginx_cert_exists: false #----------------------------------------------------------------- # META (Reference) #----------------------------------------------------------------- -version: v3.0.1 # pigsty version string +version: v3.0.2 # pigsty version string admin_ip: 10.10.10.10 # admin node ip address, overwritten by configure #----------------------------------------------------------------- # CA (Reference) diff --git a/roles/repo/defaults/main.yml b/roles/repo/defaults/main.yml index b4571416..21473e31 100644 --- a/roles/repo/defaults/main.yml +++ b/roles/repo/defaults/main.yml @@ -23,7 +23,7 @@ repo_exists: false #----------------------------------------------------------------- # META (Reference) #----------------------------------------------------------------- -version: v3.0.1 # pigsty version string +version: v3.0.2 # pigsty version string region: default # choose a region from where to download repo pkgs: default|china|europe proxy_env: # global proxy env when downloading packages no_proxy: "localhost,127.0.0.1,10.0.0.0/8,192.168.0.0/16,*.pigsty,*.aliyun.com,mirrors.*,*.myqcloud.com,*.tsinghua.edu.cn"