Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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
- Banana

Vegetables:
- Carrot
- Cauliflower
- Tomato
```

- Dictionary/Map

```yml
Banana:
Calories: 105
Fat: 0.4g
Carbs: 27g

Grapes:
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/)