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

docs(self-managed): camunda helm chart v8.3 updates #2665

Merged
merged 38 commits into from
Oct 9, 2023
Merged
Changes from 2 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
09c3507
adding es8 changes
hamza-m-masood Sep 28, 2023
cbdd5a0
running prettier
hamza-m-masood Sep 28, 2023
019e329
Merge branch 'main' into elastic-search-upgrade-guide
christinaausley Oct 9, 2023
697ad72
style(formatting): technical review
christinaausley Oct 9, 2023
ae3f623
es8 data retention guide
hamza-m-masood Oct 9, 2023
e613686
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
hamza-m-masood Oct 9, 2023
469ae3a
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
hamza-m-masood Oct 9, 2023
ee03a13
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
hamza-m-masood Oct 9, 2023
56f8f39
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
hamza-m-masood Oct 9, 2023
065814d
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
hamza-m-masood Oct 9, 2023
27dae06
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
hamza-m-masood Oct 9, 2023
078b6b2
init containers
hamza-m-masood Oct 9, 2023
f558a7a
Merge branch 'main' into elastic-search-upgrade-guide
christinaausley Oct 9, 2023
df5cfb6
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
christinaausley Oct 9, 2023
95d73e2
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
christinaausley Oct 9, 2023
9484ef3
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
christinaausley Oct 9, 2023
9d0539c
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
christinaausley Oct 9, 2023
7bbf241
Update docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
christinaausley Oct 9, 2023
1a3d8a8
prettier
christinaausley Oct 9, 2023
4768a64
Merge branch 'main' into elastic-search-upgrade-guide
christinaausley Oct 9, 2023
3358b91
tidy up elasticsearch upgrade guide
aabouzaid Oct 9, 2023
1b968cd
tidy up es docs
aabouzaid Oct 9, 2023
e264ddc
tidy up es docs
aabouzaid Oct 9, 2023
dce6358
add keycloak and web-modeler sections
aabouzaid Oct 9, 2023
0044870
add Web-Modeler changes
aabouzaid Oct 9, 2023
0bae396
add Optimize migration initContainer
aabouzaid Oct 9, 2023
c4e38d8
add Keycloak section
aabouzaid Oct 9, 2023
57c9e66
tidy up
aabouzaid Oct 9, 2023
13ca626
rewrod
aabouzaid Oct 9, 2023
240fb0e
enhance es steps
aabouzaid Oct 9, 2023
d85cc43
add notes about Keycloak PostgreSQL
aabouzaid Oct 9, 2023
c9c4199
update operational guides
aabouzaid Oct 9, 2023
6c9ed40
link to helm chart repo
aabouzaid Oct 9, 2023
12c248a
link to change log for more details
aabouzaid Oct 9, 2023
2845c63
link to change log for more details
aabouzaid Oct 9, 2023
a87783a
style(formatting): technical review
christinaausley Oct 9, 2023
7b47464
Merge branch 'main' into elastic-search-upgrade-guide
christinaausley Oct 9, 2023
fa3424c
Merge branch 'main' into elastic-search-upgrade-guide
christinaausley Oct 9, 2023
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
46 changes: 46 additions & 0 deletions docs/self-managed/platform-deployment/helm-kubernetes/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ For more details on the Keycloak upgrade path, you can also read the [Bitnami Ke

### v8.3

#### Zeebe

:::caution Breaking change

Zeebe now runs as a non-root user by default.
Expand Down Expand Up @@ -131,6 +133,50 @@ zeebe:
runAsUser: 0
```

#### Elasticsearch 8

Firstly, make sure to follow the official [upgrade guide](https://www.elastic.co/guide/en/elasticsearch/reference/8.10/setup-upgrade.html) for Elasticsearch. This is also a good time to make sure you are not using any deprecated values when upgrading.

##### Default values.yaml

If you are using our default values.yaml, then no change is required from your side. You can follow the upgrade steps as normal with the updated default values.yaml.

##### Custom values.yaml

If you have a custom values.yaml, please take note of the following:

Change the image repository and tag:

```yaml
image:
repository: bitnami/elasticsearch
tag: 8.10.2
```

Setting the persistent volume size of the master nodes can’t be done using the volumeClaimTemplate anymore. It must be done using the master values:

```yaml
master:
masterOnly: false
heapSize: 1024m
persistence:
size: 64Gi
```

Setting a retentionPolicy for elasticsearch values can't be done anymore. You must set the retentionPolicy in the respective components instead. For example, here is an elasticsearch retentionPolicy for the Tasklist component:

```yaml
retention:
enabled: false
minimumAge: 30d
```

In the global section, you can modify the host to show to release-name as well:

```yaml
host: "{{ .Release.Name }}-elasticsearch"
```

### v8.2.9

#### Optimize
Expand Down
Loading