SysKit logo
Namespace Manager
Namespace • ResourceQuota • LimitRange
Labels
Applied to the Namespace metadata.
Generated YAML
Client-side. Nothing is sent to a server.
apiVersion: v1
kind: Namespace
metadata:
  name: team-a
  labels:
    owner: platform
    env: prod

---
apiVersion: v1
kind: ResourceQuota
metadata:
  name: team-a-quota
  namespace: team-a
spec:
  hard:
    requests.cpu: 500m
    requests.memory: 512Mi
    limits.cpu: 1
    limits.memory: 1Gi
    pods: 20

---
apiVersion: v1
kind: LimitRange
metadata:
  name: team-a-limits
  namespace: team-a
spec:
  limits:
  - type: Container
    default:
      cpu: 500m
      memory: 512Mi
    defaultRequest:
      cpu: 100m
      memory: 128Mi