@@ -134,12 +134,12 @@ class { 'st2':
134134}
135135```
136136
137- ##### Install with python 3.6 (if not default on your system)
137+ ##### Install with python 3.8 (if not default on your system)
138138
139139``` puppet
140140$st2_python_version = $facts['os']['family'] ? {
141- 'RedHat' => '3.6 ',
142- 'Debian' => 'python3.6 ',
141+ 'RedHat' => '3.8 ',
142+ 'Debian' => 'python3.8 ',
143143}
144144class { 'st2':
145145 python_version => $st2_python_version,
@@ -257,8 +257,8 @@ Data type: `String`
257257
258258Version of Python to install. Default is 'system' meaning the system version
259259of Python will be used.
260- To install Python 3.6 on RHEL/CentOS 7 specify '3.6 '.
261- To install Python 3.6 on Ubuntu 16.05 specify 'python3.6 '.
260+ To install Python 3.8 on RHEL/CentOS 7 specify '3.8 '.
261+ To install Python 3.8 on Ubuntu 16.05 specify 'python3.8 '.
262262
263263Default value: ` 'system' `
264264
@@ -2383,12 +2383,12 @@ include st2::profile::python
23832383include st2::profile::python
23842384```
23852385
2386- ##### Install with python 3.6 (if not default on your system)
2386+ ##### Install with python 3.8 (if not default on your system)
23872387
23882388``` puppet
23892389$st2_python_version = $facts['os']['family'] ? {
2390- 'RedHat' => '3.6 ',
2391- 'Debian' => 'python3.6 ',
2390+ 'RedHat' => '3.8 ',
2391+ 'Debian' => 'python3.8 ',
23922392}
23932393class { 'st2':
23942394 python_version => $st2_python_version,
@@ -2407,8 +2407,8 @@ Data type: `String`
24072407
24082408Version of Python to install. Default is 'system' meaning the system version
24092409of Python will be used.
2410- To install Python 3.6 on RHEL/CentOS 7 specify '3.6 '.
2411- To install Python 3.6 on Ubuntu 16.05 specify 'python3.6 '.
2410+ To install Python 3.8 on RHEL/CentOS/Rocky 7/8 specify '3.8 '.
2411+ To install Python 3.8 on Ubuntu 18.04/20.04 specify 'python3.8 '.
24122412
24132413Default value: ` $st2::python_version `
24142414
@@ -4462,9 +4462,9 @@ High level steps:
44624462- stop stackstorm
44634463## https://docs.mongodb.com/manual/release-notes/3.6-upgrade-standalone/
44644464- set MongoDB feature compatibility to 3.4
4465- - change package repo to 3.6
4465+ - change package repo to 3.8
44664466- upgrade packages
4467- - set MongoDB feature compatibility to 3.6
4467+ - set MongoDB feature compatibility to 3.8
44684468## https://docs.mongodb.com/manual/release-notes/4.0-upgrade-standalone/
44694469- change package repo to 4.0
44704470- upgrade packages
@@ -4488,13 +4488,13 @@ bolt plan run st2::upgrade_mongodb --targets ssh_nodes --params '{"mongo_passwor
44884488##### Upgrading from 3.6 to 4.0
44894489
44904490``` puppet
4491- bolt plan run st2::upgrade_mongodb --targets ssh_nodes --params '{"mongo_password": "xxx", "upgrade_version_start": "3.6 ", "upgrade_version_path": ["4.0"]}'
4491+ bolt plan run st2::upgrade_mongodb --targets ssh_nodes --params '{"mongo_password": "xxx", "upgrade_version_start": "3.8 ", "upgrade_version_path": ["4.0"]}'
44924492```
44934493
44944494##### Upgrading from 3.4 to 3.6 to 4.0
44954495
44964496``` puppet
4497- bolt plan run st2::upgrade_mongodb --targets ssh_nodes --params '{"mongo_password": "xxx", "upgrade_version_start": "3.4", "upgrade_version_path": ["3.6 ", "4.0"]}'
4497+ bolt plan run st2::upgrade_mongodb --targets ssh_nodes --params '{"mongo_password": "xxx", "upgrade_version_start": "3.4", "upgrade_version_path": ["3.8 ", "4.0"]}'
44984498```
44994499
45004500#### Parameters
@@ -4570,4 +4570,3 @@ Data type: `Array[String]`
45704570List of versions that we will upgrade through along our path to success!
45714571
45724572Default value: ` ['3.6', '4.0'] `
4573-
0 commit comments