21 lines
420 B
YAML
21 lines
420 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/kustomization.json
|
|
kind: Kustomization
|
|
replicas:
|
|
- name: mcp-proxy
|
|
count: 1
|
|
resources:
|
|
- deploy.yaml
|
|
- service.yaml
|
|
- pvc.yaml
|
|
configMapGenerator:
|
|
- name: mcp-proxy
|
|
files:
|
|
- config.json
|
|
- start.sh
|
|
images:
|
|
- name: image
|
|
newName: ghcr.io/sparfenyuk/mcp-proxy
|
|
newTag: v0.12.0
|
|
- name: node
|
|
newName: cr.wetofu.me/library/node
|
|
newTag: lts-alpine3.23 |