docs: add service annotation patching to example kustomization (#3020)

This commit is contained in:
Geoff Bourne 2024-07-28 13:28:42 -05:00 committed by GitHub
parent 46ee2331bf
commit f4634c3fd9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 16 additions and 0 deletions

View file

@ -11,6 +11,7 @@ on:
- "docs/**" - "docs/**"
- "examples/**" - "examples/**"
- "notes/**" - "notes/**"
- "kustomize/**"
jobs: jobs:
build: build:

View file

@ -8,6 +8,7 @@ on:
- "docs/**" - "docs/**"
- "examples/**" - "examples/**"
- "notes/**" - "notes/**"
- "kustomize/**"
- "docker-compose*.yml" - "docker-compose*.yml"
- "mkdocs.yml" - "mkdocs.yml"

View file

@ -13,10 +13,24 @@ configMapGenerator:
- name: mc - name: mc
envs: envs:
- mc.env - mc.env
patches:
# Example of using a patch to set external service name for mc-router to pick up
- path: set-external-servername.yml
``` ```
### mc.env ### mc.env
``` ```
EULA=true EULA=true
TYPE=FORGE TYPE=FORGE
```
###
```yaml
apiVersion: v1
kind: Service
metadata:
name: mc
annotations:
mc-router.itzg.me/externalServerName: forge.example.com
``` ```