Handling node joining docker swarm2019 Community Moderator ElectionHow is Docker different from a virtual machine?Should I use Vagrant or Docker for creating an isolated environment?How to remove old Docker containersCopying files from host to Docker containerdocker swarm throwing an error “swarm already part of swarm”Docker Swarm: Joining the node not workingDocker - Unable to join swarm as manager, able to join as workerDocker Swarm: deploy containers on Worker nodeJoin Docker swarm managerHow to join another physical server or VM as a node for a docker swarm machine?

Science-fiction short story where space navy wanted hospital ships and settlers had guns mounted everywhere

Official degrees of earth’s rotation per day

PTIJ: Who should pay for Uber rides: the child or the parent?

Could the Saturn V actually have launched astronauts around Venus?

Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?

Old race car problem/puzzle

How do anti-virus programs start at Windows boot?

Employee lack of ownership

What does it mean to make a bootable LiveUSB?

Pinhole Camera with Instant Film

Why doesn't the EU now just force the UK to choose between referendum and no-deal?

Welcoming 2019 Pi day: How to draw the letter π?

Why would a flight no longer considered airworthy be redirected like this?

An Accountant Seeks the Help of a Mathematician

Can elves maintain concentration in a trance?

Rejected in 4th interview round citing insufficient years of experience

How to explain that I do not want to visit a country due to personal safety concern?

Life insurance that covers only simultaneous/dual deaths

How to make healing in an exploration game interesting

Identifying the interval from A♭ to D♯

At what level can a dragon innately cast its spells?

Possible Leak In Concrete

Theorems like the Lovász Local Lemma?

Can the damage from a Talisman of Pure Good (or Ultimate Evil) be non-lethal?



Handling node joining docker swarm



2019 Community Moderator ElectionHow is Docker different from a virtual machine?Should I use Vagrant or Docker for creating an isolated environment?How to remove old Docker containersCopying files from host to Docker containerdocker swarm throwing an error “swarm already part of swarm”Docker Swarm: Joining the node not workingDocker - Unable to join swarm as manager, able to join as workerDocker Swarm: deploy containers on Worker nodeJoin Docker swarm managerHow to join another physical server or VM as a node for a docker swarm machine?










0















I was just thinking a way to ease the node-join functionality in docker swarm (maybe same can be applied to K8 and other)



Just need your input on this, this will help to remove the dependency of copying the long token with IP and ease the process.



Can we advertise the manager node using avahi or some other tool and give it a name, for example, swarmDemo, and then in the worker node using swarmDemo we can fetch the join token and manager IP which will help to add the node to the swarm.



Please suggest if you have done something similar or you have any other idea?










share|improve this question
























  • Can you provide examples of what you are trying to do? Thx.

    – Rico
    Mar 6 at 21:12











  • I am trying to create common bash script which will do all the stuffs internally. from Manager if I run ./cluster-mgr init clstr1 it will initialize the swarm and advertise the token and IP to other networks by the name clstr1 (using avahi or any other channel ) and in the worker node if I run the command './cluster-mgr join clstr1 it will fetch the token using browse option and internally runs the docker swarm join command. this is to ease the process.

    – stackjohnny
    Mar 7 at 5:02
















0















I was just thinking a way to ease the node-join functionality in docker swarm (maybe same can be applied to K8 and other)



Just need your input on this, this will help to remove the dependency of copying the long token with IP and ease the process.



Can we advertise the manager node using avahi or some other tool and give it a name, for example, swarmDemo, and then in the worker node using swarmDemo we can fetch the join token and manager IP which will help to add the node to the swarm.



Please suggest if you have done something similar or you have any other idea?










share|improve this question
























  • Can you provide examples of what you are trying to do? Thx.

    – Rico
    Mar 6 at 21:12











  • I am trying to create common bash script which will do all the stuffs internally. from Manager if I run ./cluster-mgr init clstr1 it will initialize the swarm and advertise the token and IP to other networks by the name clstr1 (using avahi or any other channel ) and in the worker node if I run the command './cluster-mgr join clstr1 it will fetch the token using browse option and internally runs the docker swarm join command. this is to ease the process.

    – stackjohnny
    Mar 7 at 5:02














0












0








0


1






I was just thinking a way to ease the node-join functionality in docker swarm (maybe same can be applied to K8 and other)



Just need your input on this, this will help to remove the dependency of copying the long token with IP and ease the process.



Can we advertise the manager node using avahi or some other tool and give it a name, for example, swarmDemo, and then in the worker node using swarmDemo we can fetch the join token and manager IP which will help to add the node to the swarm.



Please suggest if you have done something similar or you have any other idea?










share|improve this question
















I was just thinking a way to ease the node-join functionality in docker swarm (maybe same can be applied to K8 and other)



Just need your input on this, this will help to remove the dependency of copying the long token with IP and ease the process.



Can we advertise the manager node using avahi or some other tool and give it a name, for example, swarmDemo, and then in the worker node using swarmDemo we can fetch the join token and manager IP which will help to add the node to the swarm.



Please suggest if you have done something similar or you have any other idea?







docker kubernetes docker-swarm docker-swarm-mode avahi






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 6 at 21:12









Rico

28.8k95269




28.8k95269










asked Mar 6 at 18:38









stackjohnnystackjohnny

939




939












  • Can you provide examples of what you are trying to do? Thx.

    – Rico
    Mar 6 at 21:12











  • I am trying to create common bash script which will do all the stuffs internally. from Manager if I run ./cluster-mgr init clstr1 it will initialize the swarm and advertise the token and IP to other networks by the name clstr1 (using avahi or any other channel ) and in the worker node if I run the command './cluster-mgr join clstr1 it will fetch the token using browse option and internally runs the docker swarm join command. this is to ease the process.

    – stackjohnny
    Mar 7 at 5:02


















  • Can you provide examples of what you are trying to do? Thx.

    – Rico
    Mar 6 at 21:12











  • I am trying to create common bash script which will do all the stuffs internally. from Manager if I run ./cluster-mgr init clstr1 it will initialize the swarm and advertise the token and IP to other networks by the name clstr1 (using avahi or any other channel ) and in the worker node if I run the command './cluster-mgr join clstr1 it will fetch the token using browse option and internally runs the docker swarm join command. this is to ease the process.

    – stackjohnny
    Mar 7 at 5:02

















Can you provide examples of what you are trying to do? Thx.

– Rico
Mar 6 at 21:12





Can you provide examples of what you are trying to do? Thx.

– Rico
Mar 6 at 21:12













I am trying to create common bash script which will do all the stuffs internally. from Manager if I run ./cluster-mgr init clstr1 it will initialize the swarm and advertise the token and IP to other networks by the name clstr1 (using avahi or any other channel ) and in the worker node if I run the command './cluster-mgr join clstr1 it will fetch the token using browse option and internally runs the docker swarm join command. this is to ease the process.

– stackjohnny
Mar 7 at 5:02






I am trying to create common bash script which will do all the stuffs internally. from Manager if I run ./cluster-mgr init clstr1 it will initialize the swarm and advertise the token and IP to other networks by the name clstr1 (using avahi or any other channel ) and in the worker node if I run the command './cluster-mgr join clstr1 it will fetch the token using browse option and internally runs the docker swarm join command. this is to ease the process.

– stackjohnny
Mar 7 at 5:02













1 Answer
1






active

oldest

votes


















0














We can use avahi service to advertise ip, join token and then from the worker node can use that to join to the swarm :)






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030058%2fhandling-node-joining-docker-swarm%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    We can use avahi service to advertise ip, join token and then from the worker node can use that to join to the swarm :)






    share|improve this answer



























      0














      We can use avahi service to advertise ip, join token and then from the worker node can use that to join to the swarm :)






      share|improve this answer

























        0












        0








        0







        We can use avahi service to advertise ip, join token and then from the worker node can use that to join to the swarm :)






        share|improve this answer













        We can use avahi service to advertise ip, join token and then from the worker node can use that to join to the swarm :)







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 8 at 19:02









        stackjohnnystackjohnny

        939




        939





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030058%2fhandling-node-joining-docker-swarm%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

            Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

            Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved