[bitnami/ghost] Release 19.1.10 (#12478)

* [bitnami/ghost] Release 19.1.10 updating components versions

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update README.md with readme-generator-for-helm

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Fix Ghost tests

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Keep 'article' in the querySelector

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Wait for Save events

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Increase timeout to allow waiting for save events

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
Co-authored-by: Miguel Ruiz <miruiz@vmware.com>
This commit is contained in:
Bitnami Bot
2022-09-21 08:28:01 +02:00
committed by GitHub
parent d0460e4e6d
commit 896435f602
6 changed files with 23 additions and 11 deletions

View File

@@ -6,5 +6,5 @@
"hosts": {
"bitnami-ghost.my": "{{ TARGET_IP }}"
},
"defaultCommandTimeout": 30000
}
"defaultCommandTimeout": 60000
}

View File

@@ -24,7 +24,13 @@ it('allows to create and publish a new post', () => {
cy.get('textarea[placeholder="Post title"]').type(
`${$posts.newPost.title}-${random}`
);
// Clicking a different element to trigger save event
cy.get('article').click()
cy.contains('div[class=gh-editor-post-status]', 'Saved');
cy.get('article').type(`${$posts.newPost.content}-${random}`);
// Ensure content has been saved before publishing
cy.get('textarea[placeholder="Post title"]').click()
cy.contains('div[class=gh-editor-post-status]', 'Saved');
});
// Publishing a post needs 3 steps
// Step 1: Open drop-down menu
@@ -53,7 +59,13 @@ it('allows to create a new page', () => {
cy.get('textarea[placeholder="Page title"]').type(
`${$pages.newPage.title}-${random}`
);
// Clicking a different element to trigger save event
cy.get('article').click()
cy.contains('div[class=gh-editor-post-status]', 'Saved');
cy.get('article').type(`${$pages.newPage.content}-${random}`);
// Ensure content has been saved before publishing
cy.get('textarea[placeholder="Page title"]').click()
cy.contains('div[class=gh-editor-post-status]', 'Saved');
});
// Publishing a page needs 3 steps
// Step 1: Open drop down-menu

View File

@@ -1,9 +1,9 @@
dependencies:
- name: mysql
repository: https://charts.bitnami.com/bitnami
version: 9.3.2
version: 9.3.3
- name: common
repository: https://charts.bitnami.com/bitnami
version: 2.0.3
digest: sha256:d1ea62aebfc46083805e27c97abda3f24a649e364dd3f579d747580803ff03ea
generated: "2022-09-13T02:06:36.960951453Z"
digest: sha256:5288221cb0b49b06fc8e16174189f8c6ce5fa345aff7ed3f19f2d227f9a04625
generated: "2022-09-19T09:53:41.90567477Z"

View File

@@ -1,7 +1,7 @@
annotations:
category: CMS
apiVersion: v2
appVersion: 5.14.2
appVersion: 5.15.0
dependencies:
- condition: mysql.enabled
name: mysql
@@ -33,4 +33,4 @@ name: ghost
sources:
- https://github.com/bitnami/containers/tree/main/bitnami/ghost
- https://www.ghost.org/
version: 19.1.9
version: 19.1.10

View File

@@ -82,7 +82,7 @@ The command removes all the Kubernetes components associated with the chart and
| ------------------- | ----------------------------------------------------------------------------------------------------- | --------------------- |
| `image.registry` | Ghost image registry | `docker.io` |
| `image.repository` | Ghost image repository | `bitnami/ghost` |
| `image.tag` | Ghost image tag (immutable tags are recommended) | `5.14.2-debian-11-r0` |
| `image.tag` | Ghost image tag (immutable tags are recommended) | `5.15.0-debian-11-r0` |
| `image.digest` | Ghost image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
| `image.pullPolicy` | Ghost image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Ghost image pull secrets | `[]` |
@@ -220,7 +220,7 @@ The command removes all the Kubernetes components associated with the chart and
| `volumePermissions.enabled` | Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` | `false` |
| `volumePermissions.image.registry` | Bitnami Shell image registry | `docker.io` |
| `volumePermissions.image.repository` | Bitnami Shell image repository | `bitnami/bitnami-shell` |
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `11-debian-11-r35` |
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `11-debian-11-r36` |
| `volumePermissions.image.digest` | Bitnami Shell image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
| `volumePermissions.image.pullPolicy` | Bitnami Shell image pull policy | `IfNotPresent` |
| `volumePermissions.image.pullSecrets` | Bitnami Shell image pull secrets | `[]` |

View File

@@ -55,7 +55,7 @@ extraDeploy: []
image:
registry: docker.io
repository: bitnami/ghost
tag: 5.14.2-debian-11-r0
tag: 5.15.0-debian-11-r0
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -567,7 +567,7 @@ volumePermissions:
image:
registry: docker.io
repository: bitnami/bitnami-shell
tag: 11-debian-11-r35
tag: 11-debian-11-r36
digest: ""
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.