-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## CronJob | ||
* [cronjob.yaml](cronjob.yaml) | ||
* Deploy git2kube as a Kubernetes CronJob | ||
* Synchronise with Kubernetes ConfigMap or Secret | ||
* Suitable for longer refresh intervals | ||
* Might be harder to monitor | ||
* Updates might have higher latency due to scheduling | ||
* Low resource requirements | ||
|
||
## Watcher | ||
* [watcher.yaml](watcher.yaml) | ||
* Deploy git2kube as a Kubernetes Deployment | ||
* Synchronise with Kubernetes ConfigMap or Secret | ||
* Suitable for short refresh intervals | ||
* Easier to monitor | ||
* Low latency updates | ||
* Low resource requirements | ||
|
||
## Sidecar | ||
* [sidecar.yaml](sidecar.yaml) | ||
* Deploy git2kube as part of different application Pod | ||
* Synchronise with application by using shared volume | ||
* Suitable for short refresh intervals | ||
* Easier to monitor | ||
* Low latency updates | ||
* Bigger resource requirements |