Add commands for managing proxy boot config. Since the proxy can be
shared by multiple applications, the configuration doesn't belong in
`config/deploy.yml`.
Instead you can set the config with:
```
Usage:
kamal proxy boot_config <set|get|clear>
Options:
[--publish], [--no-publish], [--skip-publish] # Publish the proxy ports on the host
# Default: true
[--http-port=N] # HTTP port to publish on the host
# Default: 80
[--https-port=N] # HTTPS port to publish on the host
# Default: 443
[--docker-options=option=value option2=value2] # Docker options to pass to the proxy container
```
By default we boot the proxy with `--publish 80:80 --publish 443:443`.
You can stop it from publishing ports, specify different ports and pass
other docker options.
The config is stored in `.kamal/proxy/options` as arguments to be passed
verbatim to docker run.
Where someone wants to set the options in their application they can do
that by calling `kamal proxy boot_config set` in a pre-deploy hook.
There's an example in the integration tests showing how to use this to
front kamal-proxy with Traefik, using an accessory.
94 lines
2.4 KiB
Ruby
94 lines
2.4 KiB
Ruby
require "bundler/setup"
|
|
require "active_support/test_case"
|
|
require "active_support/testing/autorun"
|
|
require "active_support/testing/stream"
|
|
require "debug"
|
|
require "mocha/minitest" # using #stubs that can alter returns
|
|
require "minitest/autorun" # using #stub that take args
|
|
require "sshkit"
|
|
require "kamal"
|
|
|
|
ActiveSupport::LogSubscriber.logger = ActiveSupport::Logger.new(STDOUT) if ENV["VERBOSE"]
|
|
|
|
# Applies to remote commands only.
|
|
SSHKit.config.backend = SSHKit::Backend::Printer
|
|
|
|
class SSHKit::Backend::Printer
|
|
def upload!(local, location, **kwargs)
|
|
local = local.string.inspect if local.respond_to?(:string)
|
|
puts "Uploading #{local} to #{location} on #{host}"
|
|
end
|
|
end
|
|
|
|
# Ensure local commands use the printer backend too.
|
|
# See https://github.com/capistrano/sshkit/blob/master/lib/sshkit/dsl.rb#L9
|
|
module SSHKit
|
|
module DSL
|
|
def run_locally(&block)
|
|
SSHKit::Backend::Printer.new(SSHKit::Host.new(:local), &block).run
|
|
end
|
|
end
|
|
end
|
|
|
|
class ActiveSupport::TestCase
|
|
include ActiveSupport::Testing::Stream
|
|
|
|
private
|
|
def stdouted
|
|
capture(:stdout) { yield }.strip
|
|
end
|
|
|
|
def stderred
|
|
capture(:stderr) { yield }.strip
|
|
end
|
|
|
|
def with_test_secrets(**files)
|
|
setup_test_secrets(**files)
|
|
yield
|
|
ensure
|
|
teardown_test_secrets
|
|
end
|
|
|
|
def setup_test_secrets(**files)
|
|
@original_pwd = Dir.pwd
|
|
@secrets_tmpdir = Dir.mktmpdir
|
|
fixtures_dup = File.join(@secrets_tmpdir, "test")
|
|
FileUtils.mkdir_p(fixtures_dup)
|
|
FileUtils.cp_r("test/fixtures/", fixtures_dup)
|
|
|
|
Dir.chdir(@secrets_tmpdir)
|
|
FileUtils.mkdir_p(".kamal")
|
|
Dir.chdir(".kamal") do
|
|
files.each do |filename, contents|
|
|
File.binwrite(filename.to_s, contents)
|
|
end
|
|
end
|
|
end
|
|
|
|
def teardown_test_secrets
|
|
Dir.chdir(@original_pwd)
|
|
FileUtils.rm_rf(@secrets_tmpdir)
|
|
end
|
|
end
|
|
|
|
class SecretAdapterTestCase < ActiveSupport::TestCase
|
|
setup do
|
|
`true` # Ensure $? is 0
|
|
end
|
|
|
|
private
|
|
def stub_ticks
|
|
Kamal::Secrets::Adapters::Base.any_instance.stubs(:`)
|
|
end
|
|
|
|
def stub_ticks_with(command, succeed: true)
|
|
# Sneakily run `false`/`true` after a match to set $? to 1/0
|
|
stub_ticks.with { |c| c == command && (succeed ? `true` : `false`) }
|
|
Kamal::Secrets::Adapters::Base.any_instance.stubs(:`)
|
|
end
|
|
|
|
def shellunescape(string)
|
|
"\"#{string}\"".undump.gsub(/\\([{}])/, "\\1")
|
|
end
|
|
end
|