infra4talos/apps-kustomized/whoogle/deploy.yaml
2025-10-24 12:59:53 +02:00

67 lines
1.8 KiB
YAML

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
- name: WHOOGLE_USER_AGENT
value: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; PPC; 240x320) Opera 8.65 [nl]
- name: WHOOGLE_MOBILE_USER_AGENT
value: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; PPC; 240x320) Opera 8.65 [nl]
image: benbusby/whoogle-search:0.9.4
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