saltstack-formulas / template-formula

SaltStack formula template filled with dummy content
http://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html
Other
119 stars 85 forks source link

[discussion] retry internet-depending states #145

Open noelmcloughlin opened 5 years ago

noelmcloughlin commented 5 years ago

For internet dependent states we could add retrys support per https://docs.saltstack.com/en/latest/ref/states/requisites.html#retrying-states

This could be a macro (See #134)

Example: https://github.com/saltstack-formulas/packages-formula/pull/55

myii commented 5 years ago

Something to consider: https://github.com/saltstack-formulas/packages-formula/pull/55#issuecomment-505413561.

noelmcloughlin commented 5 years ago

This proposal emerged at https://github.com/saltstack-formulas/packages-formula/pull/55

Declaration

  retry_option:
    # https://docs.saltstack.com/en/latest/ref/states/requisites.html#retrying-states
    attempts: 5
    until: True
    interval: 30
    splay: 20

Usage:

    - retry: {{ packages.retry_option|json }}