Class: Kamal::Cli::Accessory

Inherits:
Base
  • Object
show all
Defined in:
lib/kamal/cli/accessory.rb

Instance Method Summary collapse

Methods inherited from Base

exit_on_failure?, #initialize

Constructor Details

This class inherits a constructor from Kamal::Cli::Base

Instance Method Details

#boot(name, login: true) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/kamal/cli/accessory.rb', line 3

def boot(name, login: true)
  with_lock do
    if name == "all"
      KAMAL.accessory_names.each { |accessory_name| boot(accessory_name) }
    else
      with_accessory(name) do |accessory, hosts|
        directories(name)
        upload(name)

        on(hosts) do
          execute *KAMAL.registry. if 
          execute *KAMAL.auditor.record("Booted #{name} accessory"), verbosity: :debug
          execute *accessory.run
        end
      end
    end
  end
end

#details(name) ⇒ Object



106
107
108
109
110
111
112
113
114
115
# File 'lib/kamal/cli/accessory.rb', line 106

def details(name)
  if name == "all"
    KAMAL.accessory_names.each { |accessory_name| details(accessory_name) }
  else
    type = "Accessory #{name}"
    with_accessory(name) do |accessory, hosts|
      on(hosts) { puts_by_host host, capture_with_info(*accessory.info), type: type }
    end
  end
end

#directories(name) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/kamal/cli/accessory.rb', line 40

def directories(name)
  with_lock do
    with_accessory(name) do |accessory, hosts|
      on(hosts) do
        accessory.directories.keys.each do |host_path|
          execute *accessory.make_directory(host_path)
        end
      end
    end
  end
end

#exec(name, cmd) ⇒ Object



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/kamal/cli/accessory.rb', line 120

def exec(name, cmd)
  with_accessory(name) do |accessory, hosts|
    case
    when options[:interactive] && options[:reuse]
      say "Launching interactive command with via SSH from existing container...", :magenta
      run_locally { exec accessory.execute_in_existing_container_over_ssh(cmd) }

    when options[:interactive]
      say "Launching interactive command via SSH from new container...", :magenta
      run_locally { exec accessory.execute_in_new_container_over_ssh(cmd) }

    when options[:reuse]
      say "Launching command from existing container...", :magenta
      on(hosts) do
        execute *KAMAL.auditor.record("Executed cmd '#{cmd}' on #{name} accessory"), verbosity: :debug
        capture_with_info(*accessory.execute_in_existing_container(cmd))
      end

    else
      say "Launching command from new container...", :magenta
      on(hosts) do
        execute *KAMAL.auditor.record("Executed cmd '#{cmd}' on #{name} accessory"), verbosity: :debug
        capture_with_info(*accessory.execute_in_new_container(cmd))
      end
    end
  end
end

#logs(name) ⇒ Object



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/kamal/cli/accessory.rb', line 153

def logs(name)
  with_accessory(name) do |accessory, hosts|
    grep = options[:grep]

    if options[:follow]
      run_locally do
        info "Following logs on #{hosts}..."
        info accessory.follow_logs(grep: grep)
        exec accessory.follow_logs(grep: grep)
      end
    else
      since = options[:since]
      lines = options[:lines].presence || ((since || grep) ? nil : 100) # Default to 100 lines if since or grep isn't set

      on(hosts) do
        puts capture_with_info(*accessory.logs(since: since, lines: lines, grep: grep))
      end
    end
  end
end

#reboot(name) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/kamal/cli/accessory.rb', line 53

def reboot(name)
  with_lock do
    if name == "all"
      KAMAL.accessory_names.each { |accessory_name| reboot(accessory_name) }
    else
      with_accessory(name) do |accessory, hosts|
        on(hosts) do
          execute *KAMAL.registry.
        end

        stop(name)
        remove_container(name)
        boot(name, login: false)
      end
    end
  end
end

#remove(name) ⇒ Object



176
177
178
179
180
181
182
183
184
185
186
# File 'lib/kamal/cli/accessory.rb', line 176

def remove(name)
  confirming "This will remove all containers, images and data directories for #{name}. Are you sure?" do
    with_lock do
      if name == "all"
        KAMAL.accessory_names.each { |accessory_name| remove_accessory(accessory_name) }
      else
        remove_accessory(name)
      end
    end
  end
end

#remove_container(name) ⇒ Object



189
190
191
192
193
194
195
196
197
198
# File 'lib/kamal/cli/accessory.rb', line 189

def remove_container(name)
  with_lock do
    with_accessory(name) do |accessory, hosts|
      on(hosts) do
        execute *KAMAL.auditor.record("Remove #{name} accessory container"), verbosity: :debug
        execute *accessory.remove_container
      end
    end
  end
end

#remove_image(name) ⇒ Object



201
202
203
204
205
206
207
208
209
210
# File 'lib/kamal/cli/accessory.rb', line 201

def remove_image(name)
  with_lock do
    with_accessory(name) do |accessory, hosts|
      on(hosts) do
        execute *KAMAL.auditor.record("Removed #{name} accessory image"), verbosity: :debug
        execute *accessory.remove_image
      end
    end
  end
end

#remove_service_directory(name) ⇒ Object



213
214
215
216
217
218
219
220
221
# File 'lib/kamal/cli/accessory.rb', line 213

def remove_service_directory(name)
  with_lock do
    with_accessory(name) do |accessory, hosts|
      on(hosts) do
        execute *accessory.remove_service_directory
      end
    end
  end
end

#restart(name) ⇒ Object



96
97
98
99
100
101
102
103
# File 'lib/kamal/cli/accessory.rb', line 96

def restart(name)
  with_lock do
    with_accessory(name) do
      stop(name)
      start(name)
    end
  end
end

#start(name) ⇒ Object



72
73
74
75
76
77
78
79
80
81
# File 'lib/kamal/cli/accessory.rb', line 72

def start(name)
  with_lock do
    with_accessory(name) do |accessory, hosts|
      on(hosts) do
        execute *KAMAL.auditor.record("Started #{name} accessory"), verbosity: :debug
        execute *accessory.start
      end
    end
  end
end

#stop(name) ⇒ Object



84
85
86
87
88
89
90
91
92
93
# File 'lib/kamal/cli/accessory.rb', line 84

def stop(name)
  with_lock do
    with_accessory(name) do |accessory, hosts|
      on(hosts) do
        execute *KAMAL.auditor.record("Stopped #{name} accessory"), verbosity: :debug
        execute *accessory.stop, raise_on_non_zero_exit: false
      end
    end
  end
end

#upload(name) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/kamal/cli/accessory.rb', line 23

def upload(name)
  with_lock do
    with_accessory(name) do |accessory, hosts|
      on(hosts) do
        accessory.files.each do |(local, remote)|
          accessory.ensure_local_file_present(local)

          execute *accessory.make_directory_for(remote)
          upload! local, remote
          execute :chmod, "755", remote
        end
      end
    end
  end
end