From bf04bdabc87c2aec71ce64e67c8c32ace2e80197 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Mon, 21 Mar 2022 23:04:14 +0200 Subject: [PATCH] feat(browserless-chrome): Add browserless-chrome (#2238) * feat(browserless-chrome): Add browserless-chrome * ports * probes * nop * try clean * enable metrics * data path * more workspace * host * enable vars * more * more * host * hostport * test * more vars * test again * keepalive * don;t keep alive * queues * preboot no, keepalive yes * remvove preboot and keepaliuve * hosty * empty * cleanup --- .../incubator/browserless-chrome/Chart.yaml | 28 + .../ci/puppeteer-values.yaml | 1 + .../browserless-chrome/questions.yaml | 480 ++++++++++++++++++ .../browserless-chrome/templates/common.yaml | 1 + .../incubator/browserless-chrome/values.yaml | 66 +++ .../img/appicons/browserless-chrome.png | Bin 0 -> 9225 bytes docs/manual/default-ports.md | 1 + 7 files changed, 577 insertions(+) create mode 100644 charts/incubator/browserless-chrome/Chart.yaml create mode 100644 charts/incubator/browserless-chrome/ci/puppeteer-values.yaml create mode 100644 charts/incubator/browserless-chrome/questions.yaml create mode 100644 charts/incubator/browserless-chrome/templates/common.yaml create mode 100644 charts/incubator/browserless-chrome/values.yaml create mode 100644 docs/_static/img/appicons/browserless-chrome.png diff --git a/charts/incubator/browserless-chrome/Chart.yaml b/charts/incubator/browserless-chrome/Chart.yaml new file mode 100644 index 00000000000..2b84e9924e4 --- /dev/null +++ b/charts/incubator/browserless-chrome/Chart.yaml @@ -0,0 +1,28 @@ +apiVersion: v2 +appVersion: "10.6.2" +dependencies: +- name: common + repository: https://truecharts.org + version: 9.1.6 +description: Browserless is a web-service that allows for remote clients to connect, drive, and execute headless work +home: https://github.com/truecharts/apps/tree/master/charts/stable/browserless-chrome +icon: https://truecharts.org/_static/img/appicons/browserless-chrome.png +keywords: +- browserless +- chrome +- puppeteer +kubeVersion: '>=1.16.0-0' +maintainers: +- email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: browserless-chrome +sources: +- https://docs.browserless.io/docs/docker.html +- https://hub.docker.com/r/browserless/chrome/ +version: 0.0.1 +annotations: + truecharts.org/catagories: | + - productivity + truecharts.org/SCALE-support: "true" + truecharts.org/grade: U diff --git a/charts/incubator/browserless-chrome/ci/puppeteer-values.yaml b/charts/incubator/browserless-chrome/ci/puppeteer-values.yaml new file mode 100644 index 00000000000..4517f58f24a --- /dev/null +++ b/charts/incubator/browserless-chrome/ci/puppeteer-values.yaml @@ -0,0 +1 @@ +imageSelector: "imagePuppeteer" diff --git a/charts/incubator/browserless-chrome/questions.yaml b/charts/incubator/browserless-chrome/questions.yaml new file mode 100644 index 00000000000..11d4f104739 --- /dev/null +++ b/charts/incubator/browserless-chrome/questions.yaml @@ -0,0 +1,480 @@ +# Include{groups} +portals: + open: + protocols: + - "$kubernetes-resource_configmap_portal_protocol" + host: + - "$kubernetes-resource_configmap_portal_host" + ports: + - "$kubernetes-resource_configmap_portal_port" + metrics: + protocols: + - "$kubernetes-resource_configmap_portal_protocol" + host: + - "$kubernetes-resource_configmap_portal_host" + ports: + - "$kubernetes-resource_configmap_portal_port" + path: "/metrics" +questions: + - variable: portal + group: "Container Image" + label: "Configure Portal Button" + schema: + type: dict + hidden: true + attrs: + - variable: enabled + label: "Enable" + description: "enable the portal button" + schema: + hidden: true + editable: false + type: boolean + default: true +# Include{global} + - variable: imageSelector + group: "Container Image" + label: "Select Image" + schema: + type: string + default: "image" + enum: + - value: "image" + description: "Chrome" + - value: "imagePuppeteer" + description: "Puppeteer" + - variable: controller + group: "Controller" + label: "" + schema: + additional_attrs: true + type: dict + attrs: + - variable: advanced + label: "Show Advanced Controller Settings" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: type + description: "Please specify type of workload to deploy" + label: "(Advanced) Controller Type" + schema: + type: string + default: "deployment" + required: true + enum: + - value: "deployment" + description: "Deployment" + - value: "statefulset" + description: "Statefulset" + - value: "daemonset" + description: "Daemonset" + - variable: replicas + description: "Number of desired pod replicas" + label: "Desired Replicas" + schema: + type: int + default: 1 + required: true + - variable: strategy + description: "Please specify type of workload to deploy" + label: "(Advanced) Update Strategy" + schema: + type: string + default: "Recreate" + required: true + enum: + - value: "Recreate" + description: "Recreate: Kill existing pods before creating new ones" + - value: "RollingUpdate" + description: "RollingUpdate: Create new pods and then kill old ones" + - value: "OnDelete" + description: "(Legacy) OnDelete: ignore .spec.template changes" +# Include{controllerExpert} + - variable: secret + group: "Container Configuration" + label: "Image Secrets" + schema: + additional_attrs: true + type: dict + attrs: + - variable: TOKEN + label: "TOKEN" + description: "You can optionally apply a TOKEN param that will restrict calls without a token query-string parameter" + schema: + type: string + default: "admin" + private: true + - variable: env + group: "Container Configuration" + label: "Image Environment" + schema: + additional_attrs: true + type: dict + attrs: + - variable: HOST + label: "HOST" + schema: + type: string + default: "" + - variable: WORKSPACE_DELETE_EXPIRED + label: "WORKSPACE_DELETE_EXPIRED" + description: "This will have browserless delete files older than 30 days in the workspace, checking once a day" + schema: + type: boolean + default: false + - variable: WORKSPACE_EXPIRE_DAYS + label: "WORKSPACE_EXPIRE_DAYS" + description: "Attempts to delete files older than X days in the workspace directory" + schema: + type: int + default: 30 + - variable: CHROME_REFRESH_TIME + label: "CHROME_REFRESH_TIME" + description: "The CHROME_REFRESH_TIME flag accepts a value in milliseconds to keep Chrome running before it attempts to close it." + schema: + type: int + default: 3600000 + - variable: MAX_CONCURRENT_SESSIONS + label: "MAX_CONCURRENT_SESSIONS" + description: "Since running Chrome can be rather resource intensive you'll probably want to limit the number of concurrent sessions." + schema: + type: int + default: 5 + - variable: MAX_QUEUE_LENGTH + label: "MAX_QUEUE_LENGTH" + description: "This value determines how many items in the queue are allowed before requests are issued a 429 response code and closed." + schema: + type: int + default: 5 + - variable: DEFAULT_BLOCK_ADS + label: "DEFAULT_BLOCK_ADS" + schema: + type: boolean + default: false + - variable: DEFAULT_HEADLESS + label: "DEFAULT_HEADLESS" + schema: + type: boolean + default: false + - variable: DEFAULT_IGNORE_HTTPS_ERRORS + label: "DEFAULT_IGNORE_HTTPS_ERRORS" + schema: + type: boolean + default: false + - variable: DEFAULT_IGNORE_DEFAULT_ARGS + label: "DEFAULT_IGNORE_DEFAULT_ARGS" + schema: + type: boolean + default: false + - variable: ENABLE_API_GET + label: "ENABLE_API_GET" + schema: + type: boolean + default: false + - variable: FUNCTION_ENABLE_INCOGNITO_MODE + label: "FUNCTION_ENABLE_INCOGNITO_MODE" + schema: + type: boolean + default: false + - variable: EXIT_ON_HEALTH_FAILURE + label: "EXIT_ON_HEALTH_FAILURE" + schema: + type: boolean + default: false + - variable: DISABLE_AUTO_SET_DOWNLOAD_BEHAVIOR + label: "DISABLE_AUTO_SET_DOWNLOAD_BEHAVIOR" + schema: + type: boolean + default: false + - variable: ENABLE_DEBUGGER + label: "ENABLE_DEBUGGER" + schema: + type: boolean + default: false + - variable: ENABLE_CORS + label: "ENABLE_CORS" + schema: + type: boolean + default: false + - variable: ENABLE_XVBF + label: "ENABLE_XVBF" + schema: + type: boolean + default: false +# Include{containerConfig} + + - variable: service + group: "Networking and Services" + label: "Configure Service(s)" + schema: + additional_attrs: true + type: dict + attrs: + - variable: main + label: "Main Service" + description: "The Primary service on which the healthcheck runs, often the webUI" + schema: + additional_attrs: true + type: dict + attrs: +# Include{serviceSelector} + - variable: main + label: "Main Service Port Configuration" + schema: + additional_attrs: true + type: dict + attrs: + - variable: port + label: "Port" + description: "This port exposes the container port on the service" + schema: + type: int + default: 10194 + required: true + - variable: advanced + label: "Show Advanced settings" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: protocol + label: "Port Type" + schema: + type: string + default: "HTTP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer" + schema: + type: int + min: 9000 + max: 65535 + - variable: targetPort + label: "Target Port" + description: "The internal(!) port on the container the Application runs on" + schema: + type: int + default: 3000 + + - variable: serviceexpert + group: "Networking and Services" + label: "Show Expert Config" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostNetwork + group: "Networking and Services" + label: "Host-Networking (Complicated)" + schema: + type: boolean + default: false + +# Include{serviceExpert} + +# Include{serviceList} + + - variable: persistence + label: "Integrated Persistent Storage" + description: "Integrated Persistent Storage" + group: "Storage and Persistence" + schema: + additional_attrs: true + type: dict + attrs: + - variable: downloads + label: "App Downloads Storage" + description: "Stores the Application Downloads." + schema: + additional_attrs: true + type: dict + attrs: + - variable: type + label: "Type of Storage" + description: "Sets the persistence type, Anything other than PVC could break rollback!" + schema: + type: string + default: "simplePVC" + enum: + - value: "simplePVC" + description: "PVC (simple)" + - value: "simpleHP" + description: "HostPath (simple)" + - value: "emptyDir" + description: "emptyDir" + - value: "pvc" + description: "pvc" + - value: "hostPath" + description: "hostPath" +# Include{persistenceBasic} + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" +# Include{persistenceAdvanced} + - variable: metrics + label: "App Metrics Storage" + description: "Stores the Application Metrics." + schema: + additional_attrs: true + type: dict + attrs: + - variable: type + label: "Type of Storage" + description: "Sets the persistence type, Anything other than PVC could break rollback!" + schema: + type: string + default: "simplePVC" + enum: + - value: "simplePVC" + description: "PVC (simple)" + - value: "simpleHP" + description: "HostPath (simple)" + - value: "emptyDir" + description: "emptyDir" + - value: "pvc" + description: "pvc" + - value: "hostPath" + description: "hostPath" +# Include{persistenceBasic} + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" +# Include{persistenceAdvanced} + +# Include{persistenceList} + + - variable: ingress + label: "" + group: "Ingress" + schema: + additional_attrs: true + type: dict + attrs: + - variable: main + label: "Main Ingress" + schema: + additional_attrs: true + type: dict + attrs: +# Include{ingressDefault} + +# Include{ingressTLS} + +# Include{ingressTraefik} + +# Include{ingressExpert} + +# Include{ingressList} + +# Include{security} + + - variable: advancedSecurity + label: "Show Advanced Security Settings" + group: "Security and Permissions" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: securityContext + label: "Security Context" + schema: + additional_attrs: true + type: dict + attrs: + - variable: privileged + label: "Privileged mode" + schema: + type: boolean + default: false + - variable: readOnlyRootFilesystem + label: "ReadOnly Root Filesystem" + schema: + type: boolean + default: true + - variable: allowPrivilegeEscalation + label: "Allow Privilege Escalation" + schema: + type: boolean + default: false + - variable: runAsNonRoot + label: "runAsNonRoot" + schema: + type: boolean + default: true +# Include{securityContextAdvanced} + + - variable: podSecurityContext + group: "Security and Permissions" + label: "Pod Security Context" + schema: + additional_attrs: true + type: dict + attrs: + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 568 + - variable: runAsGroup + label: "runAsGroup" + description: The groupID this App of the user running the application" + schema: + type: int + default: 568 + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 +# Include{podSecurityContextAdvanced} + +# Include{resources} + +# Include{advanced} + +# Include{addons} diff --git a/charts/incubator/browserless-chrome/templates/common.yaml b/charts/incubator/browserless-chrome/templates/common.yaml new file mode 100644 index 00000000000..a6613c2ce21 --- /dev/null +++ b/charts/incubator/browserless-chrome/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/charts/incubator/browserless-chrome/values.yaml b/charts/incubator/browserless-chrome/values.yaml new file mode 100644 index 00000000000..4c39e1ded7f --- /dev/null +++ b/charts/incubator/browserless-chrome/values.yaml @@ -0,0 +1,66 @@ +image: + repository: browserless/chrome + tag: version-v10.6.2@sha256:f0065aa44fb1c38b7fc30d34e220138dc0a0c6477b78eb7f59015622c2052030 + pullPolicy: IfNotPresent + +imagePuppeteer: + repository: browserless/chrome + pullPolicy: IfNotPresent + tag: 1.51.1-puppeteer-13.1.3@sha256:1a36d1f4f7646ec3c40a15b8150f1202fc66720e38c7001ab21018737ec04937 + +imageSelector: "image" + +secret: + TOKEN: "" + +env: + WORKSPACE_DIR: "/downloads" + METRICS_JSON_PATH: "/metrics/metrics.json" + # User Defined + HOST: "" + WORKSPACE_DELETE_EXPIRED: false + WORKSPACE_EXPIRE_DAYS: 30 + CHROME_REFRESH_TIME: 3600000 + MAX_CONCURRENT_SESSIONS: 5 + MAX_QUEUE_LENGTH: 5 + CONNECTION_TIMEOUT: 30000 + DEFAULT_BLOCK_ADS: true + DEFAULT_HEADLESS: false + DEFAULT_IGNORE_HTTPS_ERRORS: true + DEFAULT_IGNORE_DEFAULT_ARGS: true + ENABLE_API_GET: true + FUNCTION_ENABLE_INCOGNITO_MODE: true + EXIT_ON_HEALTH_FAILURE: true + DISABLE_AUTO_SET_DOWNLOAD_BEHAVIOR: false + ENABLE_DEBUGGER: true + ENABLE_CORS: false + ENABLE_XVBF: true + # Enabling those, makes probe/app fail + # KEEP_ALIVE: true + # PREBOOT_CHROME: true + +service: + main: + ports: + main: + port: 10194 + targetPort: 3000 + +probes: + liveness: + path: "/metrics" + + readiness: + path: "/metrics" + + startup: + path: "/metrics" + + +persistence: + downloads: + enabled: true + mountPath: "/downloads" + metrics: + enabled: true + mountPath: "/metrics" diff --git a/docs/_static/img/appicons/browserless-chrome.png b/docs/_static/img/appicons/browserless-chrome.png new file mode 100644 index 0000000000000000000000000000000000000000..7ece1635253c042a61cdbf48a90f4cb595818d0f GIT binary patch literal 9225 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 Q-}XSzH;j;_S`H!q2Tr$02mk;8 literal 0 HcmV?d00001 diff --git a/docs/manual/default-ports.md b/docs/manual/default-ports.md index 8846ebfc07c..4a68fa92aab 100644 --- a/docs/manual/default-ports.md +++ b/docs/manual/default-ports.md @@ -350,6 +350,7 @@ These defaults can of course be changed, but as we guarantee "sane, working defa | zerotier | main | main | 10190 | UDP | | | rsshub | main | main | 10191 | HTTP | | | verysync | main | main | 10193 | HTTP | | +| browserless | main | main | 10194 | TCP | | | kutt | main | main | 10195 | TCP | | | storj-node | main | main | 14002 | TCP | | | satisfactory | beacon | beacon | 15000 | UDP | |