fix(wifi-card) add main port and portal (#19979)

**Description**
Fixes wifi-card
⚒️ Fixes  #19976

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [X] 🪛 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:**

- [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
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [X] ⬆️ I increased versions for any altered app according to semantic
versioning
- [X] 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._

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
Xstar97TheNoob
2024-03-30 14:21:36 +02:00
committed by GitHub
co-authored by Stavros Kois
parent 80c956e5bf
commit 34d10ddc2e
3 changed files with 49 additions and 26 deletions
+1 -1
View File
@@ -34,4 +34,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/wifi-card - https://github.com/truecharts/charts/tree/master/charts/stable/wifi-card
- https://hub.docker.com/r/bndw/wifi-card - https://hub.docker.com/r/bndw/wifi-card
type: application type: application
version: 5.7.5 version: 5.8.0
+39 -7
View File
@@ -1,5 +1,7 @@
# Include{groups} # Include{groups}
portals: {} portals:
open:
# Include{portalLink}
questions: questions:
# Include{global} # Include{global}
# Include{workload} # Include{workload}
@@ -7,22 +9,52 @@ questions:
# Include{replicas1} # Include{replicas1}
# Include{podSpec} # Include{podSpec}
# Include{containerMain} # Include{containerMain}
# Include{containerBasic} # Include{containerBasic}
# Include{containerAdvanced} # Include{containerAdvanced}
# Include{containerConfig}
# 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: 8888
required: true
# Include{serviceExpertRoot} # Include{serviceExpertRoot}
# Include{serviceExpert} # Include{serviceExpert}
# Include{serviceList} # Include{serviceList}
# Include{persistenceList} # Include{persistenceList}
# Include{ingressRoot}
- variable: main
label: Main Ingress
schema:
additional_attrs: true
type: dict
attrs:
# Include{ingressDefault}
# Include{ingressAdvanced}
# Include{ingressList}
# Include{securityContextRoot} # Include{securityContextRoot}
- variable: runAsUser - variable: runAsUser
label: "runAsUser" label: runAsUser
description: "The UserID of the user running the application" description: The UserID of the user running the application
schema: schema:
type: int type: int
default: 0 default: 0
- variable: runAsGroup - variable: runAsGroup
label: "runAsGroup" label: runAsGroup
description: "The groupID of the user running the application" description: The groupID of the user running the application
schema: schema:
type: int type: int
default: 0 default: 0
@@ -30,8 +62,8 @@ questions:
# Include{securityContextAdvanced} # Include{securityContextAdvanced}
# Include{securityContextPod} # Include{securityContextPod}
- variable: fsGroup - variable: fsGroup
label: "fsGroup" label: fsGroup
description: "The group that should own ALL storage." description: The group that should own ALL storage.
schema: schema:
type: int type: int
default: 568 default: 568
+9 -18
View File
@@ -2,30 +2,21 @@ image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: bndw/wifi-card repository: bndw/wifi-card
tag: latest@sha256:0907450a0f677fadc87ff754dc7ed52f70da9165979b8659f5eecff08d380a8b tag: latest@sha256:0907450a0f677fadc87ff754dc7ed52f70da9165979b8659f5eecff08d380a8b
persistence: {}
portal:
open:
enabled: false
securityContext: securityContext:
container: container:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: 0 runAsGroup: 0
runAsUser: 0 runAsUser: 0
service: service:
main: main:
enabled: false
ports: ports:
main: main:
enabled: false protocol: http
workload: targetPort: 80
main: port: 8888
podSpec:
containers: portal:
main: open:
probes: enabled: true
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false