Added kustomize base files (#1800)

This commit is contained in:
Geoff Bourne
2022-10-23 22:00:16 -05:00
committed by GitHub
parent 1769f28015
commit 5e2553274f
4 changed files with 93 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
This directory provides a base to use with [kubectl kustomize](https://kubernetes.io/docs/tasks/manage-kubernetes-objects/kustomization/).
## Example overlay content
### kustomization.yml
```yaml
nameSuffix: "-forge"
commonLabels:
server: forge
bases:
- https://github.com/itzg/docker-minecraft-server.git/kustomize/base
configMapGenerator:
- name: mc
envs:
- mc.env
```
### mc.env
```
EULA=true
TYPE=FORGE
```