Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Jan 31, 2020
1 parent b006074 commit f476523
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.2.0] - 2020-01-31
### Added
- Provide `basedir` context variable for absolute includes, e.g. `!include {{ basedir }}/files/config.ini`
- Support loading pillar and renderer modules via gitfs and sync runner

## [1.1.0] - 2019-03-10
### Added
Expand All @@ -15,8 +18,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## 1.0.0 - 2018-11-16
### Added
- - First version of ext pillar
- First version of ext pillar
- First version of ext pillar
- Yamlet and Text renderer

[unreleased]: https://github.com/:jgraichen/salt-tower/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/jgraichen/salt-tower/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/jgraichen/salt-tower/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/jgraichen/salt-tower/compare/v1.0.0...v1.1.0
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,29 @@ Recommended installation is using `pip` / `pip3` on the salt master:
$ pip install salt-tower
```

#### Using GitFS

You can include this repository as a gitfs root on synchronize runners on the master:

```yaml
gitfs_remotes:
- https://github.com/jgraichen/salt-tower.git:
- base: v1.2.0
```
Sync all modules:
```
$ salt-run saltutil.sync_all
pillar:
- pillar.tower
renderers:
- renderers.text
- renderers.yamlet
```
Please note that *everything* in this repository would be merged with your other roots.
#### Manual installation
Install the extension files from the `salt_tower/{pillar,renderers}` directories into the `extension_modules` directory configured in salt.
Expand Down

0 comments on commit f476523

Please sign in to comment.