Files
truecharts/charts/stable/cloudflareddns/questions.yaml
T
Kjeld Schouten 02e10381ac feat: Add VolSync support and move CNPG backup credentials on SCALE (#21443)
**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
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ 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-04-29 12:28:39 +02:00

173 lines
5.5 KiB
YAML

# Include{groups}
portals: {}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
# Include{podSpec}
# Include{containerMain}
# Include{containerBasic}
# Include{containerAdvanced}
- variable: cloudflareddns
group: App Configuration
label: Cloudflareddns Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: api_key
label: CF API Key
schema:
type: string
private: true
default: ""
- variable: user
label: CF User
description: Cloudflare Username (eg. your.cf.email@example.com)
schema:
type: string
default: ""
- variable: api_token
label: CF API Token
schema:
type: string
private: true
default: ""
- variable: api_token_zone
label: CF API Token Zone
schema:
type: string
private: true
default: ""
- variable: interval
label: Interval
description: Update your DDNS interval in seconds
schema:
type: int
default: 300
min: 60
- variable: detect_mode
label: Detection Mode
description: How you want to get your WAN IP
schema:
type: string
default: dig-whoami.cloudflare
enum:
- value: dig-whoami.cloudflare
description: dig-whoami.cloudflare
- value: curl-ifconfig.co
description: curl-ifconfig.co
- value: curl-icanhazip.com
description: curl-icanhazip.com
- value: curl-wtfismyip.com
description: curl-wtfismyip.com
- value: curl-showmyip.ca
description: curl-showmyip.ca
- value: curl-da.gd
description: curl-da.gd
- value: curl-seeip.org
description: curl-seeip.org
- value: dig-google.com
description: dig-google.com
- value: dig-opendns.com
description: dig-opendns.com
- variable: detect_override
label: Detection mode Override
description: If you want to set Detection Mode to 'local:eth0' for a local interface, this will override the dropdown selection
schema:
type: string
default: ""
- variable: log_level
label: Log Level
description: Level of detail your logs need
schema:
type: int
default: 3
enum:
- value: 0
description: No log output
- value: 1
description: UPDATE, WARNING, ERROR
- value: 2
description: UPDATE, WARNING, ERROR, INFO
- value: 3
description: UPDATE, WARNING, ERROR, INFO, DEBUG
- variable: host_zone_record
label: Hosts, Zones and Record Types
schema:
type: list
default: []
items:
- variable: hostRecordEntry
label: Host, Zone and Record Type Entry
schema:
type: dict
additional_attrs: true
attrs:
- variable: domain
label: Domain
schema:
type: string
required: true
default: "example.com"
valid_chars: '^((?!(\.cf|\.ga|\.gq|\.ml|\.tk)$).)*$'
- variable: zone
label: Zone
schema:
type: string
required: true
valid_chars: '^((?!(\.cf|\.ga|\.gq|\.ml|\.tk)$).)*$'
default: ""
- variable: record
label: Record Type
schema:
type: string
required: true
default: "A"
# Include{containerConfig}
# Include{podOptions}
# Include{externalInterfaces}
# Include{serviceList}
# Include{persistenceRoot}
- variable: config
label: App Config Storage
description: Stores the Application Configuration.
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
# Include{persistenceList}
# 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}