Skip to content

Commit 3d8dd0f

Browse files
authored
Merge pull request #1360 from secureCodeBox/maintenance/demo-target-image-rename
Renamed the docker images of demo-targets to include a "demo-target-" prefix
2 parents 4ce3de5 + 4d06fef commit 3d8dd0f

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

.github/workflows/release-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ jobs:
516516
id: docker_meta
517517
uses: docker/metadata-action@v3
518518
with:
519-
images: ${{ env.DOCKER_NAMESPACE }}/${{ matrix.target }}
519+
images: ${{ env.DOCKER_NAMESPACE }}/demo-target-${{ matrix.target }}
520520
tags: |
521521
type=sha
522522
latest
@@ -546,5 +546,5 @@ jobs:
546546
with:
547547
username: ${{ secrets.DOCKERHUB_USERNAME }}
548548
password: ${{ secrets.DOCKERHUB_PASSWORD }}
549-
repository: ${{ env.DOCKER_NAMESPACE }}/${{ matrix.target }}
549+
repository: ${{ env.DOCKER_NAMESPACE }}/demo-target-${{ matrix.target }}
550550
readme-filepath: ./demo-targets/${{ matrix.target }}/docs/README.DockerHub-Target.md

UPGRADING.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,15 @@ kubectl --namespace <NAMESPACE> delete role lurcher
123123
### Removed Hook Teams Webhook
124124
We implemented a more general *[notification hook](https://www.securecodebox.io/docs/hooks/notification-hook)* which can be used to notify different systems like *[MS Teams](https://www.securecodebox.io/docs/hooks/notification-hook#configuration-of-a-ms-teams-notification)* and *[Slack](https://www.securecodebox.io/docs/hooks/notification-hook#configuration-of-a-slack-notification)* and also [Email](https://www.securecodebox.io/docs/hooks/notification-hook#configuration-of-an-email-notification) based in a more flexible way with [custom message templates](https://www.securecodebox.io/docs/hooks/notification-hook#custom-message-templates). With this new hook in place it is not nessesary to maintain the preexisting MS Teams Hook any longer and therefore we removed it.
125125

126-
➡️ [Reference: #570](https://github.com/secureCodeBox/secureCodeBox/pull/570)
126+
➡️ [Reference: #570](https://github.com/secureCodeBox/secureCodeBox/pull/570)
127+
128+
## From 3.X to 4.X
129+
### Renamed the docker images of demo-targets to include a "demo-target-" prefix
130+
The docker images for the custom demo targets built by secureCodeBox to include a "demo-target-" prefix i.e:
131+
* securecodebox/old-typo3 --> securecodebox/**demo-target**-old-typo3
132+
* securecodebox/old-joomla --> securecodebox/**demo-target**-old-joomla
133+
* securecodebox/old-wordpress --> securecodebox/**demo-target**-old-wordpress
134+
135+
These images are usually used for testing and demo purposes. If you use these images, you would have to rename them appropriately.
136+
137+
➡️ [Reference: #1360](https://github.com/secureCodeBox/secureCodeBox/pull/1360)

demo-targets/old-joomla/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
# Default values for old-wordpress.
5+
# Default values for demo-target-old-joomla.
66
# This is a YAML-formatted file.
77
# Declare variables to be passed into your templates.
88

99
replicaCount: 1
1010

1111
image:
1212
# image.repository -- Container Image
13-
repository: docker.io/securecodebox/old-joomla
13+
repository: docker.io/securecodebox/demo-target-old-joomla
1414
# image.tag -- The image tag
1515
# @default -- defaults to the appVersion
1616
tag: null

demo-targets/old-typo3/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
# Default values for old-wordpress.
5+
# Default values for demo-target-old-typo3.
66
# This is a YAML-formatted file.
77
# Declare variables to be passed into your templates.
88

99
replicaCount: 1
1010

1111
image:
1212
# image.repository -- Container Image
13-
repository: docker.io/securecodebox/old-typo3
13+
repository: docker.io/securecodebox/demo-target-old-typo3
1414
# image.tag -- The image tag
1515
# @default -- defaults to the appVersion
1616
tag: v9.4

demo-targets/old-wordpress/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
# Default values for old-wordpress.
5+
# Default values for demo-target-old-wordpress.
66
# This is a YAML-formatted file.
77
# Declare variables to be passed into your templates.
88

99
replicaCount: 1
1010

1111
image:
1212
# image.repository -- Container Image
13-
repository: docker.io/securecodebox/old-wordpress
13+
repository: docker.io/securecodebox/demo-target-old-wordpress
1414
# image.tag -- The image tag
1515
# @default -- defaults to the appVersion
1616
tag: null

0 commit comments

Comments
 (0)