Class: Mrsk::Cli::App
Instance Method Summary collapse
- #boot ⇒ Object
- #containers ⇒ Object
- #details ⇒ Object
- #exec(cmd) ⇒ Object
- #images ⇒ Object
- #logs ⇒ Object
- #remove ⇒ Object
- #remove_container(version) ⇒ Object
- #remove_containers ⇒ Object
- #remove_images ⇒ Object
- #start ⇒ Object
- #stop ⇒ Object
- #version ⇒ Object
Methods inherited from Base
Constructor Details
This class inherits a constructor from Mrsk::Cli::Base
Instance Method Details
#boot ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/mrsk/cli/app.rb', line 3 def boot with_lock do say "Get most recent version available as an image...", :magenta unless [:version] using_version(version_or_latest) do |version| say "Start container with version #{version} using a #{MRSK.config.readiness_delay}s readiness delay (or reboot if already running)...", :magenta cli = self on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| execute *MRSK.auditor(role: role).record("Booted app version #{version}"), verbosity: :debug begin if capture_with_info(*MRSK.app(role: role).container_id_for_version(version)).present? tmp_version = "#{version}_#{SecureRandom.hex(8)}" info "Renaming container #{version} to #{tmp_version} as already deployed on #{host}" execute *MRSK.auditor(role: role).record("Renaming container #{version} to #{tmp_version}"), verbosity: :debug execute *MRSK.app(role: role).rename_container(version: version, new_version: tmp_version) end old_version = capture_with_info(*MRSK.app(role: role).current_running_version).strip execute *MRSK.app(role: role).run sleep MRSK.config.readiness_delay execute *MRSK.app(role: role).stop(version: old_version), raise_on_non_zero_exit: false if old_version.present? end end end end end end |
#containers ⇒ Object
123 124 125 |
# File 'lib/mrsk/cli/app.rb', line 123 def containers on(MRSK.hosts) { |host| puts_by_host host, capture_with_info(*MRSK.app.list_containers) } end |
#details ⇒ Object
66 67 68 69 70 71 72 73 74 |
# File 'lib/mrsk/cli/app.rb', line 66 def details on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| puts_by_host host, capture_with_info(*MRSK.app(role: role).info) end end end |
#exec(cmd) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/mrsk/cli/app.rb', line 79 def exec(cmd) case when [:interactive] && [:reuse] say "Get current version of running container...", :magenta unless [:version] using_version([:version] || current_running_version) do |version| say "Launching interactive command with version #{version} via SSH from existing container on #{MRSK.primary_host}...", :magenta run_locally { exec MRSK.app(role: "web").execute_in_existing_container_over_ssh(cmd, host: MRSK.primary_host) } end when [:interactive] say "Get most recent version available as an image...", :magenta unless [:version] using_version(version_or_latest) do |version| say "Launching interactive command with version #{version} via SSH from new container on #{MRSK.primary_host}...", :magenta run_locally { exec MRSK.app.execute_in_new_container_over_ssh(cmd, host: MRSK.primary_host) } end when [:reuse] say "Get current version of running container...", :magenta unless [:version] using_version([:version] || current_running_version) do |version| say "Launching command with version #{version} from existing container...", :magenta on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| execute *MRSK.auditor(role: role).record("Executed cmd '#{cmd}' on app version #{version}"), verbosity: :debug puts_by_host host, capture_with_info(*MRSK.app(role: role).execute_in_existing_container(cmd)) end end end else say "Get most recent version available as an image...", :magenta unless [:version] using_version(version_or_latest) do |version| say "Launching command with version #{version} from new container...", :magenta on(MRSK.hosts) do |host| execute *MRSK.auditor.record("Executed cmd '#{cmd}' on app version #{version}"), verbosity: :debug puts_by_host host, capture_with_info(*MRSK.app.execute_in_new_container(cmd)) end end end end |
#images ⇒ Object
128 129 130 |
# File 'lib/mrsk/cli/app.rb', line 128 def images on(MRSK.hosts) { |host| puts_by_host host, capture_with_info(*MRSK.app.list_images) } end |
#logs ⇒ Object
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'lib/mrsk/cli/app.rb', line 137 def logs # FIXME: Catch when app containers aren't running grep = [:grep] if [:follow] run_locally do info "Following logs on #{MRSK.primary_host}..." MRSK.specific_roles ||= ["web"] role = MRSK.roles_on(MRSK.primary_host).first info MRSK.app(role: role).follow_logs(host: MRSK.primary_host, grep: grep) exec MRSK.app(role: role).follow_logs(host: MRSK.primary_host, grep: grep) end else since = [:since] lines = [:lines].presence || ((since || grep) ? nil : 100) # Default to 100 lines if since or grep isn't set on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| begin puts_by_host host, capture_with_info(*MRSK.app(role: role).logs(since: since, lines: lines, grep: grep)) rescue SSHKit::Command::Failed puts_by_host host, "Nothing found" end end end end end |
#remove ⇒ Object
171 172 173 174 175 176 177 |
# File 'lib/mrsk/cli/app.rb', line 171 def remove with_lock do stop remove_containers remove_images end end |
#remove_container(version) ⇒ Object
180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/mrsk/cli/app.rb', line 180 def remove_container(version) with_lock do on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| execute *MRSK.auditor(role: role).record("Removed app container with version #{version}"), verbosity: :debug execute *MRSK.app(role: role).remove_container(version: version) end end end end |
#remove_containers ⇒ Object
194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/mrsk/cli/app.rb', line 194 def remove_containers with_lock do on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| execute *MRSK.auditor(role: role).record("Removed all app containers"), verbosity: :debug execute *MRSK.app(role: role).remove_containers end end end end |
#remove_images ⇒ Object
208 209 210 211 212 213 214 215 |
# File 'lib/mrsk/cli/app.rb', line 208 def remove_images with_lock do on(MRSK.hosts) do execute *MRSK.auditor.record("Removed all app images"), verbosity: :debug execute *MRSK.app.remove_images end end end |
#start ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/mrsk/cli/app.rb', line 37 def start with_lock do on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| execute *MRSK.auditor.record("Started app version #{MRSK.config.version}"), verbosity: :debug execute *MRSK.app(role: role).start, raise_on_non_zero_exit: false end end end end |
#stop ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/mrsk/cli/app.rb', line 51 def stop with_lock do on(MRSK.hosts) do |host| roles = MRSK.roles_on(host) roles.each do |role| execute *MRSK.auditor(role: role).record("Stopped app"), verbosity: :debug execute *MRSK.app(role: role).stop, raise_on_non_zero_exit: false end end end end |