How to Update Resoto
We regularly release new versions of Resoto with bug fixes and new features, and recommend keeping your Resoto installation up to date.
- AWS
- Docker
- Kubernetes
Prerequisites​
Helm (version 3 or above)
Directions​
Log in to the AWS CloudFormation console.
Click Stacks.
Enter
ResotoEKS
into the search box, and click on the stack you would like to upgrade.Click the Outputs tab.
Enter
ResotoEKSConfigCommand
into the search box. There should be exactly one entry. Copy the value (aws eks ...
).Open a terminal and execute the copied command.
List installed Helm charts:
$ helm list
​NAME NAMESPACE CHART APP VERSION
​resoto resoto resoto-0.7.4 3.3.1noteThe
APP VERSION
column displays the currently installed version of Resoto.Add the Some Engineering Helm chart repository:
$ helm repo add someengineering https://helm.some.engineering
Update cached chart information:
$ helm repo update
Upgrade the
resoto
chart:$ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag=edge
Prerequisites​
Directions​
Fetch the
docker-compose.yaml
file for the latest Resoto version. See the list of versions if you want to use a specific version.$ curl -Lo docker-compose.yaml https://raw.githubusercontent.com/someengineering/resoto/main/docker-compose.yaml
Restart the services defined in the
docker-compose.yaml
file:$ docker-compose up -d
noteDocker Compose V2 integrated compose functions in to the Docker platform.
In Docker Compose V2, the command is
docker compose
(no hyphen) instead ofdocker-compose
.infoResoto publishes packages for both x86 and ARM architectures for stable releases, but
edge
versions are only available for x86.If you have an Apple Silicon or other ARM-based machine, please use the latest stable release (
3.8.0
orlatest
).
Prerequisites​
- Helm (version 3 or above)
Directions​
List installed Helm charts:
$ helm list
​NAME NAMESPACE CHART APP VERSION
​resoto resoto resoto-0.7.4 3.3.1
The APP VERSION
column displays the currently installed version of Resoto.
Add the Some Engineering Helm chart repository:
$ helm repo add someengineering https://helm.some.engineering
Update cached chart information:
$ helm repo update
Upgrade the
resoto
chart:$ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag=edge