From 15f457d263eea24fe0b7337cd4a106fabd4deb69 Mon Sep 17 00:00:00 2001 From: tompizmor Date: Tue, 6 Jun 2017 20:10:14 +0200 Subject: [PATCH] Rename *_PORT env vars to *_PORT_NUMBER (#1216) --- stable/ghost/Chart.yaml | 2 +- stable/ghost/templates/deployment.yaml | 4 ++-- stable/ghost/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/stable/ghost/Chart.yaml b/stable/ghost/Chart.yaml index ac99fe332c..f0c2dc8d62 100644 --- a/stable/ghost/Chart.yaml +++ b/stable/ghost/Chart.yaml @@ -1,5 +1,5 @@ name: ghost -version: 0.4.9 +version: 0.4.10 description: A simple, powerful publishing platform that allows you to share your stories with the world keywords: - ghost diff --git a/stable/ghost/templates/deployment.yaml b/stable/ghost/templates/deployment.yaml index affaaf6f5a..9b659ceea4 100644 --- a/stable/ghost/templates/deployment.yaml +++ b/stable/ghost/templates/deployment.yaml @@ -22,7 +22,7 @@ spec: env: - name: MARIADB_HOST value: {{ template "mariadb.fullname" . }} - - name: MARIADB_PORT + - name: MARIADB_PORT_NUMBER value: "3306" - name: MARIADB_PASSWORD valueFrom: @@ -31,7 +31,7 @@ spec: key: mariadb-root-password - name: GHOST_HOST value: {{ include "host" . | quote }} - - name: GHOST_PORT + - name: GHOST_PORT_NUMBER {{- if eq .Values.serviceType "ClusterIP" }} value: "2368" {{- else }} diff --git a/stable/ghost/values.yaml b/stable/ghost/values.yaml index eebacdd15c..69f2833ea5 100644 --- a/stable/ghost/values.yaml +++ b/stable/ghost/values.yaml @@ -1,7 +1,7 @@ ## Bitnami Ghost image version ## ref: https://hub.docker.com/r/bitnami/ghost/tags/ ## -image: bitnami/ghost:0.11.9-r0 +image: bitnami/ghost:0.11.9-r2 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'