apiVersion: apps/v1 kind: Deployment metadata: annotations: a8r.io/repository: ssh://git@git.tr1ceracop.de:222/gitea_admin/k8s-and-chill.git argocd.argoproj.io/sync-wave: "-1" name: redis namespace: matrix spec: replicas: 1 selector: matchLabels: app.kubernetes.io/name: redis strategy: type: Recreate template: metadata: labels: app.kubernetes.io/name: redis spec: containers: - command: - redis-server - --save - "" - --appendonly - "no" image: docker.io/redis:7-alpine imagePullPolicy: IfNotPresent name: redis ports: - containerPort: 6379 name: redis resources: limits: memory: 64Mi requests: cpu: 10m memory: 16Mi securityContext: allowPrivilegeEscalation: false capabilities: drop: - ALL readOnlyRootFilesystem: true securityContext: fsGroup: 999 runAsGroup: 999 runAsNonRoot: true runAsUser: 999 seccompProfile: type: RuntimeDefault