**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._
297 lines
9.9 KiB
YAML
297 lines
9.9 KiB
YAML
# Include{groups}
|
|
portals:
|
|
open:
|
|
# Include{portalLink}
|
|
questions:
|
|
# Include{global}
|
|
# Include{workload}
|
|
# Include{workloadDeployment}
|
|
# Include{replicas1}
|
|
# Include{podSpec}
|
|
# Include{containerMain}
|
|
# Include{containerBasic}
|
|
# Include{containerAdvanced}
|
|
- variable: radicale
|
|
group: App Configuration
|
|
label: Radicale Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: server
|
|
label: Server Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: max_connections
|
|
label: max_connections
|
|
description: The maximum number of parallel connections. Set to 0 to disable the limit.
|
|
schema:
|
|
type: int
|
|
default: 8
|
|
required: true
|
|
- variable: max_content_length
|
|
label: max_content_length
|
|
description: The maximum size of the request body. (bytes)
|
|
schema:
|
|
type: int
|
|
default: 100000000
|
|
required: true
|
|
- variable: timeout
|
|
label: timeout
|
|
description: Socket timeout. (seconds)
|
|
schema:
|
|
type: int
|
|
default: 30
|
|
required: true
|
|
- variable: encoding
|
|
label: Encoding Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: request
|
|
label: request
|
|
description: Encoding for responding requests.
|
|
schema:
|
|
type: string
|
|
default: utf-8
|
|
required: true
|
|
- variable: stock
|
|
label: stock
|
|
description: Encoding for storing local collections.
|
|
schema:
|
|
type: string
|
|
default: utf-8
|
|
required: true
|
|
- variable: auth
|
|
label: Auth Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: type
|
|
label: type
|
|
description: The method to verify usernames and passwords.
|
|
schema:
|
|
type: string
|
|
default: htpasswd
|
|
required: true
|
|
enum:
|
|
- value: none
|
|
description: none
|
|
- value: htpasswd
|
|
description: htpasswd
|
|
- value: http_x_remote_user
|
|
description: http_x_remote_user
|
|
- variable: delay
|
|
label: delay
|
|
description: Average delay after failed login attempts in seconds.
|
|
schema:
|
|
type: int
|
|
default: 1
|
|
required: true
|
|
- variable: realm
|
|
label: realm
|
|
description: Message displayed in the client when a password is needed.
|
|
schema:
|
|
type: string
|
|
default: Radicale - Password Required
|
|
required: true
|
|
- variable: users
|
|
label: Basic Authentication Users (htpasswd)
|
|
schema:
|
|
type: list
|
|
default: []
|
|
items:
|
|
- variable: usersEntry
|
|
label: ""
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: username
|
|
label: "Username"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- variable: password
|
|
label: "Password"
|
|
schema:
|
|
type: string
|
|
required: true
|
|
private: true
|
|
default: ""
|
|
- variable: rights
|
|
label: Rights Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: type
|
|
label: type
|
|
description: The backend that is used to check the access rights of collections.
|
|
schema:
|
|
type: string
|
|
default: owner_only
|
|
required: true
|
|
enum:
|
|
- value: authenticated
|
|
description: authenticated
|
|
- value: owner_only
|
|
description: owner_only
|
|
- value: owner_write
|
|
description: owner_write
|
|
- variable: storage
|
|
label: Storage Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: type
|
|
label: type
|
|
description: The backend that is used to store data.
|
|
schema:
|
|
type: string
|
|
default: multifilesystem
|
|
required: true
|
|
enum:
|
|
- value: multifilesystem
|
|
description: multifilesystem
|
|
- value: multifilesystem_nolock
|
|
description: multifilesystem_nolock
|
|
- variable: max_sync_token_age
|
|
label: max_sync_token_age
|
|
description: Delete sync token that are older (seconds)
|
|
schema:
|
|
type: int
|
|
default: 2592000
|
|
required: true
|
|
- variable: web
|
|
label: Web Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: type
|
|
label: type
|
|
description: The backend that provides the web interface of Radicale.
|
|
schema:
|
|
type: string
|
|
default: internal
|
|
required: true
|
|
enum:
|
|
- value: none
|
|
description: none
|
|
- value: internal
|
|
description: internal
|
|
- variable: logging
|
|
label: Logging Configuration
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: level
|
|
label: level
|
|
description: Set the logging level.
|
|
schema:
|
|
type: string
|
|
default: warning
|
|
required: true
|
|
enum:
|
|
- value: debug
|
|
description: debug
|
|
- value: info
|
|
description: info
|
|
- value: warning
|
|
description: warning
|
|
- value: error
|
|
description: error
|
|
- value: critical
|
|
description: critical
|
|
- variable: mask_passwords
|
|
label: mask_passwords
|
|
description: Don't include passwords in logs.
|
|
schema:
|
|
type: boolean
|
|
default: true
|
|
# Include{containerConfig}
|
|
# Include{podOptions}
|
|
# 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: 10255
|
|
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{ingressAdvanced}
|
|
# Include{ingressList}
|
|
# Include{securityContextRoot}
|
|
- variable: runAsUser
|
|
label: "runAsUser"
|
|
description: "The UserID of the user running the application"
|
|
schema:
|
|
type: int
|
|
default: 2999
|
|
- variable: runAsGroup
|
|
label: "runAsGroup"
|
|
description: "The groupID of the user running the application"
|
|
schema:
|
|
type: int
|
|
default: 2999
|
|
# Include{securityContextContainer}
|
|
# Include{securityContextAdvanced}
|
|
# Include{securityContextPod}
|
|
- variable: fsGroup
|
|
label: "fsGroup"
|
|
description: "The group that should own ALL storage."
|
|
schema:
|
|
type: int
|
|
default: 2999
|
|
# Include{resources}
|
|
# Include{advanced}
|
|
# Include{addons}
|
|
# Include{codeserver}
|
|
# Include{netshoot}
|
|
# Include{vpn}
|
|
# Include{documentation}
|