mirror of
https://github.com/bitnami/charts.git
synced 2026-02-10 03:17:20 +08:00
94 lines
5.6 KiB
Plaintext
94 lines
5.6 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
|
|
|
|
{{- if or .Values.mariadb.enabled .Values.externalDatabase.host -}}
|
|
|
|
** Please be patient while the chart is being deployed **
|
|
|
|
1. Get the Drupal URL:
|
|
|
|
{{- if .Values.ingress.enabled }}
|
|
|
|
You should be able to access your new Drupal installation through
|
|
|
|
http://{{- .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 {{ include "common.names.namespace" . }} -w {{ include "common.names.fullname" . }}'
|
|
|
|
export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.names.namespace" . }} {{ include "common.names.fullname" . }} --template "{{ "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}" }}")
|
|
|
|
{{- $port:=(coalesce .Values.service.ports.http .Values.service.port) | toString }}
|
|
echo "Drupal URL: http://$SERVICE_IP{{- if ne $port "80" }}:{{ coalesce .Values.service.ports.http .Values.service.port }}{{ end }}/"
|
|
|
|
{{- else if eq .Values.service.type "ClusterIP" }}
|
|
|
|
echo "Drupal URL: http://127.0.0.1:8080/"
|
|
kubectl port-forward --namespace {{ include "common.names.namespace" . }} svc/{{ include "common.names.fullname" . }} 8080:{{ coalesce .Values.service.ports.http .Values.service.port }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if eq .Values.service.type "NodePort" }}
|
|
|
|
Or running:
|
|
|
|
export NODE_PORT=$(kubectl get --namespace {{ include "common.names.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.names.fullname" . }})
|
|
export NODE_IP=$(kubectl get nodes --namespace {{ include "common.names.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
echo "Drupal URL: http://$NODE_IP:$NODE_PORT/"
|
|
|
|
{{- end }}
|
|
|
|
2. Get your Drupal login credentials by running:
|
|
|
|
echo Username: {{ .Values.drupalUsername }}
|
|
echo Password: $(kubectl get secret --namespace {{ include "common.names.namespace" . }} {{ template "drupal.secretName" . }} -o jsonpath="{.data.drupal-password}" | base64 -d)
|
|
|
|
{{- else -}}
|
|
|
|
########################################################################################
|
|
### ERROR: You did not provide an external database host in your 'helm install' call ###
|
|
########################################################################################
|
|
|
|
This deployment will be incomplete until you configure Drupal with a resolvable database
|
|
host. To configure Drupal to use and external database host:
|
|
|
|
1. Complete your Drupal deployment by running:
|
|
|
|
export APP_PASSWORD=$(kubectl get secret --namespace {{ include "common.names.namespace" . }} {{ template "drupal.secretName" . }} -o jsonpath="{.data.drupal-password}" | base64 -d)
|
|
|
|
## PLEASE UPDATE THE EXTERNAL DATABASE CONNECTION PARAMETERS IN THE FOLLOWING COMMAND AS NEEDED ##
|
|
|
|
helm upgrade --namespace {{ include "common.names.namespace" . }} {{ .Release.Name }} oci://registry-1.docker.io/bitnamicharts/{{ .Chart.Name }} \
|
|
--set drupalPassword=$APP_PASSWORD,service.type={{ .Values.service.type }},mariadb.enabled=false{{- if not (empty .Values.externalDatabase.user) }},externalDatabase.user={{ .Values.externalDatabase.user }}{{- end }}{{- if not (empty .Values.externalDatabase.password) }},externalDatabase.password={{ .Values.externalDatabase.password }}{{- end }}{{- if not (empty .Values.externalDatabase.database) }},externalDatabase.database={{ .Values.externalDatabase.database }}{{- end }},externalDatabase.host=YOUR_EXTERNAL_DATABASE_HOST{{- if .Values.global }}{{- if .Values.global.imagePullSecrets }},global.imagePullSecrets={{ .Values.global.imagePullSecrets }}{{- end }}{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- include "common.warnings.rollingTag" .Values.image }}
|
|
{{- include "common.warnings.rollingTag" .Values.metrics.image }}
|
|
{{- include "common.warnings.rollingTag" .Values.volumePermissions.image }}
|
|
{{- include "common.warnings.rollingTag" .Values.certificates.image }}
|
|
|
|
{{- $passwordValidationErrors := list -}}
|
|
{{- if not .Values.existingSecret -}}
|
|
{{- $secretName := include "drupal.secretName" . -}}
|
|
{{- $requiredDrupalPassword := dict "valueKey" "drupalPassword" "secret" $secretName "field" "drupal-password" "context" $ -}}
|
|
{{- $requiredDrupalPasswordError := include "common.validations.values.single.empty" $requiredDrupalPassword -}}
|
|
{{- $passwordValidationErrors = append $passwordValidationErrors $requiredDrupalPasswordError -}}
|
|
{{- end -}}
|
|
|
|
{{- $mariadbSecretName := include "drupal.databaseSecretName" . -}}
|
|
{{- $mariadbPasswordValidationErrors := include "common.validations.values.mariadb.passwords" (dict "secret" $mariadbSecretName "subchart" true "context" $) -}}
|
|
{{- $passwordValidationErrors = append $passwordValidationErrors $mariadbPasswordValidationErrors -}}
|
|
|
|
{{- include "common.errors.upgrade.passwords.empty" (dict "validationErrors" $passwordValidationErrors "context" $) -}}
|
|
{{- include "common.warnings.resources" (dict "sections" (list "metrics" "" "volumePermissions") "context" $) }}
|
|
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image .Values.metrics.image .Values.certificates.image) "context" $) }}
|
|
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.volumePermissions.image .Values.metrics.image .Values.certificates.image) "context" $) }}
|