Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denis256/yaml-compare
https://github.com/denis256/yaml-compare
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/denis256/yaml-compare
- Owner: denis256
- Created: 2021-02-19T09:30:57.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-19T09:34:29.000Z (almost 4 years ago)
- Last Synced: 2023-02-27T22:42:16.014Z (almost 2 years ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Yaml files compare
Minimalistic go application to compare if keys from "custom-values.yaml"
override keys "values.yaml".Application will print in the end list of not matched keys by "custom-values.yaml"
Example output based on sample files:
```
***Values FlatMap:
.key3.config3 => 666
.key3.config4 => 111
.key1.key2.config1 => value1
.key1.key2.qwe => abc
.key1.config2 => value2
.key1.xyz => 123***Custom FlatMap:
.key1.xyz1 => 123
.key3.config666 => 111
.key3.config4 => 111
.key1.key2.config1 => value1
.key1.key2.custom1.value2 => qwe***Keys from custom yaml which not overriding values.yaml:
.key1.key2.custom1.value2
.key1.xyz1
.key3.config666```