Skip to content

Commit

Permalink
fix(vlmcsd-kms-server) add the port to vlmcsd-kms-server (truecharts#…
Browse files Browse the repository at this point in the history
…16910)

**Description**
Add the port to vlmcsd-kms-server
⚒️ Fixes  truecharts#16908

**⚙️ 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:**

- [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

**➕ 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._
  • Loading branch information
xstar97 authored and Gabriel Bärzén committed Feb 2, 2024
1 parent ddeb2f3 commit ba54ead
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
21 changes: 21 additions & 0 deletions charts/stable/vlmcsd-kms-server/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,29 @@ questions:
# Include{replicas1}
# Include{podSpec}
# Include{containerMain}

# Include{containerBasic}
# Include{containerAdvanced}

# Include{containerConfig}
# Include{podOptions}
# 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: 1688
required: true
# Include{serviceExpertRoot}
# Include{serviceExpert}
# Include{serviceList}
Expand Down
18 changes: 11 additions & 7 deletions charts/stable/vlmcsd-kms-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ image:
pullPolicy: IfNotPresent
repository: mikolatero/vlmcsd
tag: latest@sha256:217a03280410aa06bca7dd1b4e3e206317ba740a990d90683462fb21b17c9e7d
persistence: {}
portal:
open:
enabled: false

securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsGroup: 0
runAsUser: 0
runAsGroup: 0

service:
main:
enabled: false
ports:
main:
enabled: false
targetPort: 1688
port: 1688

workload:
main:
podSpec:
Expand All @@ -29,3 +29,7 @@ workload:
enabled: false
startup:
enabled: false

portal:
open:
enabled: false

0 comments on commit ba54ead

Please sign in to comment.