apiVersion: apps/v1 kind: Deployment metadata: name: math-exercises-app annotations: # Development environment annotation environment: development spec: replicas: 1 template: spec: containers: - name: math-exercises env: - name: ENVIRONMENT value: development - name: DEBUG value: "false" # Environment variables from S3 credentials secret envFrom: - secretRef: name: s3-credentials # Reduce resource consumption in development resources: requests: memory: "32Mi" cpu: "100m" limits: memory: "64Mi" cpu: "200m"