fix(flaresolverr) disable portal, make service configurable, add gui options. (#10614)
**Description** Disabled portal make the service configurable and added gui options to manage the app. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [X] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [X] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [X] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
This commit is contained in:
parent
0457e3416b
commit
2469226203
|
@ -9,7 +9,7 @@ home: https://truecharts.org/charts/stable/flaresolverr
|
||||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/flaresolverr.png
|
icon: https://truecharts.org/img/hotlink-ok/chart-icons/flaresolverr.png
|
||||||
keywords:
|
keywords:
|
||||||
- flaresolverr
|
- flaresolverr
|
||||||
- jackett
|
- proxy
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
maintainers:
|
maintainers:
|
||||||
- email: info@truecharts.org
|
- email: info@truecharts.org
|
||||||
|
@ -19,7 +19,7 @@ name: flaresolverr
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/flaresolverr
|
- https://github.com/truecharts/charts/tree/master/charts/stable/flaresolverr
|
||||||
- https://github.com/FlareSolverr/FlareSolverr
|
- https://github.com/FlareSolverr/FlareSolverr
|
||||||
version: 9.0.26
|
version: 9.0.27
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# Include{groups}
|
# Include{groups}
|
||||||
portals:
|
portals: {}
|
||||||
open:
|
|
||||||
# Include{portalLink}
|
|
||||||
questions:
|
questions:
|
||||||
# Include{global}
|
# Include{global}
|
||||||
# Include{workload}
|
# Include{workload}
|
||||||
|
@ -11,6 +9,50 @@ questions:
|
||||||
# Include{podSpec}
|
# Include{podSpec}
|
||||||
# Include{containerMain}
|
# Include{containerMain}
|
||||||
|
|
||||||
|
- variable: env
|
||||||
|
label: Image Environment
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: TEST_URL
|
||||||
|
label: Test Url
|
||||||
|
description: Makes a request on start to make sure the web browser is working.
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
default: "https://www.google.com"
|
||||||
|
- variable: LOG_LEVEL
|
||||||
|
label: Log Level
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
default: info
|
||||||
|
enum:
|
||||||
|
- value: info
|
||||||
|
description: Info
|
||||||
|
- value: debug
|
||||||
|
description: Debug
|
||||||
|
- variable: LOG_HTML
|
||||||
|
label: Log HTML
|
||||||
|
description: If true all HTML that passes through the proxy will be logged to the console in debug level.
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
required: false
|
||||||
|
- variable: BROWSER_TIMEOUT
|
||||||
|
label: Browser Timeout
|
||||||
|
description: If you are experiencing errors/timeouts because your system is slow, you can try to increase this value.
|
||||||
|
schema:
|
||||||
|
type: int
|
||||||
|
required: true
|
||||||
|
default: 40000
|
||||||
|
- variable: HEADLESS
|
||||||
|
label: Headless
|
||||||
|
description: To run the web browser in headless mode or visible.
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
|
||||||
# Include{containerBasic}
|
# Include{containerBasic}
|
||||||
# Include{containerAdvanced}
|
# Include{containerAdvanced}
|
||||||
# Include{containerConfig}
|
# Include{containerConfig}
|
||||||
|
|
|
@ -15,7 +15,22 @@ service:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
port: 8191
|
port: 8191
|
||||||
targetPort: 8191
|
|
||||||
|
workload:
|
||||||
|
main:
|
||||||
|
podSpec:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
env:
|
||||||
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||||
|
HOST: "0.0.0.0"
|
||||||
|
TEST_URL: "https://www.google.com"
|
||||||
|
BROWSER_TIMEOUT: 40000
|
||||||
|
HEADLESS: true
|
||||||
|
LOG_LEVEL: info
|
||||||
|
LOG_HTML: false
|
||||||
|
# At this time none of the captcha solvers work, defaults to none.
|
||||||
|
CAPTCHA_SOLVER: none
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
|
@ -24,4 +39,4 @@ persistence:
|
||||||
|
|
||||||
portal:
|
portal:
|
||||||
open:
|
open:
|
||||||
enabled: true
|
enabled: false
|
||||||
|
|
Loading…
Reference in New Issue