seaweedfs-operator/config/manager/manager.yaml

43 lines
850 B
YAML
Raw Normal View History

2020-07-26 21:47:24 +00:00
apiVersion: v1
kind: Namespace
metadata:
labels:
control-plane: controller-manager
name: system
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: controller-manager
namespace: system
labels:
control-plane: controller-manager
spec:
selector:
matchLabels:
control-plane: controller-manager
replicas: 1
template:
metadata:
labels:
control-plane: controller-manager
spec:
containers:
- command:
- /manager
args:
- --enable-leader-election
image: controller:latest
2020-11-28 01:28:07 +00:00
env:
- name: ENABLE_WEBHOOKS
2022-02-27 12:58:14 +00:00
value: "true"
2020-07-26 21:47:24 +00:00
name: manager
resources:
limits:
cpu: 100m
memory: 100Mi
2020-07-26 21:47:24 +00:00
requests:
cpu: 100m
memory: 50Mi
2020-07-26 21:47:24 +00:00
terminationGracePeriodSeconds: 10