-
Notifications
You must be signed in to change notification settings - Fork 67
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
allow setting additional marathon configs using a generic list #28
Conversation
Maybe you should delete the other options too and only have configuration done this way. |
👍 @lhoss willing to do some refactoring ? |
maybe, but things to be careful about:
After thinking+deciding on these points, I could work on that, but I'll prefer a sep PR |
5666a3b
to
b4bc0dd
Compare
@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 }} |
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.
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 }}"
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.
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!
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.
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) !?
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.
OK I changed, tested and pushed the change!
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.
indeed this playbook requires some refactoring
👏 👍 thank you for contribution |
Thanks @lhoss |
as proposed in #27
Example configs (for which it seems overkill to support settings these in a 'hardcoded way')
Ref: Config example taken from: d2iq-archive/marathon#616 (comment)