rops 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +1 -1
  4. data/lib/deployer.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: edce405e87d5a4199f1bf81eb2b308ffd59e980bfd8cca9e5af65d2766fe765d
4
- data.tar.gz: 28579f4f236865908f1a0fdbac465225285c9961a2aaf13aa1513bd477a7481f
3
+ metadata.gz: 829dd8b1f5c11509c391c2cdbc8b712f76205bd70fbfef742e6207fa13b7511c
4
+ data.tar.gz: 21f4dced40d80caf258fb7c4e7e03f52b3eee5841c8075477a3efb2fc45f7705
5
5
  SHA512:
6
- metadata.gz: 70d5f614103f56e270c43014c81bc4801223a0fbae5977f4f658367b590c96ba0308c631c88f75c8f18c88882dfb350fee85b620f477afa1db524775f406d1c7
7
- data.tar.gz: ed7bb0203a5dbe569019bef605e9a8ab805de1d8a0914f8d9162b4157c64b7a78489000ef13fbb1e112feced24a5a9a7f71244a1582e48ea4d18aa8a909703e4
6
+ metadata.gz: 0d15fd838d223d3603959358e75afd9eb7603f8ce77dd87e4f4be629b0a4872c62fc5c4507c7502cd641905176146d7f89777bfa66578f54094d5589bcc173ce
7
+ data.tar.gz: 10235cd6c06c44271c0d63afdee05ac9964f6041dd73cd3065dd2c188098dc0d1101b59548a5c5326998bbd140c04c73c62d0751e4308f1b03dc452b33cf2da8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rops (1.0.1)
4
+ rops (1.0.2)
5
5
  activesupport (~> 6.1.4)
6
6
  dry-cli (~> 0.7.0)
7
7
  git (~> 1.9.1)
data/README.md CHANGED
@@ -49,7 +49,7 @@ images:
49
49
  The Git branch to build, by default `master`. Overridden with the `default_branch` field in the configuration file.
50
50
 
51
51
  #### Docker Registry
52
- The Docker registry to push container images. By default, `docker.io/r360`, which is probably not what you want and should be overridden by setting the `registry` field in the configuration file.
52
+ The Docker registry to push container images. By default, `r360`, which is probably not what you want and should be overridden by setting the `registry` field in the configuration file.
53
53
 
54
54
  #### Kubernetes Context
55
55
  The name of the Kubernetes context to deploy to (as listed in `~/.kube/config`). Defaults to `staging` and overridden with the `default_context` field in the configuration file.
data/lib/deployer.rb CHANGED
@@ -9,7 +9,7 @@ class Deployer
9
9
  CONFIG_DEFAULTS = {
10
10
  'repository' => nil,
11
11
  'default_branch' => 'master',
12
- 'registry' => 'docker.io/r360',
12
+ 'registry' => 'r360',
13
13
  'default_context' => 'staging',
14
14
  'production_context' => 'production',
15
15
  'images' => []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rops
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Sloan