Update Ghost revision to 0.7.9-2 - improvements

This commit is contained in:
Juan Ariza
2016-08-18 11:08:40 +02:00
parent 146f178039
commit cfd99a106a
4 changed files with 16 additions and 5 deletions

View File

@@ -70,7 +70,18 @@ $ helmc generate --force ghost
$ helmc install ghost
```
You should now be able to access the application using the external IP reserved for the Ghost service.
> Note:
>
> If you want to use a FQDN associated the IP reserved for the Load Balancer. You need to configure Ghost service properly.
Edit values.toml and update ghostHost with the FQDN associated to the reserved IP, regenerate the chart and install.
```bash
$ helmc generate --force ghost
$ helmc install ghost
```
You should now be able to access the application using the external IP reserved for the Ghost service (or the FQDN if configured).
The default credentials are:

View File

@@ -34,7 +34,7 @@ spec:
secretKeyRef:
name: mariadb
key: mariadb-root-password
- name: GHOST_HOSTNAME
- name: GHOST_HOST
value: ""
- name: GHOST_HOSTPORT
value: "80"

View File

@@ -34,8 +34,8 @@ spec:
secretKeyRef:
name: mariadb
key: mariadb-root-password
- name: GHOST_HOSTNAME
value: {{ default .ghostHostIP .ghostHostname | quote }}
- name: GHOST_HOST
value: {{ default .ghostHostIP .ghostHost | quote }}
- name: GHOST_HOSTPORT
value: {{ default .ghostHostPort | quote }}
- name: GHOST_USERNAME

View File

@@ -1,4 +1,4 @@
ghostHostname = ""
ghostHost = ""
ghostHostIP = ""
ghostHostPort = "80"
ghostUser = "user"