95 lines
1.6 KiB
YAML
95 lines
1.6 KiB
YAML
|
|
# Patch: apply §10.7 memory limits to all Deployments in the local overlay.
|
||
|
|
# These are intentionally tight to stay within the 12 GB Lima VM budget.
|
||
|
|
#
|
||
|
|
# Applied as a strategic merge patch. Each stanza targets one Deployment by name.
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: pingora
|
||
|
|
namespace: ingress
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: pingora
|
||
|
|
resources:
|
||
|
|
limits:
|
||
|
|
memory: 64Mi
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: valkey
|
||
|
|
namespace: data
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: valkey
|
||
|
|
resources:
|
||
|
|
limits:
|
||
|
|
memory: 64Mi
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: opensearch
|
||
|
|
namespace: data
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: opensearch
|
||
|
|
resources:
|
||
|
|
limits:
|
||
|
|
memory: 512Mi
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: seaweedfs-filer
|
||
|
|
namespace: storage
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: filer
|
||
|
|
resources:
|
||
|
|
limits:
|
||
|
|
memory: 256Mi
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: login-ui
|
||
|
|
namespace: ory
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: login-ui
|
||
|
|
resources:
|
||
|
|
limits:
|
||
|
|
memory: 64Mi
|
||
|
|
|
||
|
|
---
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: hive
|
||
|
|
namespace: lasuite
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: hive
|
||
|
|
resources:
|
||
|
|
limits:
|
||
|
|
memory: 64Mi
|