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

[BUG] kitchen tests don't work #236

Closed
NutipA opened this issue Nov 3, 2019 · 7 comments
Closed

[BUG] kitchen tests don't work #236

NutipA opened this issue Nov 3, 2019 · 7 comments
Labels

Comments

@NutipA
Copy link

NutipA commented Nov 3, 2019


Bug details

Describe the bug

I've tried to test docker-formula using kitchen, but nothing from my runs was successful. I've tried not all platforms but around half of them. For my tries, there was a problem with installing the docker package, but the exact reasons were different in each try.

Steps to reproduce the bug

kitchen test

Expected behaviour

All tests for all platforms in .kitchen.yaml should pass

@NutipA NutipA added the bug label Nov 3, 2019
@NutipA NutipA changed the title [BUG] kitchen tests doesn't work [BUG] kitchen tests don't work Nov 3, 2019
@myii
Copy link
Member

myii commented Nov 3, 2019

@NutipA Thanks for the report. The tests are being run via. Travis so the instances listed there are all definitely working:

As a first step, please confirm if you can get these working or not locally at your end.

@NutipA
Copy link
Author

NutipA commented Nov 3, 2019

@myii thanks for the reply. Unfortunately, I don't know much about travis, but I'll try to inspect its output and rerun locally tests for those platforms.

@NutipA
Copy link
Author

NutipA commented Nov 5, 2019

@myii I've run locally all instances from your travis link. Results:

  • 172.2 default-debian-10-develop-py3 is not defined in kitchen.yml thus cannot be tested locally
  • 172.3 default-debian-9-2019-2-py3 test passed
  • 172.4 default-ubuntu-1804-2019-2-py3 test passed
  • 172.5 default-arch-base-latest-2019-2-py2 failed from docker-package-dependencies state
  • 172.6 default-debian-9-2018-3-py2 test passed
  • 172.7 default-ubuntu-1604-2017-7-py2 failed from docker-service state

As for me, right now I need to use docker-formula for centos. I've tested all centos items, none of them could finish kitchen converge stage. For example for default-centos-7-2019-2-py2 it failed from the docker-package state.

@myii
Copy link
Member

myii commented Nov 5, 2019

  • 172.2 default-debian-10-develop-py3 is not defined in kitchen.yml thus cannot be tested locally

@NutipA Yes, unfortunately the last Travis run was from before the last update to kitchen.yml, when we upgraded a number of the pre-salted images. It would have been better if I pointed you to my fork instead:

I.e. It will now be default-debian-10-master-py3 instead of default-debian-10-develop-py3, etc. You can look in the latest .travis.yml for the exact invocations.

As for me, right now I need to use docker-formula for centos. I've tested all centos items, none of them could finish kitchen converge stage. For example for default-centos-7-2019-2-py2 it failed from the docker-package state.

Kitchen-based testing was only introduced to this repo very recently, so there's work to be done. For example, all of the centos instances are currently failing:

I've gone through and "quick-fixed" centos-7 (probably needs further reviewing before it can be merged into this repo):

The issue is effort; if someone can make the time to go through cleaning things up, we can incorporate them to the formula. Ideally, we can get all of the instances passing in Travis, like we do for some of the formulas out there.

@NutipA
Copy link
Author

NutipA commented Nov 5, 2019

@myii yeah, I understand. After my tests there is one question bothering me: for both 172.5 and 172.7 my local runs failed, but on travis they passed.

@myii
Copy link
Member

myii commented Nov 5, 2019

@NutipA We have that from time to time, where things work locally and not in Travis and vice versa. Ultimately, there's going to be differences between the host environments for the containers. From a formula perspective, it's more important to have things passing in Travis, to ensure a consistent result for all. I prefer to push a lot of testing to my own GitHub forks, which then run in my own Travis account. Once they are passing there, they always work here.

noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 10, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - `docker.containers` sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 10, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - `docker.containers` sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 10, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - `docker.containers` sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 10, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - `docker.containers` sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 11, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 11, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 12, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 14, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 15, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 15, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 15, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 15, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 15, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
noelmcloughlin added a commit to noelmcloughlin/docker-formula that referenced this issue Nov 15, 2020
- align tom template formula
- fix bugs
- add Windows support
- Add saltstack dockercompose module support
- Get rid of confusing old legacy spagetti jinja conditionals
- Travis CI (package/archive) is passing
- Windows is passing
- Fixes/obsoletes: saltstack-formulas#252, saltstack-formulas#249, saltstack-formulas#243, saltstack-formulas#236, saltstack-formulas#234, saltstack-formulas#219, saltstack-formulas#202, saltstack-formulas#191
- Fixes/obsoletes: saltstack-formulas#190, saltstack-formulas#160, saltstack-formulas#95, saltstack-formulas#85, saltstack-formulas#74
- Includes saltstack-formulas#251 and saltstack-formulas#253
- Add Swarm support

BREAKING CHANGE: This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
@noelmcloughlin
Copy link
Member

Fixed in merged #256
However, Kitchen test is using Docker driver so salts docker_container and dockercompose states cannot be tested in Travis CI. To support those tests we may need vagrant driver (instead?).

saltstack-formulas-travis pushed a commit that referenced this issue Nov 18, 2020
# [1.0.0](v0.44.0...v1.0.0) (2020-11-18)

### Bug Fixes

* **cent7:** install yum-plugin-versionlock too ([3b2e237](3b2e237))
* **clean:** do not remove python package ([e7ee880](e7ee880))
* **pillar.example:** fix `yamllint` violation [skip ci] ([31087af](31087af)), closes [#250](#250)
* **state:** corrected remove state ([e178243](e178243))

### Code Refactoring

* **rewrite:** modernize formula and fresh start ([1e48667](1e48667)), closes [#252](#252) [#249](#249) [#243](#243) [#236](#236) [#234](#234) [#219](#219) [#202](#202) [#191](#191) [#190](#190) [#160](#160) [#95](#95) [#85](#85) [#74](#74) [#251](#251) [#253](#253)

### Continuous Integration

* **kitchen:** use `saltimages` Docker Hub where available [skip ci] ([1755f38](1755f38))
* **pre-commit:** add to formula [skip ci] ([d04e24a](d04e24a))
* **pre-commit:** enable/disable `rstcheck` as relevant [skip ci] ([8454e4a](8454e4a))
* **pre-commit:** finalise `rstcheck` configuration [skip ci] ([87c737c](87c737c))
* **travis:** add notifications => zulip [skip ci] ([6222d60](6222d60))

### Documentation

* **macos:** updated pillar.example & macos hash ([fc011b3](fc011b3))
* **readme:** fix macos clean state ([fca7fea](fca7fea))

### BREAKING CHANGES

* **rewrite:** This version is not backwards compatible. Update
 your states and pillar data to align with new formula.

 - MacOS was not tested in this PR but hopefully no regression.
 - docker.containers: sls was simplified (raise PR if regression)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants