Skip to content

Commit

Permalink
Merge pull request #35 from f5devcentral/release_324
Browse files Browse the repository at this point in the history
Release 3.2.4
  • Loading branch information
jszczepanskif5 authored Feb 7, 2022
2 parents a557c33 + 7b94717 commit c293ad7
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
- [Journey: Application Service migration](#journey-application-service-migration)
- [Configuration Migration Considerations](#configuration-migration-considerations)
- [JOURNEYS Setup Requirements](#journeys-setup-requirements)
- [Usage](#usage)
- [JOURNEYS Installation](#journeys-installation)
- [JOURNEYS Update](#journeys-update)
- [Feature Details](#feature-details)
- [Contributing](#contributing)

Expand Down Expand Up @@ -442,7 +443,11 @@ If UCS load fails, it is strongly advised to manually load the backup UCS archiv
* Install [Docker](https://docs.docker.com/get-docker/)
* Install [Docker Compose](https://docs.docker.com/compose/install/)
## Usage
### System requirements
No hard requirements are defined, but we recommend having a minimum of 2 CPUs and 4GB of RAM on the system/VM running Journeys.
Having more resources might be helpful when attempting to parse very complex UCS archives.
## JOURNEYS Installation
### Fetching JOURNEYS
Expand Down Expand Up @@ -497,8 +502,26 @@ cd f5-journeys
docker logs f5-journeys_journeys_1 2>&1 | grep 'BEGIN CERTIFICATE'
```
## JOURNEYS Update
To update Journeys to the latest version, run the following commands.
1. Clean up the old working directory. Sometimes leftover data might not be compatibile with new Journeys version.
```
rm -rf /tmp/journeys # or whichever folder you specified in the .env file
```
1. Bring down the old containers, pull the newest changes and start the services again.
```
docker-compose down
git pull
docker-compose up -d
```
Older images may then be viewed and removed using the following commands.
```
docker images | grep journeys
docker rmi <image_name>:<version>
```
## Feature details
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "2"
services:
acc-api:
image: f5devcentral/f5-automation-config-converter:1.17.0
image: f5devcentral/f5-automation-config-converter:1.18.0
environment:
- ACC_API_PORT=${ACC_API_PORT}
ports:
Expand All @@ -11,7 +11,7 @@ services:
tmpfs: /tmp

journeys:
image: f5devcentral/f5-bigip-journeys-app:v3.2.3
image: f5devcentral/f5-bigip-journeys-app:v3.2.4
environment:
- ACC_API_PORT=${ACC_API_PORT}
- ACC_API_HOST=acc-api
Expand Down Expand Up @@ -40,7 +40,7 @@ services:
- "6379:6379"

celery-worker:
image: f5devcentral/f5-bigip-journeys-app:v3.2.3
image: f5devcentral/f5-bigip-journeys-app:v3.2.4
command: celery -A journeys.backend worker -l debug
environment:
- BROKER_URL=${BROKER_URL}
Expand Down

0 comments on commit c293ad7

Please sign in to comment.