mirror of
https://github.com/gwg313/homelab-gitops.git
synced 2026-06-05 23:01:00 +00:00
26 lines
585 B
YAML
26 lines
585 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: chrome
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: chrome
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: chrome
|
|
spec:
|
|
containers:
|
|
- name: chrome
|
|
image: gcr.io/zenika-hub/alpine-chrome:124
|
|
command:
|
|
- chromium-browser
|
|
- --headless
|
|
- --no-sandbox
|
|
- --disable-gpu
|
|
- --disable-dev-shm-usage
|
|
- --remote-debugging-address=0.0.0.0
|
|
- --remote-debugging-port=9222
|
|
- --hide-scrollbars
|