This repository contains examples of using Besom to build and deploy cloud applications and infrastructure.
Each example has a two-part prefix, <cloud>-<topic>
, to indicate which <cloud>
and <topic>
it pertains to.
For example, <cloud>
could be aws
for Amazon Web Services,
azure
for Microsoft Azure,
gcp
for Google Cloud Platform,
kubernetes
for Kubernetes.
See the Besom documentation for more details on getting started with Besom.
You can checkout selected examples you want by using a sparse checkout. The following example shows how checkout only the example you want.
$ mkdir examples && cd examples
$ git init
$ git remote add origin -f https://github.com/VirtusLab/besom
$ git config core.sparseCheckout true
$ echo examples/<example> >> .git/info/sparse-checkout
$ git pull origin master