mirror of
https://github.com/bitnami/charts.git
synced 2026-02-10 03:17:20 +08:00
75 lines
4.1 KiB
Plaintext
75 lines
4.1 KiB
Plaintext
CHART NAME: {{ .Chart.Name }}
|
|
CHART VERSION: {{ .Chart.Version }}
|
|
APP VERSION: {{ .Chart.AppVersion }}
|
|
|
|
⚠ WARNING: Since August 28th, 2025, only a limited subset of images/charts are available for free.
|
|
Subscribe to Bitnami Secure Images to receive continued support and security updates.
|
|
More info at https://bitnami.com and https://github.com/bitnami/containers/issues/83267
|
|
|
|
** Please be patient while the chart is being deployed **
|
|
|
|
1. Get the application URL by running these commands:
|
|
|
|
{{- if .Values.ingress.enabled }}
|
|
|
|
You should be able to access your new phpMyAdmin installation through
|
|
|
|
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .Values.ingress.hostname }}/
|
|
|
|
{{- else if eq .Values.service.type "LoadBalancer" }}
|
|
|
|
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
Watch the status with: 'kubectl get svc --namespace {{ .Release.Namespace }} -w {{ include "common.names.fullname" . }}'
|
|
|
|
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "common.names.fullname" . }} --template "{{ "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}" }}")
|
|
{{- $port:=( coalesce .Values.service.ports.http .Values.service.port) | toString }}
|
|
echo "phpMyAdmin URL: http://$SERVICE_IP{{- if ne $port "80" }}:{{coalesce .Values.service.ports.http .Values.service.port }}{{ end }}/"
|
|
|
|
{{- else if contains "NodePort" .Values.service.type }}
|
|
|
|
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.names.fullname" . }}'
|
|
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
echo "phpMyAdmin URL: http://$NODE_IP:$NODE_PORT"
|
|
|
|
{{- else if contains "ClusterIP" .Values.service.type }}
|
|
|
|
echo "phpMyAdmin URL: http://127.0.0.1:{{coalesce .Values.service.ports.http .Values.service.port }}"
|
|
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "common.names.fullname" . }} {{coalesce .Values.service.ports.http .Values.service.port }}:{{coalesce .Values.service.ports.http .Values.service.port }}
|
|
|
|
{{- end }}
|
|
|
|
2. How to log in
|
|
{{- if or (.Values.db.chartName) (.Values.db.host) }}
|
|
|
|
phpMyAdmin has been configured to connect to a database in {{ if .Values.db.chartName }}{{ template "phpmyadmin.dbfullname" . }}{{ else }}{{ .Values.db.host }}{{ end }}
|
|
{{- if .Values.db.port }}with port {{ .Values.db.port }} {{ end }}
|
|
Please login using a database username and password.
|
|
{{- else if .Values.db.bundleTestDB }}
|
|
For testing purposes, phpMyAdmin has been configured to point to a test MariaDB
|
|
instance. Please login using the following credentials:
|
|
|
|
Username: root
|
|
Password : $(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "phpmyadmin.mariadb.fullname" . }} -o jsonpath="{.data.mariadb-root-password}" | base64 -d)
|
|
|
|
{{- else }}
|
|
phpMyAdmin has not been configure to point to a specific database. Please provide the db host,
|
|
username and password at log in or upgrade the release with a specific database:
|
|
|
|
$ helm upgrade {{ .Release.Name }} oci://registry-1.docker.io/bitnamicharts/phpmyadmin --set db.host=mydb
|
|
|
|
{{- end }}
|
|
|
|
{{- include "phpmyadmin.validateValues" . -}}
|
|
{{- include "phpmyadmin.checkRollingTags" . -}}
|
|
|
|
{{- $passwordValidationErrors := list -}}
|
|
{{- if .Values.mariadb.enabled }}
|
|
{{- $mariadbSecretName := include "magento.databaseSecretName" . -}}
|
|
{{- $mariadbPasswordValidationErrors := include "common.validations.values.mariadb.passwords" (dict "secret" $mariadbSecretName "subchart" true "context" $) -}}
|
|
{{- $passwordValidationErrors = append $passwordValidationErrors $mariadbPasswordValidationErrors -}}
|
|
{{- end }}
|
|
{{- include "common.errors.upgrade.passwords.empty" (dict "validationErrors" $passwordValidationErrors "context" $) -}}
|
|
{{- include "common.warnings.resources" (dict "sections" (list "metrics" "") "context" $) }}
|
|
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}
|
|
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}
|