souls 0.7.7 → 0.7.8
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/lib/souls.rb +2 -2
- data/lib/souls/version.rb +1 -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: ef85bbedb445f7c3c65f6fdbc785de07dbcfa965440592ad3b338a1e65aa64b3
|
|
4
|
+
data.tar.gz: 395b1df6bff72559f72da482c4f6631ed12cd87b9d29dbfbfb8da4a5c475fb0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cffd9771dcdbaa5a522fbf168dafb604872761dac670d7dd4870e523c797d35c9a90410036ff72f215290432cb709a107e32590782caf51b341e5e1c3ee81e1
|
|
7
|
+
data.tar.gz: 3d5061da46408d32043d8c4df5f9092a05c46fd6ab28cd7be01815c40151711d62bdf4360ef5e2468491deeb8e061f92c02bca645778cd2d549cda8f6da94216
|
data/lib/souls.rb
CHANGED
|
@@ -246,13 +246,13 @@ module Souls
|
|
|
246
246
|
app = Souls.configuration.app
|
|
247
247
|
namespace = Souls.configuration.namespace
|
|
248
248
|
domain = Souls.configuration.domain
|
|
249
|
-
`echo "#{domain}. 300 IN A $(kubectl get ingress --namespace #{namespace} | grep #{app} | awk '{print $3}')" >> ./infra/
|
|
249
|
+
`echo "#{domain}. 300 IN A $(kubectl get ingress --namespace #{namespace} | grep #{app} | awk '{print $3}')" >> ./infra/dns_conf`
|
|
250
250
|
"created dns file!"
|
|
251
251
|
end
|
|
252
252
|
|
|
253
253
|
def set_dns
|
|
254
254
|
project_id = Souls.configuration.project_id
|
|
255
|
-
`gcloud dns record-sets import -z=#{project_id} --zone-file-format ./infra/
|
|
255
|
+
`gcloud dns record-sets import -z=#{project_id} --zone-file-format ./infra/dns_conf`
|
|
256
256
|
end
|
|
257
257
|
|
|
258
258
|
def update_container zone: :asia
|
data/lib/souls/version.rb
CHANGED