Как развернуть обновление ОС и перезагрузить ее с помощью Puppet или MCollective?


8

Я ищу лучший способ регулярно обновлять свою инфраструктуру.

Как правило, это включает в себя выполнение этого на каждом хосте, по одному:

sudo yum update -y && sudo reboot

Но я достигаю пределов того, чтобы быть масштабируемым.

Я хочу перезагружать только один узел за раз в каждой из моих ролей, чтобы, скажем, я не снимал все свои балансировщики нагрузки или элементы кластера БД одновременно.

В идеале я бы хотел сделать что-то вроде:

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

Но этого, похоже, не существует. Я не уверен, что использование агента-оболочки является лучшим подходом, либо?

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

Я просто смотрю на не тот инструмент для этой работы? Есть ли что-то лучшее для управления подобными повторяющимися перезагрузками, но что я могу каким-то образом связать себя с назначенными мне кукольными ролями, чтобы мне было удобно, если я не убираю ничего важного сразу, но я все еще могу делать параллельные обновления и перезагрузки?


Почему перезагрузка ( unix.stackexchange.com/a/28162/65367 )? Это должно быть марионеткой или разрешены другие растворы?
030

Потому что в последнее время часто происходят обновления ядра Linux, которые требуют перезагрузки.
фото

Хорошо. Я проверил это, и он работает в моей системе. Не могли бы вы проверить это и в вашей системе?
030

Ответы:


2

конфигурация

Развертывание

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

а также

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

на обоих хостах, т.е. test-server1и test-server2.

Сервисы

Перезапустите mcollective на обеих службах:

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

а также

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

команды

Выполните следующие команды на узле сервера mcollective:

Хозяин test-server2слушает:

[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

Перезагрузка 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

test-server2Перезагружается:

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


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

и это было перезагружено:

[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

Обратите внимание, что также возможно отключить хост:

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

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

test-server2                             Shutdown initiated

Finished processing 1 / 1 hosts in 213.18 ms

Оригинальный код

/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

Модифицированный код

/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

команда

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

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


Finished processing 1 / 1 hosts in 1001.22 ms

Много хороших деталей, спасибо. Я искал одну команду, которая могла бы выполнять обновление и перезагрузку по одному, например, mco power update-and-reboot -I test-server. Затем mco применяет обновление и перезагрузку к одному серверу, ждет, пока он вернется, а затем применяется ко второму.
Бенджамин
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.