TrueChartsClone/charts/dev/penpot/questions.yaml

457 lines
17 KiB
YAML
Raw Normal View History

# Include{groups}
portals:
open:
# Include{portalLink}
questions:
# Include{global}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
# Include{podSpec}
# Include{containerMain}
# Include{containerBasic}
# Include{containerAdvanced}
fix(incubator): ensure all questions.yaml can be rendered (#15612) **Description** This ensures all incubator questions.yaml can be rendered, it does not mean they work, but at least all questions.yaml files should be new-common compatible, even if the charts still run old-common and/or not run at all. **⚙️ 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:** - [ ] ⚖️ 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._ --------- Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-12-02 15:12:17 -05:00
# Include{containerConfig}
# Include{podOptions}
- variable: penpot
group: App Configuration
label: Penpot Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: public_uri
label: Public URI
description: Public URI.
schema:
type: string
required: true
default: ""
- variable: telemetry_enabled
label: Telemetry Enabled
description: Telemetry Enabled.
schema:
type: boolean
default: false
- variable: flags
label: Flags
description: Feature flags
schema:
additional_attrs: true
type: dict
required: true
attrs:
- variable: registration
label: Registration
description: Enables or disables, the registration process
schema:
type: boolean
default: true
- variable: insecure_register
label: Insecure Register
description: Enables or disables, the insecure process of profile registration deactivating the email verification process
schema:
type: boolean
default: false
- variable: login
label: Login
description: Enables or disables, the password based login form
schema:
type: boolean
default: true
- variable: demo_users
label: Demo Users
description: Enables or disables, the creation of demo users without the need of a registration process.
schema:
type: boolean
default: false
- variable: demo_warning
label: Demo Warning
description: Enables or disables, demo warning in the register and login page saying that this is a demonstration purpose instance
schema:
type: boolean
default: false
- variable: user_feedback
label: User Feedback
description: Enables or disables, the feedback form at the dashboard
schema:
type: boolean
default: false
- variable: mail_verification
label: Mail Verification
description: Enables or disables, mail verification
schema:
type: boolean
default: true
- variable: log_invitation_token
label: Log Invitation Token
description: Enables or disables, invitation token logging in console
schema:
type: boolean
default: false
- variable: log_emails
label: Log Emails
description: Enables or disables, email logging in console. This only works if smtp is not enabled.
schema:
type: boolean
default: false
- variable: secure_session_cookies
label: Secure Session Cookies
description: Enables or disables, the secure flag on cookies
schema:
type: boolean
default: true
- variable: cors
label: CORS
description: Enables or disables, the default cors configuration that allows all domains
schema:
type: boolean
default: false
- variable: backend_api_doc
label: API Docs
description: Enables or disables, /api/_doc endpoint that lists all rpc methods available on backend.
schema:
type: boolean
default: false
- variable: registration_domain_whitelist
label: Registration Domain Whitelist
description: Registration Domain Whitelist
schema:
type: list
required: true
default: []
items:
- variable: domain_whitelist
label: Domain Whitelist Entry
schema:
type: string
required: true
default: ""
- variable: smtp
group: App Configuration
label: SMTP Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable SMTP
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: default_from
label: Default From
schema:
type: string
required: true
default: ""
- variable: default_reply_to
label: Default Reply To
schema:
type: string
required: true
default: ""
- variable: host
label: SMTP Host
schema:
type: string
required: true
default: ""
- variable: port
label: SMTP Port
schema:
type: int
required: true
default: 587
- variable: user
label: SMTP User
schema:
type: string
required: true
default: ""
- variable: pass
label: SMTP Pass
schema:
type: string
required: true
private: true
default: ""
- variable: identity_providers
group: App Configuration
label: Identity Providers Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: google
label: Google Identity Provider
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Show Google Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: client_id
label: Client ID
schema:
type: string
required: true
default: ""
- variable: client_secret
label: Client Secret
schema:
type: string
private: true
required: true
default: ""
- variable: github
label: Github Identity Provider
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Show Github Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: client_id
label: Client ID
schema:
type: string
required: true
default: ""
- variable: client_secret
label: Client Secret
schema:
type: string
private: true
required: true
default: ""
- variable: gitlab
label: Gitlab Identity Provider
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Show Gitlab Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: base_uri
label: Base URI
schema:
type: string
required: true
default: "https://gitlab.com"
- variable: client_id
label: Client ID
schema:
type: string
required: true
default: ""
- variable: client_secret
label: Client Secret
schema:
type: string
private: true
required: true
default: ""
- variable: oidc
label: OIDC Identity Provider
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Show OIDC Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: base_uri
label: Base URI
schema:
type: string
required: true
default: ""
- variable: client_id
label: Client ID
schema:
type: string
required: true
default: ""
- variable: client_secret
label: Client Secret
schema:
type: string
private: true
required: true
default: ""
- variable: ldap
label: LDAP Identity Provider
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Show LDAP Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: host
label: Host
schema:
type: string
required: true
default: ""
- variable: port
label: Port
schema:
type: int
required: true
default: 587
- variable: ssl
label: SSL
schema:
type: boolean
default: false
- variable: starttls
label: StartTLS
schema:
type: boolean
default: false
- variable: base_dn
label: Base DN
schema:
type: string
required: true
default: ""
- variable: bind_dn
label: Bind DN
schema:
type: string
required: true
default: ""
- variable: bind_pass
label: Bind Pass
schema:
type: string
private: true
required: true
default: ""
- variable: attrs_username
label: ATTRS Username
schema:
type: string
rquired: true
default: ""
- variable: attrs_email
label: ATTRS Email
schema:
type: string
required: true
default: ""
- variable: attrs_fullname
label: ATTRS Fullname
schema:
type: string
required: true
default: ""
# Include{serviceRoot}
- 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{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: 10592
required: true
# Include{serviceExpertRoot}
# Include{serviceExpert}
# Include{serviceList}
# Include{persistenceRoot}
- variable: data
label: App Data Storage
description: Stores the Application Data.
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{ingressTLS}
# Include{ingressTraefik}
feat: hide advanced ingress options behind checbox (#9203) **Description** The `ingressclassname` `entrypoint` and `tls` sections should only be used in very specific usecases. IngressClass: Only when having multiple ingress providers Entrypoint: only when having multiple traefik entrypoints tls: only when not using the clusterissuer setting on ingresslevel or using scale certs which are deprecated. fixes: #9142 **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [x] ⚠️ 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:** - [ ] ⚖️ 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._
2023-05-28 06:32:51 -04:00
# Include{ingressAdvanced}
# Include{ingressList}
2023-03-01 03:30:36 -05:00
fix(stable): already adapt questions.yaml GUI to prevent tests from needlessly failing for unported charts (#8720) **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._ Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-05-03 04:30:22 -04:00
# 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 of the user running the application"
schema:
type: int
default: 0
2023-03-01 03:30:36 -05:00
# Include{securityContextContainer}
# Include{securityContextAdvanced}
# Include{securityContextPod}
fix(stable): already adapt questions.yaml GUI to prevent tests from needlessly failing for unported charts (#8720) **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._ Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-05-03 04:30:22 -04:00
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
schema:
type: int
default: 568
2023-03-01 03:30:36 -05:00
# Include{resources}
# Include{postgresql}
# Include{advanced}
# Include{addons}
# Include{codeserver}
2023-03-01 03:30:36 -05:00
# Include{netshoot}
# Include{vpn}
# Include{documentation}