chef: update
This commit is contained in:
parent
4ddec681c9
commit
85ae9d769e
115
chef.md
115
chef.md
|
@ -1,80 +1,109 @@
|
||||||
---
|
---
|
||||||
title: Chef
|
title: Chef
|
||||||
category: Devops
|
category: Devops
|
||||||
|
layout: 2017/sheet
|
||||||
---
|
---
|
||||||
|
|
||||||
### Install
|
### Install
|
||||||
|
|
||||||
In your server:
|
In your server:
|
||||||
|
{: .-setup}
|
||||||
|
|
||||||
$ sudo apt-get install curl
|
```bash
|
||||||
|
$ sudo apt-get install curl
|
||||||
|
```
|
||||||
|
|
||||||
$ curl -L https://www.opscode.com/chef/install.sh | bash
|
```bash
|
||||||
Thank you for installing Chef!
|
$ curl -L https://www.opscode.com/chef/install.sh | bash
|
||||||
|
Thank you for installing Chef!
|
||||||
|
```
|
||||||
|
|
||||||
$ chef-solo -v
|
```bash
|
||||||
...
|
$ chef-solo -v
|
||||||
Chef: 11.4.0
|
...
|
||||||
|
Chef: 11.4.0
|
||||||
|
```
|
||||||
|
|
||||||
### Start the cookbook
|
### Start the cookbook
|
||||||
|
|
||||||
wget http://github.com/opscode/chef-repo/tarball/master -O - | tar xzf - --strip-components=1
|
```bash
|
||||||
|
wget http://github.com/opscode/chef-repo/tarball/master -O - | tar xzf - --strip-components=1
|
||||||
|
```
|
||||||
|
|
||||||
### Knife
|
### Knife
|
||||||
|
|
||||||
$ knife cookbook site download mysql
|
```bash
|
||||||
|
$ knife cookbook site download mysql
|
||||||
|
```
|
||||||
|
|
||||||
### Invoking chef-solo
|
### Invoking chef-solo
|
||||||
|
|
||||||
$ chef-solo -c solo.rb -j web.json
|
```bash
|
||||||
|
$ chef-solo -c solo.rb -j web.json
|
||||||
|
```
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
### Simple compile-from-source
|
### Simple compile-from-source
|
||||||
|
|
||||||
execute "tar --no-same-owner -zxf hi.tar.gz" do
|
```ruby
|
||||||
cwd "/usr/local/src"
|
execute "tar --no-same-owner -zxf hi.tar.gz" do
|
||||||
creates "/usr/local/src/node-v#{version}"
|
cwd "/usr/local/src"
|
||||||
end
|
creates "/usr/local/src/node-v#{version}"
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
bash "compile" do
|
```ruby
|
||||||
cwd "/usr/local/src/node-v#{version}"
|
bash "compile" do
|
||||||
code %[
|
cwd "/usr/local/src/node-v#{version}"
|
||||||
PATH=/usr/local/bin:$PATH
|
code %[
|
||||||
./configure
|
PATH=/usr/local/bin:$PATH
|
||||||
make
|
./configure
|
||||||
]
|
make
|
||||||
creates "/usr/local/src/node-v#{version}/node"
|
]
|
||||||
end
|
creates "/usr/local/src/node-v#{version}/node"
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
### remote file
|
### remote file
|
||||||
|
|
||||||
remote_file "/usr/local/src/hi.tar.gz" do
|
```ruby
|
||||||
source "http://..."
|
remote_file "/usr/local/src/hi.tar.gz" do
|
||||||
checksum "ab83be..."
|
source "http://..."
|
||||||
mode 0644
|
checksum "ab83be..."
|
||||||
action :create_if_missing
|
mode 0644
|
||||||
end
|
action :create_if_missing
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
### ruby_block
|
### ruby_block
|
||||||
|
|
||||||
ruby_block "name" do
|
```ruby
|
||||||
block { File.read ... }
|
ruby_block "name" do
|
||||||
not_if { File.exists?(...) }
|
block { File.read ... }
|
||||||
end
|
not_if { File.exists?(...) }
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
### Execute
|
### Execute
|
||||||
|
|
||||||
execute "name" do
|
```ruby
|
||||||
cwd "..."
|
execute "name" do
|
||||||
environment({ "PATH" => "..." })
|
cwd "..."
|
||||||
command "make install"
|
environment({ "PATH" => "..." })
|
||||||
creates "..."
|
command "make install"
|
||||||
end
|
creates "..."
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
### Conditions
|
### Conditions
|
||||||
|
|
||||||
creates "/usr/local/src/node-v#{version}/node"
|
```ruby
|
||||||
not_if { File.exists?('...') }
|
creates "/usr/local/src/node-v#{version}/node"
|
||||||
|
not_if { File.exists?('...') }
|
||||||
|
```
|
||||||
|
|
||||||
### References
|
## Also see
|
||||||
|
|
||||||
* http://gettingstartedwithchef.com/
|
* [Getting started with Chef](http://gettingstartedwithchef.com/) _(gettingstartedwithchef.com)_
|
||||||
* https://github.com/mdxp/nodejs-cookbook/blob/master/recipes/install_from_source.rb
|
* [install_from_source.rb recipe](https://github.com/mdxp/nodejs-cookbook/blob/master/recipes/install_from_source.rb) _(github.com)_
|
||||||
|
|
10
parsley.md
10
parsley.md
|
@ -19,13 +19,21 @@ intro: |
|
||||||
## Parsley
|
## Parsley
|
||||||
{: .-three-column}
|
{: .-three-column}
|
||||||
|
|
||||||
|
### Installing via NPM
|
||||||
|
|
||||||
|
```
|
||||||
|
npm install --save parsleyjs
|
||||||
|
```
|
||||||
|
|
||||||
|
[parsleyjs](https://www.npmjs.com/package/parsleyjs) is the Parsley form validator. ('parsley' is a different package)
|
||||||
|
|
||||||
### Enabling
|
### Enabling
|
||||||
|
|
||||||
#### via HTML
|
#### via HTML
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<form data-parsley-validate>
|
<form data-parsley-validate>
|
||||||
<!-- not preferred -->
|
<!-- ✗ not preferred -->
|
||||||
```
|
```
|
||||||
|
|
||||||
#### via JavaScript
|
#### via JavaScript
|
||||||
|
|
Loading…
Reference in New Issue