diff options
| author | Jose Fuentes Castillo <j-fuentes@users.noreply.github.com> | 2024-07-29 06:56:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-28 21:56:31 -0700 |
| commit | 7ddfcad392abf5b4c2994c03f599d3a22e51ca96 (patch) | |
| tree | 602b7c1c8bb2d6f93fa99ec14ef713d8e8e6e36d /kubernetes/chrome-deployment.yaml | |
| parent | 1ca951af8919b572ffb5b178a0286f517660ed74 (diff) | |
| download | karakeep-7ddfcad392abf5b4c2994c03f599d3a22e51ca96.tar.zst | |
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
Diffstat (limited to 'kubernetes/chrome-deployment.yaml')
| -rw-r--r-- | kubernetes/chrome-deployment.yaml | 26 |
1 files changed, 26 insertions, 0 deletions
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 |
