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 for nil pointer evaluating interface {}.Namespace #229

Merged
merged 9 commits into from
Aug 30, 2024
Merged
2 changes: 1 addition & 1 deletion charts/minecraft-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: minecraft-proxy
version: 3.8.1
version: 3.8.2
appVersion: SeeValues
description: Minecraft proxy server (BungeeCord, Waterfall, Velocity, etc.)
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/minecraft-proxy/templates/extraports-ing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ $serviceName }}
namespace: {{ .Release.Namespace }}
namespace: "{{ $.Release.Namespace }}"
{{- if .ingress.annotations }}
annotations: {{- toYaml .ingress.annotations | nindent 4 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/minecraft-proxy/templates/extraports-svc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apiVersion: v1
kind: Service
metadata:
name: {{ $serviceName }}
namespace: {{ .Release.Namespace }}
namespace: "{{ $.Release.Namespace }}"
annotations: {{ toYaml .service.annotations | nindent 4 }}
labels:
app: {{ $serviceName }}
Expand Down
2 changes: 1 addition & 1 deletion charts/minecraft/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: minecraft
version: 4.22.1
version: 4.22.2
appVersion: SeeValues
home: https://minecraft.net/
description: Minecraft server
Expand Down
2 changes: 1 addition & 1 deletion charts/minecraft/templates/extraports-ing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ apiVersion: {{ include "minecraft.ingress.apiVersion" $ }}
kind: Ingress
metadata:
name: {{ $serviceName }}
namespace: {{ .Release.Namespace }}
namespace: "{{ $.Release.Namespace }}"
{{- if .ingress.annotations }}
annotations: {{- toYaml .ingress.annotations | nindent 4 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/minecraft/templates/extraports-svc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apiVersion: v1
kind: Service
metadata:
name: {{ $serviceName }}
namespace: {{ .Release.Namespace }}
namespace: "{{ $.Release.Namespace }}"
annotations: {{ toYaml .service.annotations | nindent 4 }}
labels:
app: {{ $serviceName }}
Expand Down
Loading