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

feat/ODM-10929 fix typo 2 #48

Merged
merged 1 commit into from
Jul 15, 2024
Merged
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
98 changes: 49 additions & 49 deletions docs/home/release-notes/v1.50-v1.59.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,61 +34,61 @@ Things that you have keep in mind before upgrading process:

- From this release, we are using fully original Docker images for the OSS components of ODM. It is not recommended to update them independently.

From
From:

```yaml
mysql:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/mysql
```yaml
mysql:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/mysql

mailcatcher:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/mailcatcher
mailcatcher:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/mailcatcher

clickhouse:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/clickhouse
clickhouse:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/clickhouse

nginx:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/nginx
```

To

```yaml
mysql:
image:
registry: docker.io
repository: mysql
tag: 8.4.1

mailcatcher:
image:
registry: docker.io
repository: dockage/mailcatcher
tag: 0.9.0

clickhouse:
image:
registry: docker.io
repository: clickhouse/clickhouse-server
tag: 24.6.2

nginx:
image:
registry: docker.io
repository: nginxinc/nginx-unprivileged
tag: 1.27.0-alpine
```
nginx:
image:
registry: 091468197733.dkr.ecr.us-east-1.amazonaws.com
repository: genestack/nginx
```

To:

```yaml
mysql:
image:
registry: docker.io
repository: mysql
tag: 8.4.1

mailcatcher:
image:
registry: docker.io
repository: dockage/mailcatcher
tag: 0.9.0

clickhouse:
image:
registry: docker.io
repository: clickhouse/clickhouse-server
tag: 24.6.2

nginx:
image:
registry: docker.io
repository: nginxinc/nginx-unprivileged
tag: 1.27.0-alpine
```

- Now you can mount any file with any content into any container in ODM! For example, your certificates. This feature required adding the full path in all existing ODM configuration files.

From
From:

```yaml
core:
Expand Down Expand Up @@ -129,7 +129,7 @@ Things that you have keep in mind before upgrading process:
"proxy-pass-parameters.conf":
```

To
To:

```yaml
core:
Expand Down