CHART NAME: {{ .Chart.Name }} CHART VERSION: {{ .Chart.Version }} APP VERSION: {{ .Chart.AppVersion }} ** Please be patient while the chart is being deployed ** {{- if .Values.diagnosticMode.enabled }} The chart has been deployed in diagnostic mode. All probes have been disabled and the command has been overwritten with: command: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.command "context" $) | nindent 4 }} args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 4 }} Get the list of pods by executing: kubectl get pods --namespace {{ include "common.names.namespace" . }} -l app.kubernetes.io/instance={{ .Release.Name }} Access the pod you want to debug by executing kubectl exec --namespace {{ include "common.names.namespace" . }} -ti -- bash In order to replicate the container startup scripts execute these commands in their respective pods: speaker --port={{ .Values.speaker.containerPorts.metrics }} --config={{ include "metallb.configMapName" . }} controller --port={{ .Values.controller.containerPorts.metrics }} --config={{ include "metallb.configMapName" . }} {{- else }} MetalLB is now running in the cluster LoadBalancer Services in your cluster are now available on the IPs you defined in MetalLB's configuration. To see IP assignments, kubectl get services -o wide --all-namespaces | grep --color=never -E 'LoadBalancer|NAMESPACE' should be executed. To see the currently configured configuration for metallb run kubectl get configmaps --namespace {{ include "common.names.namespace" . }} {{ include "metallb.configMapName" . }} -o yaml in your preferred shell. {{- if .Values.existingConfigMap }} WARNING: you specified a ConfigMap that isn't managed by Helm. LoadBalancer services will not function until you add that ConfigMap to your cluster yourself. Ensure you put the configmap in place kubectl get configmaps --namespace {{ include "common.names.namespace" . }} | grep --color=never -E "{{ include "metallb.configMapName" . }}|NAME" If it is missing create it with: kubectl create configmap {{ include "metallb.configMapName" . }} --namespace {{ include "common.names.namespace" . }} --from-file=config {{- end }} {{- if .Values.speaker.secretName }} WARNING: you specified a secretName that isn't managed by Helm. The MetalLB speakers will not join without the secret in place. kubectl get secrets --namespace {{ include "common.names.namespace" . }} | grep --color=never -E "{{ include "metallb.speaker.secretName" . }}|NAME" If it is missing create it with: kubectl create secret {{ include "metallb.speaker.secretName" . }} --from-file={{ include "metallb.speaker.secretKey" . }} {{- end }} {{- end }}