Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(vlmcsd-kms-server) add the port to vlmcsd-kms-server #16910

Merged
merged 4 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/stable/vlmcsd-kms-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: vlmcsd-kms-server
version: 4.1.5
version: 4.1.6
appVersion: latest
description: vlmcsd is a replacement for Microsoft's KMS server.
home: https://truecharts.org/charts/incubator/vlmcsd-kms-server
Expand Down
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
Loading