Files
truecharts/charts/stable/lama-cleaner/questions.yaml
T
Stavros KoisandGitHub 1e0dbf15e9 chore(questions): remove non-existent template refs (#16738)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 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:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 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
- [ ] ⬆️ 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._
2024-01-01 21:28:20 +02:00

176 lines
5.7 KiB
YAML

# Include{groups}
portals:
open:
# Include{portalLink}
questions:
# Include{global}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
# Include{podSpec}
# Include{containerMain}
- variable: imageSelector
label: Select Image
schema:
type: string
default: image
enum:
- value: image
description: CPU Image
- value: imageGPU
description: GPU Image
# Include{containerBasic}
# Include{containerAdvanced}
- variable: lamacleaner
group: App Configuration
label: Lama Cleaner Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: model
label: Model
description: Inpainting Model https://github.com/Sanster/lama-cleaner#inpainting-model
schema:
type: string
required: true
default: lama
enum:
- value: lama
description: lama
- value: cv2
description: cv2
- value: ldm
description: ldm
- value: zits
description: zits
- value: fcf
description: fcf
- value: sd1.5
description: sd1.5
- value: mat
description: mat
- variable: input
label: Input
description: Path to image you want to load by default
schema:
type: string
default: ""
- variable: sd_run_local
label: Stable Diffusion Run Local
description: Once the model as downloaded, you can enable this.
schema:
type: boolean
default: false
- variable: hf_access_token
label: HuggingFace Access Token
description: Stable diffusion need HuggingFace access token to download model
schema:
type: string
show_if: [[ "sd_run_local", "=", true]]
private: true
default: ""
- variable: sd_disable_nsfw
label: Stable Diffusion Disable NSFW Checker.
description: Disable stable diffusion NSFW checker.
schema:
type: boolean
default: false
- variable: sd_cpu_text_encoder
label: Stable Diffusion Text Encoder
description: Always run stable-diffusion TextEncoder model on CPU.
schema:
type: boolean
default: false
- variable: sd_enable_xformers
label: Stable Diffusion Enable XFormers
description: Enable xFormers optimizations.
schema:
type: boolean
default: false
- variable: debug
label: Enable debug
description: Enable debug mode for flask web server
schema:
type: boolean
default: false
# Include{containerConfig}
# Include{podOptions}
# Include{serviceRoot}
# Include{serviceMain}
# Include{serviceSelectorLoadBalancer}
# Include{serviceSelectorExtras}
- 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: 10604
required: true
# Include{serviceExpertRoot}
# Include{serviceExpert}
# Include{serviceList}
# Include{persistenceRoot}
- variable: torch
label: App Torch Storage
description: Stores the Application Torch.
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
- variable: huggingface
label: App HuggingFace Storage
description: Stores the Application HuggingFace.
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
# Include{persistenceList}
# Include{ingressRoot}
- variable: main
label: Main Ingress
schema:
additional_attrs: true
type: dict
attrs:
# Include{ingressDefault}
# Include{ingressAdvanced}
# Include{ingressList}
# Include{securityContextRoot}
- variable: runAsUser
label: "runAsUser"
description: "The UserID of the user running the application"
schema:
type: int
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID this App of the user running the application"
schema:
type: int
default: 0
# Include{securityContextContainer}
# Include{securityContextAdvanced}
# Include{securityContextPod}
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
schema:
type: int
default: 568
# Include{resources}
# Include{advanced}
# Include{addons}
# Include{codeserver}
# Include{netshoot}
# Include{vpn}
# Include{documentation}