vagrant-k3s 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d1e649b8d729b21762a49008b3dfca4446b736c9067e3c8dc28ac759403f4ab
4
- data.tar.gz: 39e9abd547653ccf3c00007099ebb1c482e1d57f51c9fb68ebd2c70757defb95
3
+ metadata.gz: 77bb215e40c54595d5a4f72eb3f0cda81cf9e48e2d3e66dfd5922fc924af8f20
4
+ data.tar.gz: fc9e4cab929cd9d3b2af9c5c50512530389afc40e288d6f439fdc9f446da304e
5
5
  SHA512:
6
- metadata.gz: ab65ef5bcf8c8f653002cf84c457cecc8478812751b5b4f42efabb7402a6f015208990097f3585613bb7e88da113b645f78e7e089bfdeb4bd8c8ad480aba60d3
7
- data.tar.gz: 8f36357d7283a91f1d917475b6ede443aae8067c6dad498debc1316746c1381ed41a8951318c223409e99d56dc218f9d9a1d07b694b0410ca61c0724346403c7
6
+ metadata.gz: e3e4150a8df1d093f2126d40999f49da737beb661a4a8d5a7ca3a4422702d0a05766fd8bed4aa65370f45f1239e61b3d6db689f1a7468c5b34b7d9a13a59cf59
7
+ data.tar.gz: 940fc3e8210c2006ac246700ed7aea4fe85ec0fbb3889321993858a4fa730d80461e8811fa35f063e80a73c1ad5864680eabce0f7523783b9144d4729b29124a
data/Gemfile.lock CHANGED
@@ -48,9 +48,17 @@ GEM
48
48
  erubi (1.12.0)
49
49
  excon (0.99.0)
50
50
  ffi (1.15.5)
51
+ google-protobuf (3.22.2-arm64-darwin)
52
+ google-protobuf (3.22.2-x86_64-darwin)
51
53
  google-protobuf (3.22.2-x86_64-linux)
52
54
  googleapis-common-protos-types (1.5.0)
53
55
  google-protobuf (~> 3.14)
56
+ grpc (1.52.0)
57
+ google-protobuf (~> 3.21)
58
+ googleapis-common-protos-types (~> 1.0)
59
+ grpc (1.52.0-x86_64-darwin)
60
+ google-protobuf (~> 3.21)
61
+ googleapis-common-protos-types (~> 1.0)
54
62
  grpc (1.52.0-x86_64-linux)
55
63
  google-protobuf (~> 3.21)
56
64
  googleapis-common-protos-types (~> 1.0)
@@ -143,6 +151,8 @@ GEM
143
151
  winrm (~> 2.0)
144
152
 
145
153
  PLATFORMS
154
+ arm64-darwin-22
155
+ x86_64-darwin-20
146
156
  x86_64-linux
147
157
 
148
158
  DEPENDENCIES
data/README.md CHANGED
@@ -12,6 +12,11 @@ vagrant up --provider=<your favorite provider>
12
12
  ```ruby
13
13
  Vagrant.configure("2") do |config|
14
14
  config.vm.box = "dweomer/centos-8.4-amd64"
15
+ # deal with the repo due to the EOL of centos-8
16
+ config.vm.provision :shell, :inline => "
17
+ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-*
18
+ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-Linux-*
19
+ "
15
20
  config.vm.provision :k3s, run: "once" do |k3s|
16
21
  # installer_url: can be anything that curl can access from the guest
17
22
  # default =>`https://get.k3s.io`
@@ -90,4 +95,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/k3s-io
90
95
 
91
96
  ## Code of Conduct
92
97
 
93
- This project is intended to be a safe, welcoming space for collaboration. Everyone interacting in the vagrant-k3s projects codebase is expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md).
98
+ This project is intended to be a safe, welcoming space for collaboration. Everyone interacting in the vagrant-k3s projects codebase is expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module VagrantPlugins
4
4
  module K3s
5
- VERSION = '0.1.6'
5
+ VERSION = '0.1.7'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-k3s
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Nola
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-03-13 00:00:00.000000000 Z
12
+ date: 2023-06-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake