Skip to content

f5devcentral/f5-ssl-orchestrator-config-converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

F5 SSL ORCHESTRATOR CONFIG CONVERTER

Documentation

docker pulls image size version github issues license

Introduction

F5 SSL Orchestrator config converter is an early access, self-contained application, designed for the purpose of transitioning/converting SSL Orchestrator configurations from the BIG-IP platform to the next-generation BIG-IP environment. This application is distributed as a Docker image, allowing users to create the converted configuration on BIG-IP Next Central Manager.

Refer to product documentation for more details.

Quick Start

To convert SSL Orchestrator configuration from BIG-IP to CM SSL Orchestrator compliant JSON format.

SETUP:

Install docker on your local working system (like VM)

Command to run F5 SSL Orchestrator config converter docker image

$ docker pull f5devcentral/f5-ssl-orchestrator-config-converter:[TAG]      // Pull Docker image from f5devcentral. Use most latest tag.
$ docker run --rm -v "$PWD":/usr/app/data <image_name:[TAG]>               // Run docker container.

Details about docker run command:

Working directory in docker container /usr/app

$ docker run -it --rm -v "$PWD":/usr/app/data <image_name:[TAG]> -i <data/input_ifile> -o <data/output.json>
|--rm |                 Automatically remove the container when it exits.                                         |
|-v   |--volume list    Bind mount a volume, Mount a volume from local to docker container.                       |
|-i   | input file      <path> Specify path to input ifile.                                                       |
|-o   | output file     <path> Specify output file for the converted json results. (default "data/output.json")   |
|–log | logfile         <file> outputs log to the specified file. (default "os.Stdout")                           |

NOTE: Due to the least privilege of user 'f5docker' as the default user in docker container, you need to create the output file first and make sure it can be written by other users including f5docker. Additionally, this also applies to logfile, if user provides -log flag.

touch output.json
chmod a+rw output.json

Support

If you come across a bug please submit an issue to our team.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages