Skip to content
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

feat(formula): add lvm-formula #42

Merged
merged 1 commit into from
Sep 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pillar.example
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ ssf:
- libvirt
- locale
- logrotate
- lvm
- mysql
- nginx
- openssh
Expand Down
3 changes: 2 additions & 1 deletion ssf/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ssf_node_anchors:
# `git describe --abbrev=0 --tags`
# yamllint disable rule:line-length
title: 'feat(semantic-release): implement for this formula'
body: '* Checked using https://github.com/myii/ssf-formula/pull/43'
body: '* Checked using https://github.com/myii/ssf-formula/pull/42'
# yamllint enable rule:line-length
github:
owner: saltstack-formulas
Expand Down Expand Up @@ -263,6 +263,7 @@ ssf:
<<: *isk_suite_default
name: fedora
logrotate: *formula_default
lvm: *formula_default
mysql: *formula_default
nginx: *formula_default
openssh: *formula_default
Expand Down
1 change: 1 addition & 0 deletions ssf/files/tofs_template-formula/docs/CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ These formulas are already compatible with semantic-release:
* `libvirt-formula <https://github.com/saltstack-formulas/libvirt-formula>`_
* `locale-formula <https://github.com/saltstack-formulas/locale-formula>`_
* `logrotate-formula <https://github.com/saltstack-formulas/logrotate-formula>`_
* `lvm-formula <https://github.com/saltstack-formulas/lvm-formula>`_
* `mysql-formula <https://github.com/saltstack-formulas/mysql-formula>`_
* `nginx-formula <https://github.com/saltstack-formulas/nginx-formula>`_
* `openssh-formula <https://github.com/saltstack-formulas/openssh-formula>`_
Expand Down
37 changes: 37 additions & 0 deletions ssf/formulas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,43 @@ ssf:
- .
- .jobs
semrel_files: *semrel_files_default
lvm:
context:
git:
github:
repo: lvm-formula
inspec_suites_kitchen:
0:
inspec_yml:
summary: >-
Verify that the lvm formula is setup and configured correctly
provisioner:
pillars_from_files:
- .sls: test/salt/pillar/pillar.example
state_top:
- '*':
- .clean
- .
platforms_matrix:
# Note, the commented lines are the only ones that didn't work
# Everything else working, even if lines have been removed
# Keeping hold of this "working out" for future reference
# One `#` where working but not using, two `# #` for not working at all
# [os , os_ver, salt_ver, py_ver, inspec_suite]
- [debian , 10 , develop, 3, default]
# - [amazonlinux , 2 , develop, 2, default]
# # - [arch-base , latest, develop, 2, default]
- [ubuntu , 18.04, 2019.2, 3, default]
- [fedora , 30 , 2019.2, 3, default]
# - [amazonlinux , 2 , 2019.2, 2, default]
# # - [arch-base , latest, 2019.2, 2, default]
- [centos , 7 , 2018.3, 2, default]
- [opensuse/leap, 15 , 2018.3, 2, default]
# # - [arch-base , latest, 2018.3, 2, default]
# - [centos , 6 , 2017.7, 2, default]
- [amazonlinux , 2 , 2017.7, 2, default]
# # - [arch-base , latest, 2017.7, 2, default]
semrel_files: *semrel_files_default
mysql:
context:
git:
Expand Down