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

allow setting additional marathon configs using a generic list #28

Merged

Conversation

lhoss
Copy link
Contributor

@lhoss lhoss commented Sep 6, 2016

as proposed in #27

Example configs (for which it seems overkill to support settings these in a 'hardcoded way')

  marathon_additional_configs:
   - name: task_lost_expunge_interval
     value: 900000
   - name: task_lost_expunge_gc
     value: 3600000

Ref: Config example taken from: d2iq-archive/marathon#616 (comment)

@tsaridas
Copy link

tsaridas commented Sep 6, 2016

Maybe you should delete the other options too and only have configuration done this way.

@ernestas-poskus
Copy link
Member

Maybe you should delete the other options too and only have configuration done this way.

👍

@lhoss willing to do some refactoring ?

@lhoss
Copy link
Contributor Author

lhoss commented Sep 6, 2016

@lhoss willing to do some refactoring ?

maybe, but things to be careful about:

  • staying (downward)compatible (so we should keep the existing vars like marathon_port)
  • the idea of the additional_options list was (more) for optional configs.. respectively more exotic configs, and maybe it's better to keep the more standard configs explicit (?)
    • so in case we really do this, we should rename the var (remove the additional_)
  • Ensure proper handling of removed configs (where the corresponding /etc/marathon/$config-name file should rather be deleted, instead of set empty !)

After thinking+deciding on these points, I could work on that, but I'll prefer a sep PR

@lhoss lhoss force-pushed the marathon_additional_configs branch from 5666a3b to b4bc0dd Compare September 6, 2016 16:18
@lhoss
Copy link
Contributor Author

lhoss commented Sep 6, 2016

@ernestas-poskus conflict solved

@@ -44,6 +44,12 @@
- name: Set --http-port option
template: src=http_port.j2 dest=/etc/marathon/conf/http_port

- name: Set additional options
template: src=custom_option.j2 dest=/etc/marathon/conf/{{ item.name }}
Copy link
Member

@ernestas-poskus ernestas-poskus Sep 6, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry for late response but this looks a bit magic especially that custom_option.j2 has {{ item.value }} in it.

how about using copy module

      copy:
        content: "{{ item.value }}"
        dest: "/etc/marathon/conf/{{ item.name }}"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That was my first idea, but I used the template to be consistent with the existing role tasks ;)

ok, I will change to use content then!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ps2: I also agree we should more use the 100% json notation (like in your example above, with 1 line per attribute)
Should we do a big refactoring (after merging all acceptable PRs) !?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK I changed, tested and pushed the change!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

indeed this playbook requires some refactoring

@ernestas-poskus
Copy link
Member

👏 👍 thank you for contribution

@ernestas-poskus ernestas-poskus merged commit 575d42c into AnsibleShipyard:master Sep 6, 2016
@tsaridas
Copy link

tsaridas commented Sep 7, 2016

Thanks @lhoss

@lhoss lhoss mentioned this pull request Sep 7, 2016
@lhoss lhoss deleted the marathon_additional_configs branch February 22, 2018 11:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants