knife-azure 1.8.6 → 1.8.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/knife-azure/version.rb +1 -1
- metadata +2 -3
- data/README.md +0 -75
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4f9a3c08e0a36f36d8120486145d30621eedaf4888e19f1ed7fe0dfaefcf70c
|
4
|
+
data.tar.gz: 2495ae7f3e8c346447ab3026b58897c7b625920c94a18519431971252b102bf1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba99a2356113d4bda21473906b18c698d56ac24863145fe1f29bcb1e985694864a1c0ca8ce766338083f8f6f5a5a5202b03424269b2bb6d16ae4bb1b7041a4a2
|
7
|
+
data.tar.gz: 6b36e5c074563b57be76ad25e921d88d1bbd227e077a5f2bbc87190c303fae69392bdc90e2d7268ba91ba1043edbeae8d1e7c356b5cd47dad41b58760fda8bfd
|
data/lib/knife-azure/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-azure
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Barry Davis
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-12-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|
@@ -202,7 +202,6 @@ extra_rdoc_files:
|
|
202
202
|
- LICENSE
|
203
203
|
files:
|
204
204
|
- LICENSE
|
205
|
-
- README.md
|
206
205
|
- lib/azure/azure_interface.rb
|
207
206
|
- lib/azure/custom_errors.rb
|
208
207
|
- lib/azure/helpers.rb
|
data/README.md
DELETED
@@ -1,75 +0,0 @@
|
|
1
|
-
# Knife Azure
|
2
|
-
|
3
|
-
[![Gem Version](https://badge.fury.io/rb/knife-azure.svg)](https://rubygems.org/gems/knife-azure) [![Build Status](https://travis-ci.org/chef/knife-azure.svg?branch=master)](https://travis-ci.org/chef/knife-azure)
|
4
|
-
|
5
|
-
## Description
|
6
|
-
|
7
|
-
A [knife] (<http://docs.chef.io/knife.html>) plugin to create, delete, and enumerate [Microsoft Azure] (<https://azure.microsoft.com>) resources to be managed by Chef.
|
8
|
-
|
9
|
-
NOTE: You may also want to consider using the [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli), this application is written by the Azure team and has many other integrations with Azure. If click [here](https://github.com/chef-partners/azure-chef-extension/blob/master/examples/azure-xplat-cli-examples.md) you'll see deeper examples of using the Chef extension and Azure.
|
10
|
-
|
11
|
-
## Installation
|
12
|
-
|
13
|
-
Be sure you are running the latest version of Chef DK, which can be installed via:
|
14
|
-
|
15
|
-
```
|
16
|
-
https://downloads.chef.io/chef-dk/
|
17
|
-
```
|
18
|
-
|
19
|
-
This plugin is distributed as a Ruby Gem. To install it, run:
|
20
|
-
|
21
|
-
```bash
|
22
|
-
chef gem install knife-azure
|
23
|
-
```
|
24
|
-
|
25
|
-
Depending on your system's configuration, you may need to run this command with root/administrator privileges.
|
26
|
-
|
27
|
-
## Modes
|
28
|
-
|
29
|
-
`knife-azure 1.6.0` onwards supports Azure Resource Manager (preferred). You can easily switch between:
|
30
|
-
|
31
|
-
- Resource manager: commands using the Azure Resource Manager API
|
32
|
-
- Service management: commands using the Azure service management API
|
33
|
-
|
34
|
-
They are not designed to work together. Commands starting with `knife azurerm` use ARM mode, while commands starting with `knife azure` use ASM mode.
|
35
|
-
|
36
|
-
## Configuration
|
37
|
-
|
38
|
-
1. [ARM Configuration](docs/configuration.md#arm-mode)
|
39
|
-
1. [ASM Configuration](docs/configuration.md#asm-mode)
|
40
|
-
|
41
|
-
## Detailed Usage
|
42
|
-
|
43
|
-
1. [ARM Mode](docs/ARM.md)
|
44
|
-
1. [ASM Mode](docs/ASM.md)
|
45
|
-
|
46
|
-
## Bootstrap existing VM to install the chef-client using chef-extension
|
47
|
-
|
48
|
-
We have added a utility in ARM and ASM to bootstrap existing VM. This will install the chef-client using chef extension on your VM.
|
49
|
-
|
50
|
-
1. [Bootstrap Doc for ARM Mode](docs/bootstrap.md#arm-mode)
|
51
|
-
1. [Bootstrap Doc for ASM Mode](docs/bootstrap.md#asm-mode)
|
52
|
-
|
53
|
-
## Contributing
|
54
|
-
|
55
|
-
For information on contributing to this project see <https://github.com/chef/chef/blob/master/CONTRIBUTING.md>
|
56
|
-
|
57
|
-
## License
|
58
|
-
|
59
|
-
Copyright:: Copyright (c) 2012-2016 Chef Software, Inc.
|
60
|
-
|
61
|
-
License:: Apache License, Version 2.0
|
62
|
-
|
63
|
-
```text
|
64
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
65
|
-
you may not use this file except in compliance with the License.
|
66
|
-
You may obtain a copy of the License at
|
67
|
-
|
68
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
69
|
-
|
70
|
-
Unless required by applicable law or agreed to in writing, software
|
71
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
72
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
73
|
-
See the License for the specific language governing permissions and
|
74
|
-
limitations under the License.
|
75
|
-
```
|