#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright: (c) 2024, Luca Bilke <luca@bil.ke> # MIT License (see LICENSE) # TODO: write ansible sections DOCUMENTATION = r""" """ EXAMPLES = r""" """ RETURN = r""" """ from __future__ import annotations # pyright: ignore[reportGeneralTypeIssues] from ansible_collections.snailed.ez_compose.plugins.module_utils.common import ( State, run_label, update_service, ) from typing import Any def helper(state: State) -> State: service_name = state.module.params["name"] project_name = state.module.params["project_name"] port = state.module.params.get("port") proxy_type = state.module.params.get("proxy_type", "http") service_name = state.module.params.get( "service_name", f"{project_name}_{service_name}_{proxy_type}", ) prefix = f"traefik.{proxy_type}.services.{service_name}" labels: dict[str, Any] = {} if port: labels[f"{prefix}.loadbalancer.server.port"] = str(port) update = { "labels": labels, } return update_service(state, update) def main(): extra_args = { "proxy_type": {"type": "str"}, "service_name": {"type": "string"}, "port": {"type": "int"}, } run_label(extra_args, helper) if __name__ == "__main__": main()