Florian du Garage Num be36969dce
Some checks failed
Sync with private repo / sync (push) Has been cancelled
Run tests / tests (3.12) (push) Has been cancelled
Run tests / tests (3.9) (push) Has been cancelled
remove hard-coded uid 1000
2025-09-30 21:37:57 +02:00

27 lines
606 B
Plaintext

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: android-app
labels:
app.kubernetes.io/name: android-app
spec:
selector:
matchLabels:
app.kubernetes.io/name: android-app
template:
metadata:
labels:
app.kubernetes.io/name: android-app
spec:
securityContext:
runAsUser: {{ APP_USER_ID }}
runAsGroup: {{ APP_USER_ID }}
containers:
- name: android-app
image: {{ ANDROID_APP_DOCKER_IMAGE }}
ports:
- containerPort: 8000
securityContext:
allowPrivilegeEscalation: false