From 7ddfcad392abf5b4c2994c03f599d3a22e51ca96 Mon Sep 17 00:00:00 2001 From: Jose Fuentes Castillo Date: Mon, 29 Jul 2024 06:56:31 +0200 Subject: docs: Add Kubernetes installation with Kustomize (#324) * Add kubernetes installation * Add kubernetes installation docs * Simplify config * Remove the patch to use only amd64 nodes and add sample env file --- kubernetes/chrome-deployment.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 kubernetes/chrome-deployment.yaml (limited to 'kubernetes/chrome-deployment.yaml') diff --git a/kubernetes/chrome-deployment.yaml b/kubernetes/chrome-deployment.yaml new file mode 100644 index 00000000..bc49fac8 --- /dev/null +++ b/kubernetes/chrome-deployment.yaml @@ -0,0 +1,26 @@ +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:123 + 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 -- cgit v1.2.3-70-g09d2