Update examples

This commit is contained in:
Darren Shepherd
2020-09-15 22:35:41 -07:00
parent 556d18c26b
commit 4eff05a5c2
153 changed files with 24853 additions and 120 deletions

View File

@@ -1,12 +1,29 @@
# Fleet Examples
This repository contains examples of how to use Fleet using different approaches.
The repo is broken up into two different sections: Single cluster and Multi Cluster.
## Single Cluster Examples
All examples will deploy content to the local cluster running the Fleet Manager.
| Example | Description |
|-------------|-------------|
| [simple](simple/) | The minimally viable repo to deploy raw Kubernetes resources |
| [manifest](manifest/) | A full example of using raw Kubernetes YAML and customizing it per target cluster |
| [helm](helm/) | A full example of using Helm and customizing it per target cluster |
| [helm-external](helm-external/) | A full example of using a Helm chart that is downloaded from a third party source and customizing it per target cluster |
| [kustomize](kustomize/) | A full example of using Kustomize and customizing it per target cluster |
| [helm-kustomize](helm-kustomize/) | A full example of using Kustomize to modify a third party Helm chart |
| [manifest](single-cluster/manifest/) | A full example of using raw Kubernetes YAML and customizing it per target cluster |
| [helm](single-cluster/helm/) | A full example of using Helm and customizing it per target cluster |
| [helm-external](single-cluster/helm-external/) | A full example of using a Helm chart that is downloaded from a third party source and customizing it per target cluster |
| [kustomize](single-cluster/kustomize/) | A full example of using Kustomize and customizing it per target cluster |
| [helm-kustomize](single-cluster/helm-kustomize/) | A full example of using Kustomize to modify a third party Helm chart |
## Multi-Cluster Examples
The examples below will deploy a single git repo to multiple clusters at once
and configure the app differently for each target.
| Example | Description |
|-------------|-------------|
| [manifest](multi-cluster/manifest/) | A full example of using raw Kubernetes YAML and customizing it per target cluster |
| [helm](multi-cluster/helm/) | A full example of using Helm and customizing it per target cluster |
| [helm-external](multi-cluster/helm-external/) | A full example of using a Helm chart that is downloaded from a third party source and customizing it per target cluster |
| [kustomize](multi-cluster/kustomize/) | A full example of using Kustomize and customizing it per target cluster |
| [helm-kustomize](multi-cluster/helm-kustomize/) | A full example of using Kustomize to modify a third party Helm chart |