2019-06-15 23:07:46 +00:00
# SALTY DOG
2019-06-30 22:54:01 +00:00
Rule-based JSON/YAML validator using JSON schemas. Capable of filtering elements to validate partial documents,
supports multiple documents per stream or file, inserting defaults, and other magic.
2019-06-25 03:32:39 +00:00
- [SALTY DOG ](#SALTY-DOG )
2019-06-30 18:40:02 +00:00
- [Getting Started ](#Getting-Started )
- [Status ](#Status )
- [Releases ](#Releases )
2019-06-30 18:44:52 +00:00
- [Build ](#Build )
- [Install ](#Install )
2019-06-25 03:32:39 +00:00
- [Docker ](#Docker )
2019-06-30 18:40:02 +00:00
- [Node ](#Node )
- [Global ](#Global )
- [Project ](#Project )
2019-06-30 18:44:52 +00:00
- [Usage ](#Usage )
2019-06-30 18:40:02 +00:00
- [Modes ](#Modes )
2019-06-30 18:44:52 +00:00
- [Check Mode ](#Check-Mode )
- [Fix Mode ](#Fix-Mode )
- [Default Values ](#Default-Values )
- [Coercing Values ](#Coercing-Values )
- [List Mode ](#List-Mode )
- [Rules ](#Rules )
- [Enabling Rules ](#Enabling-Rules )
- [Validate Rules ](#Validate-Rules )
2019-06-15 23:07:46 +00:00
2019-06-30 18:40:02 +00:00
## Getting Started
2019-06-30 18:44:52 +00:00
`salty-dog` is distributed as a package and container, and can be installed or pulled:
2019-06-15 23:07:46 +00:00
2019-06-30 18:40:02 +00:00
```shell
> docker pull ssube/salty-dog:master
2019-06-30 18:44:52 +00:00
> yarn add -D salty-dog
2019-06-30 18:40:02 +00:00
> yarn global add salty-dog
```
2019-06-29 22:21:22 +00:00
2019-06-30 18:40:02 +00:00
**Note:** while the container is the preferred way of running `salty-dog` , it has a serious limitation: `docker run`
combines `stdout` and `stderr` , making it impossible to separate logs and the output document. Writing either the logs
or dest to a file works around this.
2019-06-16 03:04:41 +00:00
2019-06-25 03:32:39 +00:00
To download, validate, and apply a Kubernetes resource:
2019-06-16 03:46:27 +00:00
```shell
2019-06-30 21:24:42 +00:00
> curl https://raw.githubusercontent.com/ssube/k8s-shards/master/roles/apps/gitlab/server/templates/ingress.yml | \
2019-06-25 13:15:04 +00:00
salty-dog \
2019-06-30 21:24:42 +00:00
--rules rules/kubernetes.yml \
--source - \
--tag important | \
kubectl apply --dry-run -f -
2019-06-16 03:46:27 +00:00
...
2019-06-25 03:32:39 +00:00
{"name":"salty-dog","hostname":"cerberus","pid":7860,"level":30,"msg":"all rules passed","time":"2019-06-16T02:04:37.797Z","v":0}
2019-06-25 03:50:46 +00:00
ingress.extensions/gitlab created (dry run)
2019-06-16 03:46:27 +00:00
```
2019-06-30 21:35:22 +00:00
2019-06-30 18:40:02 +00:00
## Status
[![Pipeline status ](https://img.shields.io/gitlab/pipeline/ssube/salty-dog.svg?gitlab_url=https%3A%2F%2Fgit.apextoaster.com&logo=gitlab )](https://git.apextoaster.com/ssube/salty-dog/commits/master)
[![MIT license ](https://img.shields.io/github/license/ssube/salty-dog.svg )](https://github.com/ssube/salty-dog/blob/master/LICENSE.md)
[![Open bug count ](https://img.shields.io/github/issues-raw/ssube/salty-dog/type-bug.svg )](https://github.com/ssube/salty-dog/issues?q=is%3Aopen+is%3Aissue+label%3Atype%2Fbug)
[![Open issue count ](https://img.shields.io/github/issues-raw/ssube/salty-dog.svg )](https://github.com/ssube/salty-dog/issues?q=is%3Aopen+is%3Aissue)
[![Closed issue count ](https://img.shields.io/github/issues-closed-raw/ssube/salty-dog.svg )](https://github.com/ssube/salty-dog/issues?q=is%3Aissue+is%3Aclosed)
2019-06-30 21:24:42 +00:00
[![Renovate badge ](https://badges.renovateapi.com/github/ssube/salty-dog )](https://renovatebot.com)
2019-06-30 18:40:02 +00:00
[![Known vulnerabilities ](https://snyk.io/test/github/ssube/salty-dog/badge.svg )](https://snyk.io/test/github/ssube/salty-dog)
[![Dependency status ](https://img.shields.io/david/ssube/salty-dog.svg )](https://david-dm.org/ssube/salty-dog)
[![Dev dependency status ](https://img.shields.io/david/dev/ssube/salty-dog.svg )](https://david-dm.org/ssube/salty-dog?type=dev)
[![Maintainability score ](https://api.codeclimate.com/v1/badges/5d4326d6f68a2fa137cd/maintainability )](https://codeclimate.com/github/ssube/salty-dog/maintainability)
[![Technical debt ratio ](https://img.shields.io/codeclimate/tech-debt/ssube/salty-dog.svg )](https://codeclimate.com/github/ssube/salty-dog/trends/technical_debt)
[![Quality issues ](https://img.shields.io/codeclimate/issues/ssube/salty-dog.svg )](https://codeclimate.com/github/ssube/salty-dog/issues)
[![Language grade: JavaScript ](https://img.shields.io/lgtm/grade/javascript/g/ssube/salty-dog.svg?logo=lgtm )](https://lgtm.com/projects/g/ssube/salty-dog/context:javascript)
[![Total alerts ](https://img.shields.io/lgtm/alerts/g/ssube/salty-dog.svg )](https://lgtm.com/projects/g/ssube/salty-dog/alerts/)
## Releases
[![Github release version ](https://img.shields.io/github/tag/ssube/salty-dog.svg )](https://github.com/ssube/salty-dog/releases)
[![Commits since release ](https://img.shields.io/github/commits-since/ssube/salty-dog/v0.4.1.svg )](https://github.com/ssube/salty-dog/compare/v0.4.1...master)
[![npm release version ](https://img.shields.io/npm/v/salty-dog.svg )](https://www.npmjs.com/package/salty-dog)
[![Docker image size ](https://images.microbadger.com/badges/image/ssube/salty-dog:master.svg )](https://microbadger.com/images/ssube/salty-dog:master)
2019-06-30 18:44:52 +00:00
## Build
This project is written in Typescript and requires `node` and `yarn` to build.
```shell
> git clone git@github.com:ssube/salty-dog.git
> cd salty-dog
> make
```
After building, run with: `node out/index.js`
`make` targets are provided for some common arguments:
```shell
2019-06-30 21:24:42 +00:00
> curl https://raw.githubusercontent.com/ssube/k8s-shards/master/roles/apps/gitlab/server/templates/ingress.yml | \
make run-stream 2> >($(yarn bin)/bunyan) > >(kubectl apply --dry-run -f -)
2019-06-30 18:44:52 +00:00
...
[2019-06-16T03:23:56.645Z] INFO: salty-dog/8015 on cerberus: all rules passed
ingress.extensions/gitlab created (dry run)
```
## Install
2019-06-16 03:46:27 +00:00
2019-06-17 14:11:26 +00:00
### Docker
2019-06-29 22:21:22 +00:00
To run with Docker: `docker run --rm ssube/salty-dog:master`
2019-06-25 13:37:54 +00:00
The latest semi-stable image is `ssube/salty-dog:master` . All
[tags are listed here ](https://cloud.docker.com/repository/docker/ssube/salty-dog/tags ).
2019-06-17 14:11:26 +00:00
2019-06-25 03:32:39 +00:00
The Docker container is published for each branch and git tag, tagged with the version slug (`.` replaced with `-` ,
mostly).
2019-06-17 14:11:26 +00:00
2019-06-25 13:15:04 +00:00
Rules are baked into the image in `/salty-dog/rules` . To use custom rules, mount them with
`-v $(pwd)/rules:/salty-dog/rules:ro` and load with `--rules /rules/foo.yml` .
2019-06-16 00:57:31 +00:00
2019-06-30 18:40:02 +00:00
### Node
#### Global
To install with Yarn as a global CLI tool: `yarn global add salty-dog`
To run with Node:
```shell
> export PATH="${PATH}:$(yarn global bin)"
> salty-dog --help
```
#### Project
To install with Yarn for a single project: `yarn add -D salty-dog`
To run with Node:
```shell
> export PATH="${PATH}:$(yarn bin)"
> salty-dog --help
```
2019-06-30 18:44:52 +00:00
## Usage
2019-06-30 18:40:02 +00:00
### Modes
`salty-dog` can run in a few different modes: `check` mode will report errors, `fix` mode will attempt to modify the
input document, and `list` mode will print the active set of rules.
2019-06-30 18:44:52 +00:00
#### Check Mode
2019-06-16 02:08:21 +00:00
2019-06-25 03:32:39 +00:00
By default, `salty-dog` will validate the structure and contents of the `--source` document. If all rules pass, the
document will be printed to `--dest` .
2019-06-16 00:57:31 +00:00
2019-06-15 23:07:46 +00:00
```shell
2019-06-16 02:21:42 +00:00
> cat examples/kubernetes-resources-pass.yml | salty-dog \
2019-06-16 02:08:21 +00:00
--rules rules/kubernetes.yml \
--tag important
2019-06-15 23:56:42 +00:00
2019-06-16 02:08:21 +00:00
...
2019-06-15 23:56:42 +00:00
[2019-06-15T23:53:34.223Z] INFO: salty-dog/19839 on cerberus: all rules passed
2019-06-16 02:08:21 +00:00
2019-06-25 03:32:39 +00:00
> cat examples/kubernetes-resources-fail.yml | salty-dog \
2019-06-16 02:08:21 +00:00
--rules rules/kubernetes.yml \
2019-06-25 03:32:39 +00:00
--tag important
2019-06-16 02:08:21 +00:00
...
2019-06-25 03:32:39 +00:00
[2019-06-15T23:56:04.764Z] ERROR: salty-dog/22211 on cerberus: some rules failed (errors=1)
2019-06-16 02:08:21 +00:00
2019-06-25 03:32:39 +00:00
```
2019-06-16 02:08:21 +00:00
2019-06-25 03:32:39 +00:00
The `--source` and `--dest` default to stdin and stdout, respectively, but a path may be provided:
2019-06-16 02:08:21 +00:00
```shell
2019-06-25 03:32:39 +00:00
> salty-dog \
--rules rules/kubernetes.yml \
--tag important \
--source examples/kubernetes-resources-pass.yml \
--dest /tmp/kubernetes-resource.yml
2019-06-16 02:08:21 +00:00
...
2019-06-25 03:32:39 +00:00
[2019-06-15T23:53:34.223Z] INFO: salty-dog/19839 on cerberus: all rules passed
2019-06-16 02:08:21 +00:00
```
2019-06-30 18:44:52 +00:00
#### Fix Mode
2019-06-15 23:58:06 +00:00
2019-06-25 03:32:39 +00:00
`salty-dog` can also add default values to missing properties with `--mode fix` . If a rule does not immediately pass
with the `--source` document, but defaults are provided in the schema, the defaults will be inserted before printing to
`--dest` .
2019-06-15 23:58:06 +00:00
2019-06-30 18:44:52 +00:00
##### Default Values
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
Properties that appear in the schema with a `default` provided will be added to each element as it is checked. Rules
apply in order, as do their defaults.
2019-06-15 23:07:46 +00:00
2019-06-30 18:44:52 +00:00
##### Coercing Values
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
Properties that appear in the document with a different `type` than they have in the schema may be coerced, if the
value is compatible with the schema type. [The full matrix of valid type coercions ](https://ajv.js.org/coercion.html )
is documented by Ajv.
2019-06-15 23:07:46 +00:00
2019-06-30 18:44:52 +00:00
#### List Mode
2019-06-30 18:40:02 +00:00
`salty-dog` can list the active set of rules, to help debug tags and inclusion.
```shell
> salty-dog \
--rules rules/kubernetes.yml \
--tag important \
--mode list
...
[2019-06-30T18:39:11.930Z] INFO: salty-dog/26330 on cerberus: listing active rules
rules: [
{
"desc": "resource limits are too low",
"level": "debug",
"name": "kubernetes-resources-minimum-cpu",
...
]
```
2019-06-30 18:44:52 +00:00
### Rules
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
Rules combine a jsonpath expression and JSON schema to select and validate the document.
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
The rule's `select` expression is used to select nodes that should be validated, which are `filter` ed, then `check` ed.
2019-06-15 23:58:06 +00:00
2019-06-25 03:32:39 +00:00
The structure of rule files and the rules within them [are documented here ](docs/rules.md ).
2019-06-15 23:07:46 +00:00
2019-06-30 18:44:52 +00:00
#### Enabling Rules
2019-06-15 23:07:46 +00:00
2019-06-25 23:46:05 +00:00
All rules are disabled by default and must be enabled by name, level, or tag.
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
To enable a single rule by name, `--include-name foo-rule` .
2019-06-15 23:07:46 +00:00
2019-06-25 23:46:05 +00:00
To enable a group of rules by level, `--include-level warn` .
2019-06-25 03:32:39 +00:00
To enable a group of rules by tag, `--include-tag foo` .
2019-06-15 23:07:46 +00:00
2019-06-30 18:44:52 +00:00
#### Validate Rules
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
To validate the rules in the `rules/` directory using the meta-rules:
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
```shell
> make run-rules
2019-06-15 23:07:46 +00:00
2019-06-25 03:32:39 +00:00
...
{"name":"salty-dog","hostname":"cerberus","pid":29403,"level":30,"msg":"all rules passed","time":"2019-06-16T00:56:55.132Z","v":0}
```