Merge remote-tracking branch 'origin/revert-905-simplify-builders-config' into proxy-experimental-and-revert-905-simplify-builders-config
* origin/revert-905-simplify-builders-config: Revert "Simplify builders config"
This commit is contained in:
2
test/fixtures/deploy.erb.yml
vendored
2
test/fixtures/deploy.erb.yml
vendored
@@ -9,5 +9,3 @@ registry:
|
||||
server: registry.digitalocean.com
|
||||
username: <%= "my-user" %>
|
||||
password: <%= "my-password" %>
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
2
test/fixtures/deploy_for_dest.yml
vendored
2
test/fixtures/deploy_for_dest.yml
vendored
@@ -4,5 +4,3 @@ registry:
|
||||
server: registry.digitalocean.com
|
||||
username: <%= "my-user" %>
|
||||
password: <%= "my-password" %>
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
2
test/fixtures/deploy_for_required_dest.yml
vendored
2
test/fixtures/deploy_for_required_dest.yml
vendored
@@ -4,6 +4,4 @@ registry:
|
||||
server: registry.digitalocean.com
|
||||
username: <%= "my-user" %>
|
||||
password: <%= "my-password" %>
|
||||
builder:
|
||||
arch: amd64
|
||||
require_destination: true
|
||||
|
||||
@@ -17,6 +17,4 @@ registry:
|
||||
server: registry.digitalocean.com
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
primary_role: web_tokyo
|
||||
|
||||
2
test/fixtures/deploy_simple.yml
vendored
2
test/fixtures/deploy_simple.yml
vendored
@@ -6,5 +6,3 @@ servers:
|
||||
registry:
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
2
test/fixtures/deploy_with_accessories.yml
vendored
2
test/fixtures/deploy_with_accessories.yml
vendored
@@ -10,8 +10,6 @@ servers:
|
||||
registry:
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
accessories:
|
||||
mysql:
|
||||
|
||||
2
test/fixtures/deploy_with_aliases.yml
vendored
2
test/fixtures/deploy_with_aliases.yml
vendored
@@ -11,8 +11,6 @@ servers:
|
||||
console:
|
||||
hosts:
|
||||
- 1.1.1.5
|
||||
builder:
|
||||
arch: amd64
|
||||
registry:
|
||||
username: user
|
||||
password: pw
|
||||
|
||||
2
test/fixtures/deploy_with_assets.yml
vendored
2
test/fixtures/deploy_with_assets.yml
vendored
@@ -6,6 +6,4 @@ servers:
|
||||
registry:
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
asset_path: /public/assets
|
||||
|
||||
2
test/fixtures/deploy_with_boot_strategy.yml
vendored
2
test/fixtures/deploy_with_boot_strategy.yml
vendored
@@ -7,8 +7,6 @@ servers:
|
||||
workers:
|
||||
- "1.1.1.3"
|
||||
- "1.1.1.4"
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
registry:
|
||||
username: user
|
||||
|
||||
2
test/fixtures/deploy_with_env_tags.yml
vendored
2
test/fixtures/deploy_with_env_tags.yml
vendored
@@ -11,8 +11,6 @@ servers:
|
||||
- 1.1.1.4: site1
|
||||
- 1.2.1.3: site2
|
||||
- 1.2.1.4: [ site2 experimental ]
|
||||
builder:
|
||||
arch: amd64
|
||||
env:
|
||||
clear:
|
||||
TEST: "root"
|
||||
|
||||
2
test/fixtures/deploy_with_extensions.yml
vendored
2
test/fixtures/deploy_with_extensions.yml
vendored
@@ -21,6 +21,4 @@ registry:
|
||||
server: registry.digitalocean.com
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
primary_role: web_tokyo
|
||||
|
||||
@@ -7,8 +7,6 @@ servers:
|
||||
workers:
|
||||
- "1.1.1.3"
|
||||
- "1.1.1.4"
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
registry:
|
||||
username: user
|
||||
|
||||
@@ -26,8 +26,6 @@ servers:
|
||||
hosts:
|
||||
- 1.1.1.3
|
||||
- 1.1.1.4
|
||||
builder:
|
||||
arch: amd64
|
||||
env:
|
||||
REDIS_URL: redis://x/y
|
||||
registry:
|
||||
|
||||
@@ -7,8 +7,6 @@ servers:
|
||||
workers:
|
||||
- "1.1.1.3"
|
||||
- "1.1.1.4"
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
registry:
|
||||
username: user
|
||||
|
||||
7
test/fixtures/deploy_with_remote_builder.yml
vendored
7
test/fixtures/deploy_with_remote_builder.yml
vendored
@@ -32,11 +32,10 @@ accessories:
|
||||
port: 6379
|
||||
directories:
|
||||
- data:/data
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
readiness_delay: 0
|
||||
|
||||
builder:
|
||||
arch: <%= Kamal::Utils.docker_arch == "arm64" ? "amd64" : "arm64" %>
|
||||
remote: ssh://app@1.1.1.5
|
||||
remote:
|
||||
arch: amd64
|
||||
host: ssh://app@1.1.1.5
|
||||
|
||||
@@ -32,8 +32,6 @@ accessories:
|
||||
port: 6379
|
||||
directories:
|
||||
- data:/data
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
readiness_delay: 0
|
||||
|
||||
@@ -42,5 +40,6 @@ ssh:
|
||||
port: 22
|
||||
|
||||
builder:
|
||||
arch: <%= Kamal::Utils.docker_arch == "arm64" ? "amd64" : "arm64" %>
|
||||
remote: ssh://app@1.1.1.5:2122
|
||||
remote:
|
||||
arch: amd64
|
||||
host: ssh://app@1.1.1.5:2122
|
||||
|
||||
2
test/fixtures/deploy_with_roles.yml
vendored
2
test/fixtures/deploy_with_roles.yml
vendored
@@ -14,5 +14,3 @@ registry:
|
||||
server: registry.digitalocean.com
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
2
test/fixtures/deploy_with_secrets.yml
vendored
2
test/fixtures/deploy_with_secrets.yml
vendored
@@ -9,5 +9,3 @@ registry:
|
||||
env:
|
||||
secret:
|
||||
- PASSWORD
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
@@ -13,5 +13,3 @@ registry:
|
||||
server: registry.digitalocean.com
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
@@ -6,5 +6,3 @@ servers:
|
||||
registry:
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
1
test/fixtures/deploy_without_clone.yml
vendored
1
test/fixtures/deploy_without_clone.yml
vendored
@@ -36,5 +36,4 @@ accessories:
|
||||
readiness_delay: 0
|
||||
|
||||
builder:
|
||||
arch: amd64
|
||||
context: "."
|
||||
|
||||
2
test/fixtures/deploy_workers_only.yml
vendored
2
test/fixtures/deploy_workers_only.yml
vendored
@@ -10,5 +10,3 @@ primary_role: workers
|
||||
registry:
|
||||
username: user
|
||||
password: pw
|
||||
builder:
|
||||
arch: amd64
|
||||
|
||||
Reference in New Issue
Block a user