chore(templates): hostnet+dnsconfig behind expert (#8635)

**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  #8633

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 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
- [x] ⚠️ 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._
This commit is contained in:
Stavros Kois
2023-05-01 09:33:43 +02:00
committed by GitHub
parent 937c6f5405
commit ce3dafb8e9
+51 -44
View File
@@ -5,57 +5,64 @@
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: hostNetwork - variable: expertPodOpts
label: "Host Networking" label: "Expert - Pod Options"
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: dnsConfig show_subquestions_if: true
label: "DNS Configuration" subquestions:
schema: - variable: hostNetwork
type: dict label: "Host Networking"
additional_attrs: true
attrs:
- variable: options
label: "Options"
schema: schema:
type: list type: boolean
default: [{"name": "ndots", "value": "2"}] default: false
items: - variable: dnsConfig
- variable: optionsEntry label: "DNS Configuration"
label: "Option Entry" schema:
type: dict
additional_attrs: true
attrs:
- variable: options
label: "Options"
schema: schema:
type: dict type: list
additional_attrs: true default: [{"name": "ndots", "value": "2"}]
attrs: items:
- variable: name - variable: optionsEntry
label: "Name" label: "Option Entry"
schema:
type: dict
additional_attrs: true
attrs:
- variable: name
label: "Name"
schema:
type: string
required: true
- variable: value
label: "Value"
schema:
type: string
- variable: nameservers
label: "Nameservers"
schema:
type: list
default: []
items:
- variable: nsEntry
label: "Nameserver Entry"
schema: schema:
type: string type: string
required: true required: true
- variable: value - variable: searches
label: "Value" label: "Searches"
schema:
type: list
default: []
items:
- variable: searchEntry
label: "Search Entry"
schema: schema:
type: string type: string
- variable: nameservers required: true
label: "Nameservers"
schema:
type: list
default: []
items:
- variable: nsEntry
label: "Nameserver Entry"
schema:
type: string
required: true
- variable: searches
label: "Searches"
schema:
type: list
default: []
items:
- variable: searchEntry
label: "Search Entry"
schema:
type: string
required: true