Reset git history for making manifests public

This commit is contained in:
2026-06-01 10:11:01 +02:00
commit 07dc5543d3
403 changed files with 41987 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: chrome
namespace: resume
spec:
selector:
app: chrome
ports:
- protocol: TCP
port: 3000
targetPort: 3000
type: ClusterIP

View File

@@ -0,0 +1,43 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: chrome
namespace: resume
labels:
app: chrome
spec:
replicas: 1
selector:
matchLabels:
app: chrome
template:
metadata:
labels:
app: chrome
spec:
containers:
- name: chrome
image: ghcr.io/browserless/chromium:latest
ports:
- containerPort: 3000
env:
- name: TIMEOUT
value: "10000"
- name: CONCURRENT
value: "10"
- name: TOKEN
valueFrom:
secretKeyRef:
name: resume-secrets
key: chrome_token
- name: EXIT_ON_HEALTH_FAILURE
value: "true"
- name: PRE_REQUEST_HEALTH_CHECK
value: "true"
resources:
limits:
memory: "1Gi"
cpu: "500m"
requests:
memory: "512Mi"
cpu: "250m"