subspace 3.0.13 → 3.0.14

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: fd80f06bb8065ca4506d7b4d40c6e001f67b25c9aedf9a0ff513a099a23d98c9
4
- data.tar.gz: 73eed74a49b776a5e465b57783eaabb7257fd8ea6fa49e0f3c4908c397409468
3
+ metadata.gz: 5b8e42060884330c35aba2c6696c7e2d517d1077b5123850ac2a5e65e234ec33
4
+ data.tar.gz: f0a73c27e6b04d65e613efab30c537f0956a61bacfa57062be856e095eaf2217
5
5
  SHA512:
6
- metadata.gz: 962f2c5c22909b7a9b544cb67a97d70d281dab1afbd24d9873ece20e4d2c45a44449e3102e1bc703b8847bacf10b5b6aa4eeb89487b112034ddf562ad11c74eb
7
- data.tar.gz: 6101675bde847ffd31133754fb41142214c1128200a8b5815cb90eb313c82e014cb4a117143d71ea402b0da6f60ceea17bd8bc9eb5b2c78b28843687fe819251
6
+ metadata.gz: f7c98b1bda739a664137fec217e6b74fa71cb2a3b4a01c41fb925b6d09f51cbd76494526c5803de0d38ba03e6dbd82ac49ac4716969f9daa32de04c0bc8648aa
7
+ data.tar.gz: f69db016de6cbf90cc19f3d64cbec5068c79df228a6ee26b11e9c4cf14febd13ae970123d10f20b3ce120ac832bc4adf3f3ce33468e4b0b8f633990e79890b4b
data/CHANGELOG.md CHANGED
@@ -12,6 +12,10 @@ This project attempts to follow [semantic versioning](https://semver.org/).
12
12
 
13
13
  ## Unreleased
14
14
 
15
+ ## 3.0.14
16
+ * Update oxenwagen template: remove profile, add final_snapshot_identifier
17
+ * Change key to stat_type for client stats
18
+
15
19
  ## 3.0.13
16
20
  * Allow tailscale to update itself again; bug that required known good version pinning in 3.0.10 has been resolved.
17
21
 
@@ -168,7 +168,7 @@
168
168
  body_format: json
169
169
  body:
170
170
  client_stat:
171
- key: os_upgrades
171
+ stat_type: os_upgrades
172
172
  value: "{{stats_os_upgrades.stdout}}"
173
173
  hostname: "{{hostname}}"
174
174
  when: (send_stats == true) and (stats_url is defined) and (stats_api_key is defined) and (stats_os_upgrades.stdout | length > 0)
@@ -236,7 +236,7 @@
236
236
  body_format: json
237
237
  body:
238
238
  client_stat:
239
- key: os_security_upgrades
239
+ stat_type: os_security_upgrades
240
240
  value: "{{stats_os_security_upgrades.stdout}}"
241
241
  hostname: "{{hostname}}"
242
242
  when: (send_stats == true) and (stats_url is defined) and (stats_api_key is defined) and (stats_os_security_upgrades.stdout | length > 0)
@@ -323,7 +323,7 @@
323
323
  body_format: json
324
324
  body:
325
325
  client_stat:
326
- key: os_version
326
+ stat_type: os_version
327
327
  value: "{{stats_os_version.stdout}}"
328
328
  hostname: "{{hostname}}"
329
329
  when: send_stats == true and stats_url is defined and stats_api_key is defined
@@ -117,7 +117,7 @@
117
117
  body_format: json
118
118
  body:
119
119
  client_stat:
120
- key: psql_version
120
+ stat_type: psql_version
121
121
  value: "{{stats_psql_version.stdout}}"
122
122
  hostname: "{{hostname}}"
123
123
  when: send_stats == true and stats_url is defined and stats_api_key is defined
@@ -103,7 +103,7 @@
103
103
  body_format: json
104
104
  body:
105
105
  client_stat:
106
- key: psql_version
106
+ stat_type: psql_version
107
107
  value: "{{stats_psql_version.stdout}}"
108
108
  hostname: "{{hostname}}"
109
109
  when: send_stats == true and stats_url is defined and stats_api_key is defined
@@ -73,7 +73,7 @@
73
73
  body_format: json
74
74
  body:
75
75
  client_stat:
76
- key: rails_version
76
+ stat_type: rails_version
77
77
  value: "{{stats_rails_version.stdout}}"
78
78
  hostname: "{{hostname}}"
79
79
  when: send_stats == true and stats_url is defined and stats_api_key is defined
@@ -100,7 +100,7 @@
100
100
  body_format: json
101
101
  body:
102
102
  client_stat:
103
- key: ruby_version
103
+ stat_type: ruby_version
104
104
  value: "{{stats_ruby_version.stdout}}"
105
105
  hostname: "{{hostname}}"
106
106
  when: send_stats == true and stats_url is defined and stats_api_key is defined
data/lib/subspace/cli.rb CHANGED
@@ -46,7 +46,7 @@ class Subspace::Cli
46
46
  end
47
47
 
48
48
  command :bootstrap do |c|
49
- c.syntax = 'subspace boostrap [host]'
49
+ c.syntax = 'subspace bootstrap [host]'
50
50
  c.summary = 'Install ansible requirements (python) and authorized_keys file'
51
51
  c.description = 'Ansible has very few dependencies, but python is one that is not installed by
52
52
  default on many linux images. The bootstrap command will install python on a host as well as
@@ -51,7 +51,7 @@ class Subspace::Commands::Init < Subspace::Commands::Base
51
51
 
52
52
  3. Bootstrap the new server
53
53
 
54
- subspace boostrap #{@env}1
54
+ subspace bootstrap #{@env}1
55
55
 
56
56
  4. Inspect new environment
57
57
  - ensure the correct roles are present in #{@env}.yml
@@ -1,3 +1,3 @@
1
1
  module Subspace
2
- VERSION = "3.0.13"
2
+ VERSION = "3.0.14"
3
3
  end
@@ -21,7 +21,6 @@ terraform {
21
21
 
22
22
  provider aws {
23
23
  region = "us-west-2"
24
- profile = "subspace-<%= project_name %>"
25
24
  default_tags {
26
25
  tags = {
27
26
  Environment = "<%= @env %>"
@@ -58,6 +57,7 @@ module oxenwagen {
58
57
  database_allocated_storage = 100
59
58
  database_max_allocated_storage = 1000
60
59
  database_iops = 1000
60
+ final_snapshot_identifier = "<%= "#{project_name}-#{@env}-1" %>"
61
61
 
62
62
  # lb_domain_name = "www.<%= project_name %>.com"
63
63
  # lb_alternate_names = []
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.13
4
+ version: 3.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-12-27 00:00:00.000000000 Z
10
+ date: 2025-03-28 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -313,8 +312,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
313
312
  - !ruby/object:Gem::Version
314
313
  version: '0'
315
314
  requirements: []
316
- rubygems_version: 3.5.23
317
- signing_key:
315
+ rubygems_version: 3.6.6
318
316
  specification_version: 4
319
317
  summary: Ansible-based server provisioning for rails projects
320
318
  test_files: []