apiVersion: apps/v1
kind: Deployment
metadata:
  name: whoogle
  namespace: whoogle
spec:
  replicas: 1
  selector:
    matchLabels:
      app.kubernetes.io/name: whoogle
  strategy:
    rollingUpdate:
      maxSurge: 25%
      maxUnavailable: 25%
    type: RollingUpdate
  template:
    metadata:
      labels:
        app.kubernetes.io/name: whoogle
    spec:
      containers:
      - env:
        - name: WHOOGLE_CONFIG_LANGUAGE
          value: en
        - name: WHOOGLE_CONFIG_SEARCH_LANGUAGE
          value: en
        image: benbusby/whoogle-search@sha256:5bbb30fc4cf67563b48529c5291813b3d49c290e1e8b9e3aaa5081e9cb6e40c0
        imagePullPolicy: IfNotPresent
        livenessProbe:
          failureThreshold: 3
          httpGet:
            path: /
            port: http
            scheme: HTTP
          periodSeconds: 10
          successThreshold: 1
          timeoutSeconds: 1
        name: whoogle
        ports:
        - containerPort: 5000
          name: http
          protocol: TCP
        readinessProbe:
          failureThreshold: 3
          httpGet:
            path: /
            port: http
            scheme: HTTP
          periodSeconds: 10
          successThreshold: 1
          timeoutSeconds: 1
        resources: {}
        securityContext:
          runAsUser: 0
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
      dnsPolicy: ClusterFirst
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext: {}
      serviceAccount: whoogle
      serviceAccountName: whoogle
      terminationGracePeriodSeconds: 30