prima-twig 0.50.84 → 0.50.85
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/bin/twig-feature +8 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9635bb10351a3c33f5f18f34182f09082fd5f2e77b3c02c2315601cf7780e9b4
|
|
4
|
+
data.tar.gz: 8612ffe7f1a8ef2ae86f45dde3b3749a2ad09b6b145a51c6332162b1882490e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d434ae47b6ebd52beae41b0bf178440e51f815e5d7e874ad41c7f2f4e5d7d1f3b5a62f6fd64770152f7059e6ff7461c21583502862ba5dc5dd7fb5e26926a78
|
|
7
|
+
data.tar.gz: 6172fc477db35b1f387be9971addc7971328b840a06bb1b1cd9ffd880718a1c517d1c0b59302fd1a288f3b01b52901dac75e94d81e26cfd5bc9ce85ca2477d7f
|
data/bin/twig-feature
CHANGED
|
@@ -1625,7 +1625,7 @@ class Release
|
|
|
1625
1625
|
},
|
|
1626
1626
|
{
|
|
1627
1627
|
parameter_key: "ALBShortName",
|
|
1628
|
-
parameter_value: "
|
|
1628
|
+
parameter_value: "starsky-qa-#{deploy_id}"[0..27]
|
|
1629
1629
|
},
|
|
1630
1630
|
{
|
|
1631
1631
|
parameter_key: "HostnamePattern",
|
|
@@ -1862,8 +1862,10 @@ class Release
|
|
|
1862
1862
|
update_service_defaults(stack_name_skynet)
|
|
1863
1863
|
update_service_defaults(stack_name_leftorium)
|
|
1864
1864
|
update_service_defaults(stack_name_rachele)
|
|
1865
|
+
update_service_defaults(stack_name_starsky)
|
|
1865
1866
|
update_service_defaults(stack_name_crash) unless !deploy_crash?
|
|
1866
1867
|
|
|
1868
|
+
starsky_hostname = get_route53_hostname(stack_name_starsky)
|
|
1867
1869
|
activia_hostname = get_route53_hostname(stack_name_activia)
|
|
1868
1870
|
assange_hostname = get_route53_hostname(stack_name_assange)
|
|
1869
1871
|
bburago_hostname = get_route53_hostname(stack_name_bburago)
|
|
@@ -1887,6 +1889,7 @@ class Release
|
|
|
1887
1889
|
> Backoffice (Borat) url: https://#{borat_hostname}
|
|
1888
1890
|
> Urania url: http://#{urania_hostname}:81
|
|
1889
1891
|
> Bburago url: http://#{bburago_hostname}:83
|
|
1892
|
+
> Starsky url: http://#{starsky_hostname}:3001
|
|
1890
1893
|
> Ermes url: http://#{ermes_hostname}:10002
|
|
1891
1894
|
> Hal9000 url: http://#{hal9000_hostname}:10031
|
|
1892
1895
|
> Fidaty url: http://#{fidaty_hostname}:10021
|
|
@@ -1942,6 +1945,8 @@ class Release
|
|
|
1942
1945
|
host = "leftorium-#{@dns_record_identifier}.qa.colaster.com"
|
|
1943
1946
|
when stack_name.include?('rachele')
|
|
1944
1947
|
host = "rachele-#{@dns_record_identifier}.qa.colaster.com"
|
|
1948
|
+
when stack_name.include?('starsky')
|
|
1949
|
+
host = "starsky-#{@dns_record_identifier}.qa.colaster.com"
|
|
1945
1950
|
end
|
|
1946
1951
|
host
|
|
1947
1952
|
end
|
|
@@ -2047,6 +2052,8 @@ class Release
|
|
|
2047
2052
|
logical_resource_id = 'ECSServiceRacheleQA'
|
|
2048
2053
|
when stack_name.include?('crash')
|
|
2049
2054
|
logical_resource_id = 'ECSServiceCrashQA'
|
|
2055
|
+
when stack_name.include?('starsky')
|
|
2056
|
+
logical_resource_id = 'ECSServiceStarskyQA'
|
|
2050
2057
|
else
|
|
2051
2058
|
raise "Service name non gestito per lo stack #{stack_name}"
|
|
2052
2059
|
end
|