-
-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop U16 and add U20 support #298
Changes from all commits
9435ef4
c742b49
d14ff4b
3328cd5
30ae235
cdf4edd
fea314a
e459e2d
8de0474
5be261c
07f8fe8
f40f64a
0477531
1a7770e
1f57b18
f07c594
13891cd
9845575
a6cb718
0d888d8
df3e85c
ee32017
44297bc
c3db3c5
857bf7f
3665342
27b93c3
cce9bc2
365027a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
# MongoDB default version | ||
mongodb_version: "4.0" | ||
mongodb_version: "{% if ansible_facts.os_family == 'Debian' and ansible_facts.distribution_major_version == '20' %}4.4{% else %}4.0{% endif %}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To decide between 4.0 and 4.4 mongo version, wouldn't it be a better idea to use st2 version > 3.4 rather than only on Ubuntu 20? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @rush-skills Stackstorm 3.5 still uses mongo 4.0 for all OSes EXCEPT for Ubuntu 20 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Use the following URL to find the key: https://www.mongodb.org/static/pgp/server-{{ mongodb_major_minor_version }}.asc | ||
mongodb_apt_keys: | ||
"3.2": "42F3E95A2C4F08279C4960ADD68FA50FEA312927" | ||
"3.4": "0C49F3730359A14518585931BC711F9BA15703C6" | ||
"3.6": "2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5" | ||
"4.0": "9DA31620334BD75D9DCB49F368818C72E52529D4" | ||
"4.4": "20691EEC35216C63CAF66CE1656408E390CFB1F5" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
galaxy_info: | ||
description: Install redis as Stackstorm coordination backend | ||
author: winem | ||
company: StackStorm | ||
license: Apache 2.0 | ||
min_ansible_version: 2.5 | ||
platforms: | ||
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
- 8 | ||
galaxy_tags: | ||
- system | ||
- stackstorm | ||
- st2 | ||
- automation | ||
- remediation | ||
- devops | ||
dependencies: | ||
- role: StackStorm.epel | ||
when: ansible_facts.os_family == 'RedHat' |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# List of python variables | ||
--- | ||
passlib: python-passlib |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# List of python3 variables | ||
--- | ||
passlib: python3-passlib |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
galaxy_info: | ||
description: Run StackStorm smoketests to verify the setup | ||
author: armab | ||
company: StackStorm | ||
license: Apache 2.0 | ||
min_ansible_version: 2.5 | ||
platforms: | ||
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
- 8 | ||
galaxy_tags: | ||
- system | ||
- stackstorm | ||
- st2 | ||
- automation | ||
- remediation | ||
- devops | ||
dependencies: | ||
- role: StackStorm.epel | ||
when: ansible_facts.os_family == 'RedHat' | ||
- role: StackStorm.st2repo |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ galaxy_info: | |
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- xenial | ||
- focal | ||
- name: EL | ||
versions: | ||
- 7 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to remove ubuntu-20 from here. We can't run it as a stable run yet until 3.5 is released.
So we need to do the changes for ansible-st2 in 2 stages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we'll just have to wait for a release to happen before merging this PR.
Otherwise, someone using the fresh Ansible installer will have the same issues with U16/U20.