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

Missing values in helm templates #141 #142

Merged
merged 2 commits into from
Jan 28, 2023
Merged
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/minecraft-bedrock/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: minecraft-bedrock
version: 2.0.1
version: 2.0.2
appVersion: SeeValues
home: https://minecraft.net/
description: Minecraft server
4 changes: 4 additions & 0 deletions charts/minecraft-bedrock/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -115,6 +115,10 @@ spec:
value: {{ .Values.minecraftServer.texturepackRequired | quote }}
- name: ONLINE_MODE
value: {{ .Values.minecraftServer.onlineMode | quote }}
- name: EMIT_SERVER_TELEMETRY
value: {{ .Values.minecraftServer.emitServerTelemetry | quote }}
- name: ENABLE_LAN_VISIBILITY
value: {{ .Values.minecraftServer.enableLanVisibility | quote }}

{{- range $key, $value := .Values.extraEnv }}
{{- if kindIs "map" $value }}
4 changes: 4 additions & 0 deletions charts/minecraft-bedrock/values.yaml
Original file line number Diff line number Diff line change
@@ -110,6 +110,10 @@ minecraftServer:
maxThreads: 8
# Cheat like commands can be used.
cheats: false
# Enable emit server telemetry.
emitServerTelemetry: false
# Enable lan visibility.
enableLanVisibility: false
# type of kubernetes service to use
serviceType: ClusterIP
## Set the port used if the serviceType is NodePort