terrafying-components 1.13.4 → 1.13.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64976275b2690bf56d75eec4fcbe4be079a280c9b715b8fa4ea10ec18d4db4f9
4
- data.tar.gz: c0a422c6ae06013e0320463638b0cf5753e0e78827a7037e1c7d8def82010441
3
+ metadata.gz: 1265446e568f2f308d37f68fe6c8931b8c0273c7be1b328a90c6bf62245b4a82
4
+ data.tar.gz: 0fb9e21f58f07b1125b78f2676e7de0997c7378aaf8a8f6afd4709c2a6b9a811
5
5
  SHA512:
6
- metadata.gz: beb5d7ddc9200c57836111d8326f83aa9e804ab988342f6ee5f72d58466a0e3a8ede5266a2b93196de9f4bc93d1b8ecef999940c9796d6818c474d157c501df0
7
- data.tar.gz: 641c76f7d9180bf326628ee14ee2e2f44388fbfde0cf03b35cead6ffc283c947ef1d200cd981be109813781118402ba3474a8a048e0c7e7cf5b2b29e9e2d2e69
6
+ metadata.gz: 69402006fe64f42b73ad7e39ca66549ac828819eb5daf5891ec91edff323746cdcbf1ae256b8b1e4a5156e0567bafa8d867c5767f6b9df3aa8536dbdba928821
7
+ data.tar.gz: ff3ef58b2c050a2918d1b5b0e72852c7407bdca388ae8594cd14187875321d246fdccb55c43c77efc2e4bc0b0bcda5cbcc6651bcf0faddfdbf6d997c50bffd54
@@ -33,7 +33,7 @@ module Terrafying
33
33
  options = {
34
34
  public: false,
35
35
  eip: false,
36
- ami: aws.ami('base-image-f074c65a', owners = ['136393635417']),
36
+ ami: aws.ami('base-image-bad2d2af', owners = ['136393635417']),
37
37
  instance_type: 't3a.micro',
38
38
  instances: { min: 1, max: 1, desired: 1, tags: {} },
39
39
  ports: [],
@@ -20,9 +20,9 @@ module Terrafying
20
20
  def initialize(
21
21
  vpc:,
22
22
  thanos_name: 'thanos',
23
- thanos_version: 'v0.5.0',
23
+ thanos_version: 'v0.7.0',
24
24
  prom_name: 'prometheus',
25
- prom_version: 'v2.11.2',
25
+ prom_version: 'v2.12.0',
26
26
  instances: 2,
27
27
  instance_type: 't3a.small',
28
28
  thanos_instance_type: 't3a.small',
@@ -205,13 +205,13 @@ module Terrafying
205
205
  [Service]
206
206
  ExecStartPre=-/usr/bin/docker kill thanos
207
207
  ExecStartPre=-/usr/bin/docker rm thanos
208
- ExecStartPre=/usr/bin/docker pull improbable/thanos:#{@thanos_version}
208
+ ExecStartPre=/usr/bin/docker pull quay.io/thanos/thanos:#{@thanos_version}
209
209
  ExecStart=/usr/bin/docker run --name thanos \
210
210
  -p 10901-10902:10901-10902 \
211
211
  -v #{@prometheus_data_dir}:/var/lib/prometheus \
212
212
  -v /opt/thanos:/opt/thanos \
213
213
  --network=prom \
214
- improbable/thanos:#{@thanos_version} \
214
+ quay.io/thanos/thanos:#{@thanos_version} \
215
215
  sidecar \
216
216
  --prometheus.url=http://prometheus:9090 \
217
217
  --tsdb.path=/var/lib/prometheus/tsdb \
@@ -290,10 +290,10 @@ module Terrafying
290
290
  [Service]
291
291
  ExecStartPre=-/usr/bin/docker kill thanos
292
292
  ExecStartPre=-/usr/bin/docker rm thanos
293
- ExecStartPre=/usr/bin/docker pull improbable/thanos:#{@thanos_version}
293
+ ExecStartPre=/usr/bin/docker pull quay.io/thanos/thanos:#{@thanos_version}
294
294
  ExecStart=/usr/bin/docker run --name thanos \
295
295
  -p 10901-10902:10901-10902 \
296
- improbable/thanos:#{@thanos_version} \
296
+ quay.io/thanos/thanos:#{@thanos_version} \
297
297
  query \
298
298
  --query.replica-label=replica \
299
299
  --query.max-concurrent=#{@thanos_instance_vcpu_count} \
@@ -41,7 +41,7 @@ module Terrafying
41
41
 
42
42
  def create_in(vpc, name, options = {})
43
43
  options = {
44
- ami: aws.ami('base-image-f074c65a', owners = ['136393635417']),
44
+ ami: aws.ami('base-image-bad2d2af', owners = ['136393635417']),
45
45
  instance_type: 't3a.micro',
46
46
  ports: [],
47
47
  instances: [{}],
@@ -38,7 +38,7 @@ module Terrafying
38
38
  options = {
39
39
  public: false,
40
40
  eip: false,
41
- ami: aws.ami('base-image-f074c65a', owners = ['136393635417']),
41
+ ami: aws.ami('base-image-bad2d2af', owners = ['136393635417']),
42
42
  instance_type: 't3a.micro',
43
43
  subnets: vpc.subnets.fetch(:private, []),
44
44
  ports: [],
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Terrafying
4
4
  module Components
5
- VERSION = '1.13.4'
5
+ VERSION = '1.13.5'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terrafying-components
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.4
4
+ version: 1.13.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - uSwitch Limited
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-21 00:00:00.000000000 Z
11
+ date: 2019-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake