diff --git a/bitnami/magento/Chart.yaml b/bitnami/magento/Chart.yaml index aca4bac3d..b52dee4cd 100644 --- a/bitnami/magento/Chart.yaml +++ b/bitnami/magento/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: magento -version: 11.0.5 +version: 11.1.0 appVersion: 2.3.4 description: A feature-rich flexible e-commerce solution. It includes transaction options, multi-store functionality, loyalty programs, product categorization and shopper filtering, promotion rules, and more. keywords: diff --git a/bitnami/magento/README.md b/bitnami/magento/README.md index 49449fb6d..6d58a806c 100644 --- a/bitnami/magento/README.md +++ b/bitnami/magento/README.md @@ -72,6 +72,7 @@ The following table lists the configurable parameters of the Magento chart and t | `magentoFirstName` | Magento Admin First Name | `FirstName` | | `magentoLastName` | Magento Admin Last Name | `LastName` | | `magentoMode` | Magento mode | `developer` | +| `magentoUseSecureAdmin` | Use SSL to access the Magento Admin. | `false` | | `magentoAdminUri` | Magento prefix to access Magento Admin | `admin` | | `allowEmptyPassword` | Allow DB blank passwords | `yes` | | `ingress.enabled` | Enable ingress controller resource | `false` | diff --git a/bitnami/magento/templates/deployment.yaml b/bitnami/magento/templates/deployment.yaml index bd83567e2..31b8da0ef 100644 --- a/bitnami/magento/templates/deployment.yaml +++ b/bitnami/magento/templates/deployment.yaml @@ -115,6 +115,8 @@ spec: value: {{ .Values.magentoLastName | quote }} - name: MAGENTO_MODE value: {{ .Values.magentoMode | quote }} + - name: MAGENTO_USE_SECURE_ADMIN + value: {{ ternary "yes" "no" .Values.magentoUseSecureAdmin | quote }} ports: - name: http containerPort: 80 diff --git a/bitnami/magento/values-production.yaml b/bitnami/magento/values-production.yaml index f731f9807..f4d601308 100644 --- a/bitnami/magento/values-production.yaml +++ b/bitnami/magento/values-production.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/magento - tag: 2.3.4-debian-10-r8 + tag: 2.3.4-debian-10-r14 ## Set to true if you would like to see extra information on logs ## It turns BASH and NAMI debugging in minideb ## ref: https://github.com/bitnami/minideb-extras/#turn-on-bash-debugging @@ -86,6 +86,11 @@ magentoLastName: LastName ## magentoMode: developer +## Use SSL to access the Magento Admin. Valid values: `true`, `false` +## ref: https://github.com/bitnami/bitnami-docker-magento#configuration +## +magentoUseSecureAdmin: false + ## Set to `yes` to allow the container to be started with blank passwords ## ref: https://github.com/bitnami/bitnami-docker-magento#environment-variables allowEmptyPassword: "yes" diff --git a/bitnami/magento/values.yaml b/bitnami/magento/values.yaml index 537724cc1..44e6f2674 100644 --- a/bitnami/magento/values.yaml +++ b/bitnami/magento/values.yaml @@ -14,7 +14,7 @@ image: registry: docker.io repository: bitnami/magento - tag: 2.3.4-debian-10-r8 + tag: 2.3.4-debian-10-r14 ## Set to true if you would like to see extra information on logs ## It turns BASH and NAMI debugging in minideb ## ref: https://github.com/bitnami/minideb-extras/#turn-on-bash-debugging @@ -86,6 +86,11 @@ magentoLastName: LastName ## magentoMode: developer +## Use SSL to access the Magento Admin. Valid values: `true`, `false` +## ref: https://github.com/bitnami/bitnami-docker-magento#configuration +## +magentoUseSecureAdmin: false + ## Set to `yes` to allow the container to be started with blank passwords ## ref: https://github.com/bitnami/bitnami-docker-magento#environment-variables allowEmptyPassword: "yes"