--- apiVersion: apps/v1 kind: Deployment metadata: name: arrproxy-ui namespace: arrstack annotations: argocd.argoproj.io/sync-wave: "2" spec: replicas: 2 selector: matchLabels: app: arrproxy-ui strategy: rollingUpdate: maxUnavailable: 1 type: RollingUpdate template: metadata: labels: app: arrproxy-ui spec: serviceAccountName: default automountServiceAccountToken: false securityContext: runAsNonRoot: true runAsUser: 65532 runAsGroup: 65532 fsGroup: 65532 seccompProfile: type: RuntimeDefault containers: - name: ui image: artifactapi.k8s.syd1.au.unkin.net/docker-internal/arrproxy-ui:v0.4.0 imagePullPolicy: IfNotPresent ports: - containerPort: 8080 name: http protocol: TCP env: - name: ARRPROXY_UI_ADDR value: ":8080" livenessProbe: httpGet: path: /livez port: http initialDelaySeconds: 10 periodSeconds: 30 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: httpGet: path: /readyz port: http initialDelaySeconds: 5 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true capabilities: drop: - ALL resources: requests: cpu: 50m memory: 32Mi limits: cpu: 200m memory: 128Mi restartPolicy: Always