Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amaurybsouza/yml-for-devops
A basic introduction for YML markup for all profissionals that are starting on Ansible, Kubernetes and other tools. (constantly updating)
https://github.com/amaurybsouza/yml-for-devops
ansible devops kubernetes kubernetes-cluster yml yml-configuration yml-playbook yml-reference
Last synced: 24 days ago
JSON representation
A basic introduction for YML markup for all profissionals that are starting on Ansible, Kubernetes and other tools. (constantly updating)
- Host: GitHub
- URL: https://github.com/amaurybsouza/yml-for-devops
- Owner: amaurybsouza
- License: gpl-3.0
- Created: 2021-12-02T17:04:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-02T23:10:09.000Z (about 3 years ago)
- Last Synced: 2024-05-02T02:43:35.990Z (8 months ago)
- Topics: ansible, devops, kubernetes, kubernetes-cluster, yml, yml-configuration, yml-playbook, yml-reference
- Homepage: https://amauryborgesouza.medium.com/
- Size: 18.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# YAML
According to documentation, YAML (a recursive acronym for “YAML Ain’t Markup Language”) is a data serialization language designed to be human-friendly and work well with modern programming languages for common everyday tasks. This specification is both an introduction to the YAML language and the concepts supporting it. It is also a complete specification of the information needed to develop applications for processing YAML.
## Usage
- Key value pair:
```yml
fruit: apple
vegetable: carrot
liquid: water
meat: checken
```- Array/Lists:
```yml
Fruits:
- Orange
- Apple
- BananaVegetables:
- Carrot
- Cauliflower
- Tomato
```- Dictionary/Map
```yml
Banana:
Calories: 105
Fat: 0.4g
Carbs: 27gGrapes:
calories: 62
Fat: 0.3g
Carbs: 16g
```## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.Please make sure to update tests as appropriate.
## License
[MIT](https://choosealicense.com/licenses/mit/)