Come posso distribuire aggiornamenti e riavvii del sistema operativo rolling con Puppet o MCollective?


8

Sto cercando il modo migliore per eseguire regolarmente aggiornamenti continui per la mia infrastruttura.

In genere, ciò implica farlo su ciascun host, uno alla volta:

sudo yum update -y && sudo reboot

Ma sto colpendo i limiti di ciò che è scalabile.

Voglio riavviare solo un nodo alla volta all'interno di ciascuno dei miei ruoli, in modo tale, per esempio, di non rimuovere tutti i miei bilanciatori di carico o membri del cluster DB contemporaneamente.

Idealmente, vorrei fare qualcosa del tipo:

for role in $(< roles_list.txt) ; do
    mco package update_all_and_reboot \
        --batch 1 --batch-sleep 90 \
        -C $role -F environment=test
done

Ma questo non sembra esistere. Non sono sicuro che l'utilizzo dell'agente "shell" sia l'approccio migliore?

mco shell run 'yum update -y && reboot' \
    --batch 1 --batch-sleep 90

Sto solo guardando lo strumento sbagliato per questo lavoro, però? Esiste qualcosa di meglio per la gestione di questo tipo di riavvi a rotazione, ma che posso in qualche modo collegarmi con i miei ruoli assegnati a Puppet, in modo che io possa stare tranquillo che non sto eliminando nulla di importante tutto in una volta, ma che posso ancora fare alcuni aggiornamenti paralleli e riavvii?


Perché il riavvio ( unix.stackexchange.com/a/28162/65367 )? Deve essere un burattino o sono ammessi anche altri sollutions?
030,

Perché ultimamente ci sono frequenti aggiornamenti del kernel Linux, che richiedono un riavvio.
pioto,

Ok. L'ho provato e funziona sul mio sistema. Potresti controllarlo anche sul tuo sistema?
030

Risposte:


2

Configurazione

Deploy

cd /usr/share/ruby/vendor_ruby/mcollective/application
wget https://raw.githubusercontent.com/arnobroekhof/mcollective-plugin-power/master/application/power.rb

e

cd /usr/libexec/mcollective/mcollective/agent
wget https://raw.githubusercontent.com/arnobroekhof/mcollective-plugin-power/master/agent/power.ddl
wget https://raw.githubusercontent.com/arnobroekhof/mcollective-plugin-power/master/agent/power.rb

su entrambi gli host, ovvero test-server1e test-server2.

Servizi

Riavvia mcollective su entrambi i servizi:

[vagrant@test-server1 ~]# sudo service mcollective restart

e

[vagrant@test-server2 ~]# sudo service mcollective restart

comandi

Esegui i seguenti comandi sul nodo del server mcollective:

L'host test-server2sta ascoltando:

[vagrant@test-server1 ~]$ mco ping
test-server2                             time=25.32 ms
test-server1                             time=62.51 ms


---- ping statistics ----
2 replies max: 62.51 min: 25.32 avg: 43.91

Riavvia il test-server2:

[vagrant@test-server1 ~]$ mco power reboot -I test-server2

 * [ ============================================================> ] 1 / 1

test-server2                             Reboot initiated

Finished processing 1 / 1 hosts in 123.94 ms

Il test-server2riavvio è:

[vagrant@test-server1 ~]$ mco ping
test-server1                             time=13.87 ms


---- ping statistics ----
1 replies max: 13.87 min: 13.87 avg: 13.87

ed è stato riavviato:

[vagrant@test-server1 ~]$ mco ping
test-server1                             time=22.88 ms
test-server2                             time=54.27 ms


---- ping statistics ----
2 replies max: 54.27 min: 22.88 avg: 38.57

Si noti che è possibile arrestare anche un host:

[vagrant@test-server1 ~]$ mco power shutdown -I test-server2

 * [ ============================================================> ] 1 / 1

test-server2                             Shutdown initiated

Finished processing 1 / 1 hosts in 213.18 ms

Codice originale

/usr/libexec/mcollective/mcollective/agent/power.rb

module MCollective
  module Agent
    class Power<RPC::Agent

      action "shutdown" do
  out = ""
  run("/sbin/shutdown -h now", :stdout => out, :chomp => true )
  reply[:output] = "Shutdown initiated"
      end

      action "reboot" do
  out = ""
  run("/sbin/shutdown -r now", :stdout => out, :chomp => true )
  reply[:output] = "Reboot initiated"
      end

    end
  end
end

# vi:tabstop=2:expandtab:ai:filetype=ruby

/usr/libexec/mcollective/mcollective/agent/power.ddl

metadata    :name        => "power",
            :description => "An agent that can shutdown or reboot them system",
            :author      => "A.Broekhof",
            :license     => "Apache 2",
            :version     => "2.1",
            :url         => "http://github.com/arnobroekhof/mcollective-plugins/wiki",
            :timeout     => 5

action "reboot", :description => "Reboots the system" do
    display :always

    output :output,
           :description => "Reboot the system",
           :display_as => "Power"
end

action "shutdown", :description => "Shutdown the system" do
    display :always

    output :output,
           :description => "Shutdown the system",
           :display_as  => "Power"
end

/usr/share/ruby/vendor_ruby/mcollective/application/power.rb

class MCollective::Application::Power<MCollective::Application
  description "Linux Power broker"
  usage "power [reboot|shutdown]"

  def post_option_parser(configuration)
    if ARGV.size == 1
      configuration[:command] = ARGV.shift
    end
  end

  def validate_configuration(configuration)
    raise "Command should be one of reboot or shutdown" unless configuration[:command] =~ /^shutdown|reboot$/

  end

  def main
    mc = rpcclient("power")

    mc.discover :verbose => true
    mc.send(configuration[:command]).each do |node|
      case configuration[:command]
      when "reboot"
        printf("%-40s %s\n", node[:sender], node[:data][:output])
      when "shutdown"
        printf("%-40s %s\n", node[:sender], node[:data][:output])
      end 
    end

    printrpcstats

    mc.disconnect

  end

end

# vi:tabstop=2:expandtab:ai

Codice modificato

/usr/libexec/mcollective/mcollective/agent/power.ddl

metadata    :name        => "power",
            :description => "An agent that can shutdown or reboot them system",
            :author      => "A.Broekhof",
            :license     => "Apache 2",
            :version     => "2.1",
            :url         => "http://github.com/arnobroekhof/mcollective-plugins/wiki",
            :timeout     => 5

action "update-and-reboot", :description => "Reboots the system" do
    display :always

    output :output,
           :description => "Reboot the system",
           :display_as => "Power"
end

/usr/libexec/mcollective/mcollective/agent/power.rb

module MCollective
  module Agent
    class Power<RPC::Agent    
      action "update-and-reboot" do
        out = ""
        run("yum update -y && /sbin/shutdown -r now", :stdout => out, :chomp => true )
        reply[:output] = "Reboot initiated"
      end
    end
  end
end

# vi:tabstop=2:expandtab:ai:filetype=ruby

Comando

[vagrant@test-server1 ~]$ mco power update-and-reboot -I test-server2

 * [ ============================================================> ] 1 / 1


Finished processing 1 / 1 hosts in 1001.22 ms

Un sacco di buoni dettagli, grazie. Stavo cercando un singolo comando in grado di eseguire l'aggiornamento e il riavvio uno alla volta, ad esempio mco power update-and-reboot -I test-server. mco avrebbe quindi applicato l'aggiornamento e il riavvio a un server, aspettando che tornasse, quindi si applicherebbe al secondo.
Benjamin Goodacre,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.