4359 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
27 results tagged auto x
  • thumbnail
    GitHub - containrrr/watchtower: A process for automating Docker container base image updates.

    un container qui va update les autres containers si une image plus récente a été trouvée (stop, rm, pull, recreate)
    Pratique sur serveur perso pour les choses qui tournent en latest
    Implémentation en Go, il y a le pendant python ici : https://github.com/pyouroboros/ouroboros

    April 11, 2020 at 11:32:56 AM GMT+2 - permalink - archive.org - https://github.com/containrrr/watchtower
    docker update auto go python
  • Goploader
    June 5, 2018 at 1:20:36 PM GMT+2 - permalink - archive.org - https://docs.gpldr.in/
    file share sharing auto
  • Note: aws auto scaling

    spoiler alert: auto scaling is far to be magical

    as usual with aws, everything is an object and for autoscaling u got several objects and several links between them
    First you define a launch configuration : what type of machine you want to laucnh
    Then an autoscaling group : it will use the launch configuration to create new EC2
    In this autoscaling group, you have to define auto scaling policies ie what to do (remove or add x instances) and link them to a cloudwatch alert (cpu is high or network or whatever cloudwatch monitors)
    the autoscaling group can also be linked to an ELB so when EC2 are added/removed, they also are registred/deregistered from ELB

    March 13, 2017 at 3:49:45 PM GMT+1 * - permalink - archive.org - https://links.infomee.fr/shaare/JIGagw
    aws scale scaling auto
  • thumbnail
    Scaling Based on Amazon SQS - Auto Scaling

    Beanstalk ne permet pas de définir un trigger basé sur le nombre d'éléments dans la queue SQS pour l'auto scaling des environements de type worker

    Pourtant c'est possible mais il y a un peu de boulot :

    • créer des scaling policies qui vont ajouter ou enlever des instances
    • créer des alarmes cloudwatch qui vont se déclencher par rapport au nb d'éléments dans la queue et appeler les scaling policies..

    http://docs.aws.amazon.com/autoscaling/latest/userguide/as-using-sqs-queue.html
    https://forums.aws.amazon.com/thread.jspa?messageID=722589

    On peut surement intégrer ça à beanstalk avec les .ebextensions (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/ebextensions.html)

    En plus d'être un peu complexe et pas vraiment intégrer à beanstalk, ça n'a pas l'air très réactif, cet article en parle et donne une solution :
    Rapid Auto Scaling with Amazon SQS : https://aws.amazon.com/blogs/aws/auto-scaling-with-sqs/

    February 28, 2017 at 11:16:08 AM GMT+1 - permalink - archive.org - http://docs.aws.amazon.com/autoscaling/latest/userguide/as-using-sqs-queue.html
    aws sqs auto scaling beanstalk
  • selenium-webdriver | RubyGems.org | your community gem host

    https://github.com/mozilla/geckodriver/releases

    November 30, 2016 at 11:11:57 AM GMT+1 - permalink - archive.org - https://rubygems.org/gems/selenium-webdriver
    selenium test auto
  • Un nouveau logiciel libre : Lufi - LinuxFr.org
    October 7, 2015 at 10:33:09 AM GMT+2 - permalink - archive.org - http://linuxfr.org/news/un-nouveau-logiciel-libre-lufi
    auto drop file fichier framasoft
  • thumbnail
    p2p-hacker-fr : « premier état de l'art sur la décentralisation » - LinuxFr.org
    January 1, 2015 at 2:59:52 PM GMT+1 - permalink - archive.org - http://linuxfr.org/news/p2p-hacker-fr-premier-etat-de-l-art-sur-la-decentralisation
    decentralisation auto
  • thumbnail
    Mémo autohébergement - Phyks.me
    January 1, 2015 at 2:48:03 PM GMT+1 - permalink - archive.org - http://phyks.me/autohebergement.html
    auto
  • thumbnail
    Dégooglisons Internet
    October 17, 2014 at 1:31:16 PM GMT+2 - permalink - archive.org - http://degooglisons-internet.org/
    frama google auto hebergement alternativ
  • thumbnail
    https://github.com/ClockworkNet/graphite-dashgen

    dash auto via collectd dashgen

    via arnaudb

    June 24, 2014 at 6:42:04 PM GMT+2 - permalink - archive.org - https://github.com/ClockworkNet/graphite-dashgen
    graphite auto dashboard
  • thumbnail
    Ademcan's snippets

    Pour le moment je n'en ai jamais eu besoin mais on sait jamais !
    En fait les trucs que je code souvent, je les retrouve assez facilement et pour les autres une recherche sur le oueb me donne souvent la réponse très vite

    January 20, 2014 at 12:45:22 PM GMT+1 - permalink - archive.org - http://ademcan.net/canSnippet/
    snippet auto
  • thumbnail
    Alteroot | Mise en place d'un serveur mail: Postfix, Dspam et Dovecot

    Tuto de Skunnyk à tester

    November 6, 2013 at 1:10:44 PM GMT+1 - permalink - archive.org - http://blog.alteroot.org/articles/2013-10-07/setup-postfix-dspam-dovecot.html
    mail auto
  • thumbnail
    A+ sous l’bus Google – Partie 2 | Blogcopter

    (Encore) un tuto pour héberger ses mails

    November 5, 2013 at 3:34:52 PM GMT+1 - permalink - archive.org - https://wtf.roflcopter.fr/blog/2013/08/31/a-sous-lbus-google-partie-2/
    mail auto
  • thumbnail
    Créer un module xchat (python)

    Objectif : tapper /obug <number> dans xchat m'ouvre un onglet dans ff vers l'url du bug

    1) activer le module python dans les options
    2) créer un fichier .py dans /home/arnaud/.xchat2/
    3)
    module_name = "openbuginredmine"
    module_version
    = "1.0"
    __module_description__ = "module to open bug in redmine"

    import os
    import xchat

    def obug(word, word_eol, userdata):
    if len(word) < 2:
    print "Second arg must be the bug number!"
    else:

    xchat.command("NOTICE @%s %s" % (xchat.get_info("channel"), word_eol[1]))

        os.system("firefox https://monurlredmine.com/issues/"+word[1])
    return xchat.EAT_ALL 

    xchat.hook_command("obug", obug, help="/obug <number> open bug in ff")

    Et voilà, plus qu'à reboot le xchat, ou bien /load nomdufichier.py

    ça peut etre appliqué à plein de trucs : pouvoir lancer ce qu'on veut depuis xchat

    November 5, 2013 at 3:07:31 PM GMT+1 - permalink - archive.org - http://xchat.org/docs/xchatpython.html#head-cf24838660500eceef2367deb88df5963483c852
    redmine xchat module auto python
  • thumbnail
    Cozy, a personal cloud you can hack, host and delete

    Un soft de plus pour autoheberger ses services facilement

    October 22, 2013 at 5:33:01 PM GMT+2 - permalink - archive.org - http://cozy.io/
    auto
  • thumbnail
    Pydio, formerly AjaXplorer

    Un file explorer en web qui permet de share (anciennement ajaxplorer)
    Pas de client lourd comme dropbox ou owncloud par contre à premiere vue

    October 22, 2013 at 5:05:59 PM GMT+2 - permalink - archive.org - http://pyd.io/
    auto cloud owncloud
  • thumbnail
    Héberger son courriel - LinuxFr.org
    October 18, 2013 at 12:30:26 PM GMT+2 - permalink - archive.org - https://linuxfr.org/news/heberger-son-courriel
    mail auto
  • thumbnail
    Installez votre synchronisateur de contacts chez vous avec Baikal | IdleBlog

    Tuto pour installer et utiliser baikal par idleman

    July 23, 2013 at 6:04:09 PM GMT+2 - permalink - archive.org - http://blog.idleman.fr/?p=2337
    baikal auto tuto
  • thumbnail
    BitTorrent Labs

    synchro de fichiers à la dropbox mais décentralisé

    July 21, 2013 at 7:15:15 PM GMT+2 - permalink - archive.org - http://labs.bittorrent.com/experiments/sync.html
    auto
  • thumbnail
    CalDAV + CardDAV lightweight server: Baïkal

    à tester, sqlite

    July 21, 2013 at 7:13:48 PM GMT+2 - permalink - archive.org - http://baikal-server.com/
    auto
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation