Skip to content

Commit a38f961

Browse files
authored
Merge pull request #335 from rush-skills/master
Ubuntu 20.04 and refactoring
2 parents 1be312b + 80ebf16 commit a38f961

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+591
-857
lines changed

.github/workflows/build.yaml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: build
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: ['*']
67
tags:
@@ -122,16 +123,14 @@ jobs:
122123
name: 'centos7-puppet7'
123124
- ruby: '2.7'
124125
name: 'centos7-puppet7-python36'
125-
- ruby: '2.7'
126-
name: 'ubuntu16-puppet6'
127-
- ruby: '2.7'
128-
name: 'ubuntu16-puppet7'
129-
- ruby: '2.7'
130-
name: 'ubuntu16-puppet7-python36'
131126
- ruby: '2.7'
132127
name: 'ubuntu18-puppet6'
133128
- ruby: '2.7'
134129
name: 'ubuntu18-puppet7'
130+
- ruby: '2.7'
131+
name: 'ubuntu20-puppet6'
132+
- ruby: '2.7'
133+
name: 'ubuntu20-puppet7'
135134
env:
136135
CHECK: '${{ matrix.check }}'
137136
steps:

.kitchen.yml

+16-28
Original file line numberDiff line numberDiff line change
@@ -73,61 +73,49 @@ platforms:
7373
puppetfile_path: build/centos7-puppet7/Puppetfile
7474
manifest: test/fullinstall_python36.pp
7575

76-
# Ubuntu Xenial with Systemd - Puppet 6
77-
- name: ubuntu16-puppet6
78-
driver:
79-
platform: ubuntu
80-
dockerfile: build/ubuntu16-puppet6/Dockerfile.kitchen
81-
run_command: /sbin/init
82-
volume:
83-
- /sys/fs/cgroup:/sys/fs/cgroup:ro
84-
provisioner:
85-
puppetfile_path: build/ubuntu16-puppet6/Puppetfile
86-
87-
# Ubuntu Xenial with Systemd - Puppet 7
88-
- name: ubuntu16-puppet7
76+
# Ubuntu Bionic with Systemd - Puppet 6
77+
- name: ubuntu18-puppet6
8978
driver:
9079
platform: ubuntu
91-
dockerfile: build/ubuntu16-puppet7/Dockerfile.kitchen
80+
dockerfile: build/ubuntu18-puppet6/Dockerfile.kitchen
9281
run_command: /sbin/init
9382
volume:
9483
- /sys/fs/cgroup:/sys/fs/cgroup:ro
9584
provisioner:
96-
puppetfile_path: build/ubuntu16-puppet7/Puppetfile
85+
puppetfile_path: build/ubuntu18-puppet6/Puppetfile
9786

98-
# Ubuntu Xenial with Systemd - Puppet 7 - Python 3.6
99-
- name: ubuntu16-puppet7-python36
87+
# Ubuntu Bionic with Systemd - Puppet 7
88+
- name: ubuntu18-puppet7
10089
driver:
10190
platform: ubuntu
102-
dockerfile: build/ubuntu16-puppet7/Dockerfile.kitchen
91+
dockerfile: build/ubuntu18-puppet7/Dockerfile.kitchen
10392
run_command: /sbin/init
10493
volume:
10594
- /sys/fs/cgroup:/sys/fs/cgroup:ro
10695
provisioner:
107-
puppetfile_path: build/ubuntu16-puppet7/Puppetfile
108-
manifest: test/fullinstall_python36.pp
96+
puppetfile_path: build/ubuntu18-puppet7/Puppetfile
10997

110-
# Ubuntu Bionic with Systemd - Puppet 6
111-
- name: ubuntu18-puppet6
98+
# Ubuntu Focal with Systemd - Puppet 6
99+
- name: ubuntu20-puppet6
112100
driver:
113101
platform: ubuntu
114-
dockerfile: build/ubuntu18-puppet6/Dockerfile.kitchen
102+
dockerfile: build/ubuntu20-puppet6/Dockerfile.kitchen
115103
run_command: /sbin/init
116104
volume:
117105
- /sys/fs/cgroup:/sys/fs/cgroup:ro
118106
provisioner:
119-
puppetfile_path: build/ubuntu18-puppet6/Puppetfile
107+
puppetfile_path: build/ubuntu20-puppet6/Puppetfile
120108

121-
# Ubuntu Bionic with Systemd - Puppet 7
122-
- name: ubuntu18-puppet7
109+
# Ubuntu Focal with Systemd - Puppet 7
110+
- name: ubuntu20-puppet7
123111
driver:
124112
platform: ubuntu
125-
dockerfile: build/ubuntu18-puppet7/Dockerfile.kitchen
113+
dockerfile: build/ubuntu20-puppet7/Dockerfile.kitchen
126114
run_command: /sbin/init
127115
volume:
128116
- /sys/fs/cgroup:/sys/fs/cgroup:ro
129117
provisioner:
130-
puppetfile_path: build/ubuntu18-puppet7/Puppetfile
118+
puppetfile_path: build/ubuntu20-puppet7/Puppetfile
131119

132120
suites:
133121
- name: default

.pdkignore

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
/rakelib/
3737
/.rspec
3838
/.rubocop.yml
39-
/.travis.yml
4039
/.yardopts
4140
/spec/
4241
/.vscode/

.sync.yml

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
.gitlab-ci.yml:
1414
# we don't use GitLab
1515
unmanaged: true
16-
.travis.yml:
17-
# we keep our own .travis.yml because of integration testing
18-
unmanaged: true
1916
.vscode/extensions.json:
2017
# we don't use VSCode
2118
unmanaged: true

.travis-switch-to-github-actions.yml

-140
This file was deleted.

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## Development
44

5+
- Remove tests for Ubuntu 18.04 and Python3.6, since it's already default. Contributed by @rush-skills.
6+
7+
- Drop support for ubuntu 16.04 and add support for ubuntu 20.04. Contributed by @rush-skills
8+
9+
- Update build docs. Contributed by @rush-skills
10+
11+
- Change old style fact reference in selinux profile. Contributed by @rush-skills
12+
13+
- Cleaned up old style `::` references. Contributed by @rush-skills
14+
15+
- Removed travis references after switch to GitHub Actions. Contributed by @rush-skills
16+
17+
- Removed `files/etc/st2/st2.conf` as the template was no longer used. Contributed by @rush-skills
518

619
## 2.2.0 (Jul 14, 2021)
720

README.md

+13-18
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ The `st2` module configures the existing into a complete and dedicated StackStor
4949
* MongoDB
5050
* Postgres
5151
* RabbitMQ
52+
* Redis
5253
* Nginx
5354
* NodeJS
5455

@@ -69,10 +70,10 @@ and [librarian-puppet](http://librarian-puppet.com/).
6970

7071
* RHEL/CentOS 7 - Puppet 6 - [build/centos7-puppet6/Puppetfile](build/centos7-puppet6/Puppetfile)
7172
* RHEL/CentOS 7 - Puppet 7 - [build/centos7-puppet7/Puppetfile](build/centos7-puppet7/Puppetfile)
72-
* Ubuntu 16.04 - Puppet 6 - [build/ubuntu16-puppet6/Puppetfile](build/ubuntu16-puppet6/Puppetfile)
73-
* Ubuntu 16.04 - Puppet 7 - [build/ubuntu16-puppet7/Puppetfile](build/ubuntu16-puppet7/Puppetfile)
7473
* Ubuntu 18.04 - Puppet 6 - [build/ubuntu18-puppet6/Puppetfile](build/ubuntu18-puppet6/Puppetfile)
7574
* Ubuntu 18.04 - Puppet 7 - [build/ubuntu18-puppet7/Puppetfile](build/ubuntu18-puppet7/Puppetfile)
75+
* Ubuntu 20.04 - Puppet 6 - [build/ubuntu20-puppet6/Puppetfile](build/ubuntu20-puppet6/Puppetfile)
76+
* Ubuntu 20.04 - Puppet 7 - [build/ubuntu20-puppet7/Puppetfile](build/ubuntu20-puppet7/Puppetfile)
7677

7778
### Beginning with st2
7879

@@ -118,28 +119,16 @@ Hiera data bindings. A few notable parameters to take note of:
118119
**Notes**
119120
* RHEL 7 - The Red Hat subscription repo `'rhel-7-server-optional-rpms'`
120121
will need to be enabled prior to running this module.
121-
* :warning: Ubuntu 16.04 -
122-
The python3.6 package is a required dependency for the StackStorm `st2` package
123-
but that is not installable from any of the default Ubuntu 16.04 repositories.
124-
We recommend switching to Ubuntu 18.04 LTS (Bionic) as a base OS. Support for
125-
Ubuntu 16.04 will be removed with future StackStorm versions.
126-
Alternatively the Puppet will try to add python3.6 from the 3rd party 'deadsnakes' repository: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa.
127-
Only set to true, if you are aware of the support and security risks associated
128-
with using unofficial 3rd party PPA repository, and you understand that StackStorm
129-
does NOT provide ANY support for python3.6 packages on Ubuntu 16.04.
130-
The unsafe PPA `'ppa:deadsnakes/ppa'` https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
131-
can be enabled if you specify the `st2::python_enable_unsafe_repo: true` (default: `false`)
132122

133123
```puppet
134124
# CentOS/RHEL 7
135125
class { 'st2':
136126
python_version => '3.6',
137127
}
138128
139-
# Ubuntu 16.04 (unsafe deadsnakes PPA will be enabled because of boolean flag)
129+
# Ubuntu 18.04/20.04
140130
class { 'st2':
141131
python_version => 'python3.6',
142-
python_enable_unsafe_repo => true,
143132
}
144133
145134
contain st2::profile::fullinstall
@@ -224,7 +213,7 @@ The following backends are currently available:
224213

225214

226215
By default the `flat_file` backend is used. To change this you can configure it
227-
when instantiating the `::st2` class in a manifest file:
216+
when instantiating the `st2` class in a manifest file:
228217

229218
``` ruby
230219
class { 'st2':
@@ -244,7 +233,7 @@ found by looking at the backend class in the `manifests/st2/auth/` directory.
244233
These parameters map 1-for-1 to the configuration options defined in each
245234
backends GitHub page (links above). Backend configurations are passed in as a hash
246235
using the `auth_backend_config` option. This option can be changed when instantiating
247-
the `::st2` class in a manifest file:
236+
the `st2` class in a manifest file:
248237

249238
``` ruby
250239
class { 'st2':
@@ -445,8 +434,8 @@ $res = run_task('st2::key_get', $stackstorm_target,
445434

446435
### Supported platforms
447436

448-
* Ubuntu 16.04
449437
* Ubuntu 18.04
438+
* Ubuntu 20.04
450439
* RHEL/CentOS 7
451440

452441
### Supported Puppet versions
@@ -461,6 +450,12 @@ Support for Mistral has been dropped as of StackStorm `3.3.0`.
461450
As of version `1.8` this module no longer supports Mistral (and subsequently PostgreSQL)
462451
Neither Mistral nor Postgresql will be installed or managed by this module.
463452

453+
#### :warning: End-of-Support Notice - Ubuntu 16.04
454+
455+
Support for Ubuntu 16.04 has been dropped as of StackStorm `3.5.0`
456+
457+
As of version `2.3` this module no longer supports Ubuntu 16.04
458+
464459
#### :warning: End-of-Support Notice - CentOS 6
465460

466461
Support for CentOS 6 has been dropped as of StackStorm `3.3.0`.

0 commit comments

Comments
 (0)