ciinabox-ecs 0.2.17.alpha.1608078804 → 0.3.0.alpha.1612412532
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 +4 -4
- data/templates/ecs-services.rb +1 -1
- data/templates/services/jenkins.rb +4 -5
- data/templates/services/nexus.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0c757f7bd31538bddd7834491413db7d5748ca7944e1796f6779a1806abd16c
|
4
|
+
data.tar.gz: bd1b8aea5d676333fc569fa47dc6160a42878a8b479ef1311d34db106e253006
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44312cfb402dd20e0e001c10d84f479c164471fb4cc4bd9de7ffcc8592e97bb3feaae252fdd42b69f33dd132d88db54e0a3347f1e3e4e7700a7c86ed6f4d10d1
|
7
|
+
data.tar.gz: 5d97aee7e73853e9825f2717e78d6beb5ad0a890b97e2ffd93e002df6074c869bcff57dc633b934442a2b7d78533fdadf672a10ee9ec0691f87ff1972f0c9ef8
|
data/templates/ecs-services.rb
CHANGED
@@ -15,10 +15,9 @@ end
|
|
15
15
|
# Prefixing application images allows us to 'vendorize' ciinabox into client's account by setting
|
16
16
|
# ciinabox_repo to ${account_no}.dkr.ecr.${region}.amazonaws.com
|
17
17
|
if not defined? ciinabox_repo
|
18
|
-
|
18
|
+
ciinabox_repo = 'ghcr.io/base2services'
|
19
19
|
end
|
20
|
-
|
21
|
-
image = "#{ciinabox_repo}base2/ciinabox-jenkins:lts"
|
20
|
+
image = "#{ciinabox_repo}/ciinabox-jenkins:lts"
|
22
21
|
|
23
22
|
jenkins_java_opts = ''
|
24
23
|
memory = 2048
|
@@ -110,7 +109,7 @@ if defined? include_diind_slave and include_diind_slave
|
|
110
109
|
dind_definition = {
|
111
110
|
Name: 'jenkins-docker-dind-slave',
|
112
111
|
Memory: slave_memory,
|
113
|
-
Image: "#{ciinabox_repo}
|
112
|
+
Image: "#{ciinabox_repo}/ciinabox-docker-slave:#{docker_slave_version}",
|
114
113
|
Environment: [{Name: 'RUN_DOCKER_IN_DOCKER', Value: 1}],
|
115
114
|
Essential: false,
|
116
115
|
Privileged: true
|
@@ -141,7 +140,7 @@ if defined? include_dood_slave and include_dood_slave
|
|
141
140
|
dood_definition = {
|
142
141
|
Name: 'jenkins-docker-dood-slave',
|
143
142
|
Memory: slave_memory,
|
144
|
-
Image: "#{ciinabox_repo}
|
143
|
+
Image: "#{ciinabox_repo}/ciinabox-docker-slave:#{docker_slave_version}",
|
145
144
|
Environment: [{Name: 'RUN_DOCKER_IN_DOCKER', Value: 0}],
|
146
145
|
MountPoints: [
|
147
146
|
{
|
data/templates/services/nexus.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ciinabox-ecs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0.alpha.1612412532
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Base2Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
168
168
|
- !ruby/object:Gem::Version
|
169
169
|
version: 1.3.1
|
170
170
|
requirements: []
|
171
|
-
rubygems_version: 3.2.
|
171
|
+
rubygems_version: 3.2.8
|
172
172
|
signing_key:
|
173
173
|
specification_version: 4
|
174
174
|
summary: Manage ciinabox on Aws Ecs
|