Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bitnami/ghost] Release 19.1.10 #12478

Merged
merged 6 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .vib/ghost/cypress/cypress.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"hosts": {
"bitnami-ghost.my": "{{ TARGET_IP }}"
},
"defaultCommandTimeout": 30000
}
"defaultCommandTimeout": 60000
}
12 changes: 12 additions & 0 deletions .vib/ghost/cypress/cypress/integration/ghost_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions bitnami/ghost/Chart.lock
Original file line number Diff line number Diff line change
@@ -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"
4 changes: 2 additions & 2 deletions bitnami/ghost/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
annotations:
category: CMS
apiVersion: v2
appVersion: 5.14.2
appVersion: 5.15.0
dependencies:
- condition: mysql.enabled
name: mysql
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions bitnami/ghost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | `[]` |
Expand Down Expand Up @@ -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 | `[]` |
Expand Down
4 changes: 2 additions & 2 deletions bitnami/ghost/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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.
Expand Down