Skip to content

Commit

Permalink
chore: upgrade ES version
Browse files Browse the repository at this point in the history
  • Loading branch information
flemzord committed Dec 22, 2023
1 parent 9fc042f commit c0f7b39
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/docs/deployment/cloudprem/operator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ With this file in place, we can deploy our private region using Helm:

```bash
helm install regions oci://ghcr.io/formancehq/helm/regions \
--version 0.4.2 \
-- version 0.4.4 \
--namespace formance-system \
--create-namespace \
--values region.values.yaml
Expand All @@ -65,7 +65,7 @@ Thanks to this CRD, you can also deploy a custom version of a service, including
You can install the latest versions of CRD Versions with the following command:
```bash
helm upgrade regions oci://ghcr.io/formancehq/helm/regions \
--version 0.4.2 \
-- version 0.4.4 \
--namespace formance-system \
--create-namespace \
--values region.values.yaml
Expand All @@ -79,7 +79,7 @@ The "Configuration" CRD defines the configuration of our application. This inclu
If you wish to create all the configurations required for testing. You can run the following command:
```bash
helm upgrade regions oci://ghcr.io/formancehq/helm/regions \
--version 0.4.2 \
-- version 0.4.4 \
--namespace formance-system \
--create-namespace \
--values region.values.yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/deployment/elements/operator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Run the following command to apply the Kubernetes manifest that includes the ope

```shell
helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \
--version 0.4.2 \
-- version 0.4.4 \
--namespace formance-system \
--create-namespace \
--set agent.enabled=false
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/operator/upgrade.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The operator can be upgraded by running the following command:

```bash
helm upgrade regions oci://ghcr.io/formancehq/helm/regions \
--version 0.4.2 \
-- version 0.4.4 \
--namespace formance-system \
```

Expand Down
3 changes: 1 addition & 2 deletions helm/regions/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ maintainers:
icon: "https://avatars.githubusercontent.com/u/84325077?s=200&v=4"

type: application
version: 0.4.3
version: 0.4.4
appVersion: "latest"

dependencies:
Expand All @@ -34,4 +34,3 @@ dependencies:
version: 0.6.1
repository: "oci://registry-1.docker.io/bitnamicharts"
condition: demo.enabled

8 changes: 6 additions & 2 deletions helm/regions/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,17 @@ opensearch:
security:
enabled: false
master:
replicaCount: 1
persistence:
enabled: false
replicaCount: 1
data:
replicaCount: 0
replicaCount: 2
persistence:
enabled: false
coordinating:
replicaCount: 0
ingest:
enabled: false
replicaCount: 0
dashboards:
enabled: true

0 comments on commit c0f7b39

Please sign in to comment.