aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/namespaces/codejam-winners/tulips/deployment.yaml
blob: 04effcb0826a9897755fd010384680303cead77e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
apiVersion: apps/v1
kind: Deployment
metadata:
  name: tulips
  namespace: codejam-winners
spec:
  replicas: 1
  selector:
    matchLabels:
      app: tulips
  template:
    metadata:
      labels:
        app: tulips
    spec:
      containers:
        - name: tulips
          image: ghcr.io/python-discord/cj-tulips
          imagePullPolicy: Always
          ports:
            - containerPort: 80
              name: http
          securityContext:
            readOnlyRootFilesystem: true
      securityContext:
        fsGroup: 2000
        runAsUser: 1000
        runAsNonRoot: true