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

chore: rename optimize 8 latest tag #4220

Merged
merged 6 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
16 changes: 16 additions & 0 deletions docs/reference/announcements.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,22 @@ An example of how to use the new `CorrelationResult` can be found in the [Connec

The separated Ingress Helm configuration for Camunda 8 Self-Managed has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. Only the combined Ingress configuration is officially supported. See the [Ingress guide](/self-managed/setup/guides/ingress-setup.md) for more information on configuring a combined Ingress setup.

### Camunda Optimize artifact and Docker tag separation

Starting with Camunda 8.6, the Camunda Optimize artifact has been split into two distinct versions, and versioning between Camunda 7 and Camunda 8 is no longer interchangeable:

- **Before Camunda 8.6**: Versions like `8.x` and `3.x` (used for Camunda 7) could sometimes be used interchangeably.
- **From Camunda 8.6 onwards**: `8.6 != 3.14`. Each version corresponds strictly to its platform:
- **Camunda 7**: Uses the `3.x` versioning scheme and the `latest` Docker tag.
- **Camunda 8**: Uses the `8.x` versioning scheme and the `8-latest` Docker tag.

#### Action required:

- **Camunda 7 Users**: Continue using `3.x` versions and the `latest` Docker tag.
- **Camunda 8 Users**: Update your configurations to use `8.x` versions and the `8-latest` Docker tag.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- **Camunda 8 Users**: Update your configurations to use `8.x` versions and the `8-latest` Docker tag.
- **Camunda 8 Users**: If you haven't already done so, update your configurations to use `8.x` versions and the `8-latest` Docker tag.

@conceptualshark - do you think this makes things clearer? Note that the 8 tags have been available for some time, there has just been no guarantee that C8 customers will have been using them

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 This works for me!


Make sure to update your Docker configurations accordingly to ensure compatibility.

## Camunda 8.5

Release date: 9th of April 2024
Expand Down
4 changes: 2 additions & 2 deletions docs/self-managed/setup/deploy/other/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The provided Docker images are supported for production usage only on Linux syst
| Operate | [camunda/operate:latest](https://hub.docker.com/r/camunda/operate) | [Operate configuration](/self-managed/operate-deployment/operate-configuration.md) |
| Tasklist | [camunda/tasklist:latest](https://hub.docker.com/r/camunda/tasklist) | [Tasklist configuration](/self-managed/tasklist-deployment/tasklist-configuration.md) |
| Identity | [camunda/identity:latest](https://hub.docker.com/r/camunda/identity) | [Configuration variables](/self-managed/identity/deployment/configuration-variables.md) |
| Optimize | [camunda/optimize:latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start#available-environment-variables) |
| Optimize | [camunda/optimize:8-latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start#available-environment-variables) |
| Connectors | [camunda/connectors:latest](https://hub.docker.com/r/camunda/connectors) | [Connectors configuration](/self-managed/connectors-deployment/connectors-configuration.md) |
| Connectors Bundle | [camunda/connectors-bundle:latest](https://hub.docker.com/r/camunda/connectors-bundle) | [Connectors configuration](/self-managed/connectors-deployment/connectors-configuration.md) |
| Web Modeler (restapi, webapp, websockets) | [camunda/web-modeler-restapi:latest](https://hub.docker.com/r/camunda/web-modeler-restapi), [camunda/web-modeler-webapp:latest](https://hub.docker.com/r/camunda/web-modeler-webapp), [camunda/web-modeler-websockets:latest](https://hub.docker.com/r/camunda/web-modeler-websockets) | [Configuration variables](/self-managed/modeler/web-modeler/configuration/configuration.md) |
Expand Down Expand Up @@ -122,7 +122,7 @@ Like for example this `docker-compose` configuration:
```
optimize:
container_name: optimize
image: camunda/optimize:latest
image: camunda/optimize:8-latest
ports:
- 8090:8090
environment:
Expand Down
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR looks good to me, but is there any reason this page isn't yet added to the sidebar?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added it to the sidebar in this PR:
#4241

Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,18 @@ Optimize now supports Elasticsearch 8.13.0+.

See the [supported environments]($docs$/reference/supported-environments/#component-requirements) documentation for the full range of supported versions.

#### Docker tag naming convention
### Artifact and Docker tag separation

The Docker tag naming conventions have been updated:
Starting with Camunda 8.6, Optimize artifact has been split into two distinct versions, and versioning between Camunda 7 and Camunda 8 is no longer interchangeable:

- For Camunda 8, the Optimize Docker tag `latest` has been changed to `8-latest`.
- For Camunda 7, Optimize continues to use the `latest` tag.
- **Before Camunda 8.6**: Versions like `8.x` and `3.x` (used for Camunda 7) could sometimes be used interchangeably.
- **From Camunda 8.6 onwards**: `8.6 != 3.14`. Each version corresponds strictly to its platform:
- **Camunda 7**: Uses the `3.x` versioning scheme and the `latest` Docker tag.
- **Camunda 8**: Uses the `8.x` versioning scheme and the `8-latest` Docker tag.

#### Action required:

- **Camunda 7 Users**: Continue using `3.x` versions and the `latest` Docker tag.
- **Camunda 8 Users**: Update your configurations to use `8.x` versions and the `8-latest` Docker tag.

Make sure to update your Docker configurations accordingly to ensure compatibility.
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,15 @@ However, as this may prolong the container boot time significantly which may con
spec:
initContainers:
- name: migration
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ['./upgrade/upgrade.sh', '--skip-warning']
containers:
- name: optimize
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we should default to Camunda 8 here? So C7 would be the one commented out

```

### 4. Resume a canceled update
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ version: '2.4'

services:
optimize:
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ["./optimize.sh", "--upgrade"]
```

Expand All @@ -107,11 +109,15 @@ However, as this may prolong the container boot time significantly which may con
spec:
initContainers:
- name: migration
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ['./upgrade/upgrade.sh', '--skip-warning']
containers:
- name: optimize
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
```

### 4. Resume a canceled update
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ version: '2.4'

services:
optimize:
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ["./optimize.sh", "--upgrade"]
```

Expand All @@ -107,11 +109,15 @@ However, as this may prolong the container boot time significantly which may con
spec:
initContainers:
- name: migration
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ['./upgrade/upgrade.sh', '--skip-warning']
containers:
- name: optimize
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
```

### 4. Resume a canceled update
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ version: '2.4'

services:
optimize:
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ["./optimize.sh", "--upgrade"]
```

Expand All @@ -107,11 +109,15 @@ However, as this may prolong the container boot time significantly which may con
spec:
initContainers:
- name: migration
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ['./upgrade/upgrade.sh', '--skip-warning']
containers:
- name: optimize
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
```

### 4. Resume a canceled update
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ version: '2.4'

services:
optimize:
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ["./optimize.sh", "--upgrade"]
```

Expand All @@ -107,11 +109,15 @@ However, as this may prolong the container boot time significantly which may con
spec:
initContainers:
- name: migration
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
command: ['./upgrade/upgrade.sh', '--skip-warning']
containers:
- name: optimize
image: registry.camunda.cloud/optimize-ee/optimize:latest
# Use the appropriate image tag depending on your version
image: registry.camunda.cloud/optimize-ee/optimize:latest # For Camunda 7
# image: registry.camunda.cloud/optimize-ee/optimize:8-latest # For Camunda 8
```

### 4. Resume a canceled update
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ description: "Install and configure Optimize Self-Managed."

## Install using Docker

The `camunda/optimize:latest` Docker image can be used to run Optimize in Self-Managed as a container. Certain environment
The `camunda/optimize:8-latest` Docker image can be used to run Optimize in Self-Managed as a container. Certain environment
variables need to be set for this to work correctly. See below for an example of how this could be done as
part of a `docker-compose` file:

```
optimize:
container_name: optimize
image: camunda/optimize:latest
image: camunda/optimize:8-latest
ports:
- 8090:8090
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The provided Docker images are supported for production usage only on Linux syst
| Operate | [camunda/operate:latest](https://hub.docker.com/r/camunda/operate) | [Operate configuration](../../operate-deployment/operate-configuration) |
| Tasklist | [camunda/tasklist:latest](https://hub.docker.com/r/camunda/tasklist) | [Tasklist configuration](../../tasklist-deployment/tasklist-configuration) |
| Identity | [camunda/identity:latest](https://hub.docker.com/r/camunda/identity) | [Configuration variables](../../identity/deployment/configuration-variables/) |
| Optimize | [camunda/optimize:latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start/#available-environment-variables) |
| Optimize | [camunda/optimize:8-latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start/#available-environment-variables) |
| Connectors | [camunda/connectors:latest](https://hub.docker.com/r/camunda/connectors) | [Connectors configuration](../../connectors-deployment/connectors-configuration) |
| Connectors Bundle | [camunda/connectors-bundle:latest](https://hub.docker.com/r/camunda/connectors-bundle) | [Connectors configuration](../../connectors-deployment/connectors-configuration) |

Expand Down Expand Up @@ -155,7 +155,7 @@ Like for example this `docker-compose` configuration:
```
optimize:
container_name: optimize
image: camunda/optimize:latest
image: camunda/optimize:8-latest
ports:
- 8090:8090
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The provided Docker images are supported for production usage only on Linux syst
| Operate | [camunda/operate:latest](https://hub.docker.com/r/camunda/operate) | [Operate configuration](../../operate-deployment/operate-configuration) |
| Tasklist | [camunda/tasklist:latest](https://hub.docker.com/r/camunda/tasklist) | [Tasklist configuration](../../tasklist-deployment/tasklist-configuration) |
| Identity | [camunda/identity:latest](https://hub.docker.com/r/camunda/identity) | [Configuration variables](../../identity/deployment/configuration-variables/) |
| Optimize | [camunda/optimize:latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start/#available-environment-variables) |
| Optimize | [camunda/optimize:8-latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start/#available-environment-variables) |
| Connectors | [camunda/connectors:latest](https://hub.docker.com/r/camunda/connectors) | [Connectors configuration](../../connectors-deployment/connectors-configuration) |
| Connectors Bundle | [camunda/connectors-bundle:latest](https://hub.docker.com/r/camunda/connectors-bundle) | [Connectors configuration](../../connectors-deployment/connectors-configuration) |

Expand Down Expand Up @@ -155,7 +155,7 @@ Like for example this `docker-compose` configuration:
```
optimize:
container_name: optimize
image: camunda/optimize:latest
image: camunda/optimize:8-latest
ports:
- 8090:8090
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The provided Docker images are supported for production usage only on Linux syst
| Operate | [camunda/operate:latest](https://hub.docker.com/r/camunda/operate) | [Operate configuration](../../operate-deployment/operate-configuration) |
| Tasklist | [camunda/tasklist:latest](https://hub.docker.com/r/camunda/tasklist) | [Tasklist configuration](../../tasklist-deployment/tasklist-configuration) |
| Identity | [camunda/identity:latest](https://hub.docker.com/r/camunda/identity) | [Configuration variables](../../identity/deployment/configuration-variables/) |
| Optimize | [camunda/optimize:latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start/#available-environment-variables) |
| Optimize | [camunda/optimize:8-latest](https://hub.docker.com/r/camunda/optimize) | [Environment variables]($optimize$/self-managed/optimize-deployment/install-and-start/#available-environment-variables) |
| Connectors | [camunda/connectors:latest](https://hub.docker.com/r/camunda/connectors) | [Connectors configuration](../../connectors-deployment/connectors-configuration) |
| Connectors Bundle | [camunda/connectors-bundle:latest](https://hub.docker.com/r/camunda/connectors-bundle) | [Connectors configuration](../../connectors-deployment/connectors-configuration) |

Expand Down Expand Up @@ -155,7 +155,7 @@ Like for example this `docker-compose` configuration:
```
optimize:
container_name: optimize
image: camunda/optimize:latest
image: camunda/optimize:8-latest
ports:
- 8090:8090
environment:
Expand Down
Loading
Loading