shipitron 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1f02ed921fdb5107cebc789f0554daac22d275024e50b94f6059d0ab6d996c1
4
- data.tar.gz: 65e5fbca1de1090e34178d44244a5e30938b7de80fe17f0ea7b3df9510e54f9a
3
+ metadata.gz: ffcd046204b230e7282508063bb33a58c1c68e73c4e7c8546ea15cfc48d6a2f7
4
+ data.tar.gz: 38ddb0adc7677e27c9afcee285d09358afb60df254994d456319bf904d518091
5
5
  SHA512:
6
- metadata.gz: 14d5f5e245ab946538ab1aee9b5d88d88fafb7d4baa61c3634d165d42acfcf5a83e0231cc9299f37d37d38da9a96be0dfc04ba77b42499fc36bdcc5acf69980c
7
- data.tar.gz: ace846368647ec022343af65af9978f2647aa7113de1795900a18091754e34e26657bd4d4d4be10e60f4bef81baffa886917c79537f834377182eadabb4a704e
6
+ metadata.gz: 28b568e8e1a5fa928beeeaf2ff1e00415671712c9415dacc317581d10d79bb320bbc05f07d9d1c7b528db4a5523f9568cb9dac33d2bc5607165b43d1896d3cc4
7
+ data.tar.gz: fcd1597703388b9bf8be61ab98e03faabbcf17bab98a06895344e14cb41f3ee412941fe2a27257425c3db646762130500e592150c53e35520939d04240f77fe6
data/Dockerfile CHANGED
@@ -1,11 +1,11 @@
1
- FROM ruby:2.7.1-alpine as cache
1
+ FROM ruby:2.7.2-alpine as cache
2
2
  COPY cache/ /tmp/
3
3
  RUN cd /usr/local/bundle && \
4
4
  ([ -f /tmp/bundler-data.tar.gz ] && \
5
5
  tar -zxf /tmp/bundler-data.tar.gz && \
6
6
  rm /tmp/bundler-data.tar.gz) || true
7
7
 
8
- FROM ruby:2.7.1-alpine
8
+ FROM ruby:2.7.2-alpine
9
9
  LABEL maintainer="Ryan Schlesinger <ryan@outstand.com>"
10
10
 
11
11
  RUN addgroup -S shipitron && \
data/Dockerfile.release CHANGED
@@ -1,4 +1,4 @@
1
- FROM ruby:2.7.1-alpine
1
+ FROM ruby:2.7.2-alpine
2
2
  LABEL maintainer="Ryan Schlesinger <ryan@outstand.com>"
3
3
 
4
4
  RUN addgroup -S shipitron && \
@@ -8,7 +8,7 @@ RUN addgroup -S shipitron && \
8
8
 
9
9
  RUN apk add --no-cache \
10
10
  ca-certificates \
11
- openssl \
11
+ openssl-dev \
12
12
  tini \
13
13
  su-exec \
14
14
  build-base \
@@ -18,7 +18,8 @@ RUN apk add --no-cache \
18
18
  bash \
19
19
  curl \
20
20
  wget \
21
- jq
21
+ jq \
22
+ cmake
22
23
 
23
24
  ENV ECR_CREDENTIAL_HELPER_VERSION 0.4.0
24
25
  RUN cd /usr/local/bin && \
@@ -44,7 +45,7 @@ USER root
44
45
 
45
46
  WORKDIR /app
46
47
 
47
- ENV SHIPITRON_VERSION=1.3.1
48
+ ENV SHIPITRON_VERSION=1.3.2
48
49
 
49
50
  RUN gem install shipitron -v ${SHIPITRON_VERSION} && \
50
51
  mkdir -p /home/shipitron/.ssh && \
@@ -30,13 +30,12 @@ module Shipitron
30
30
 
31
31
  service_def = Smash.load(
32
32
  path.to_s,
33
- parser: MustacheYamlParser.new(
34
- context: {
35
- cluster: cluster_name,
36
- revision: nil, # ECS will default to latest ACTIVE
37
- count: service_count
38
- }
39
- )
33
+ parser: MustacheYamlParser,
34
+ context: {
35
+ cluster: cluster_name,
36
+ revision: nil, # ECS will default to latest ACTIVE
37
+ count: service_count
38
+ }
40
39
  ).merge(
41
40
  client_token: SecureRandom.uuid
42
41
  )
@@ -27,11 +27,10 @@ module Shipitron
27
27
 
28
28
  task_def = Smash.load(
29
29
  path.to_s,
30
- parser: MustacheYamlParser.new(
31
- context: {
32
- tag: 'latest'
33
- }
34
- )
30
+ parser: MustacheYamlParser,
31
+ context: {
32
+ tag: 'latest'
33
+ }
35
34
  )
36
35
 
37
36
  begin
@@ -3,20 +3,24 @@ require 'yaml'
3
3
 
4
4
  module Shipitron
5
5
  class MustacheYamlParser
6
- def initialize(context:nil, view:nil)
7
- if (context.nil? && view.nil?) || (!context.nil? && !view.nil?)
6
+ def initialize(file_path, options = {})
7
+ @context = options[:context]
8
+ @view = options[:view]
9
+
10
+ if (@context.nil? && @view.nil?) || (!@context.nil? && !@view.nil?)
8
11
  raise ArgumentError, 'Either context or view required'
9
12
  end
10
13
 
11
- @context = context
12
- @view = view
13
-
14
+ @file_path = file_path.is_a?(Pathname) ? file_path.to_s : file_path
14
15
  @view ||= Mustache
15
16
  end
16
17
 
17
- def perform(file_path)
18
- file_path = file_path.is_a?(Pathname) ? file_path.to_s : file_path
19
- YAML.load(@view.render(File.read(file_path), @context))
18
+ def perform
19
+ YAML.load(@view.render(File.read(@file_path), @context))
20
+ end
21
+
22
+ def self.perform(file_path, options = {})
23
+ new(file_path, options).perform
20
24
  end
21
25
  end
22
26
  end
@@ -1,3 +1,3 @@
1
1
  module Shipitron
2
- VERSION = '1.3.1'
2
+ VERSION = '1.3.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipitron
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Schlesinger
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-30 00:00:00.000000000 Z
11
+ date: 2021-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -290,7 +290,7 @@ dependencies:
290
290
  - - "~>"
291
291
  - !ruby/object:Gem::Version
292
292
  version: '0.4'
293
- description:
293
+ description:
294
294
  email:
295
295
  - ryan@outstand.com
296
296
  executables:
@@ -365,7 +365,7 @@ files:
365
365
  homepage: https://github.com/outstand/shipitron
366
366
  licenses: []
367
367
  metadata: {}
368
- post_install_message:
368
+ post_install_message:
369
369
  rdoc_options: []
370
370
  require_paths:
371
371
  - lib
@@ -380,8 +380,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
380
380
  - !ruby/object:Gem::Version
381
381
  version: '0'
382
382
  requirements: []
383
- rubygems_version: 3.1.2
384
- signing_key:
383
+ rubygems_version: 3.1.4
384
+ signing_key:
385
385
  specification_version: 4
386
386
  summary: A deployment tool for use with Docker and ECS.
387
387
  test_files: []