Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabianlee/kustomize-overlays-with-reload
https://github.com/fabianlee/kustomize-overlays-with-reload
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fabianlee/kustomize-overlays-with-reload
- Owner: fabianlee
- Created: 2022-04-13T00:19:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-20T09:24:08.000Z (over 2 years ago)
- Last Synced: 2024-08-01T13:32:13.230Z (3 months ago)
- Language: Shell
- Size: 26.4 KB
- Stars: 11
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example usage of kustomize with overlays
## base
* reloader - watches for changing configmaps and [reloads](https://github.com/stakater/Reloader) with rolling restart
* nginx-index-html - nginx app with configmap for index.html
* nginx-basic-auth - nginx app with configmap for index.html and .htpasswd BASIC auth
* hello-app - simple hello app
* tiny-tools-dep - alpine based tiny-tools with network utilities as Deployment
* tiny-tools-ds - alpine based tiny-tools with network utilities as Daemonset## nginx overlays
Shows how nginx base can be enriched
* nginx-index-with-reloader - overlays 'nginx-index-html' and adds ability for dynamic reload of index.html
* nginx-cm-reloader - overlays 'nginx-index-html' and adds ability for dynamic reload of index.html and environment configmap## tiny-tools overlays
Shows the ability of patches to transform a base definition.
* tiny-tools-dep-to-ds - takes 'tiny-tools-ds' base (which is DaemonSet) and converts it to Deployment using kustomize patches
* tiny-tools-ds-to-dep - takes 'tiny-tools-dep' base (which is Deployment) and converts it to DaemonSet using kustomize patches