F5Networks / f5-openstack-docs

Technical documentation related to the use of F5 products and tools in OpenStack
http://clouddocs.f5.com/cloud/openstack/latest
Apache License 2.0
9 stars 15 forks source link

location of f5.tgz is incorrect #240

Closed thomsonjames closed 6 years ago

thomsonjames commented 6 years ago

// Title: Provide a short but descriptive summary of the issue. On a couple pages, f5.tgz is referenced in code as "|f5_lbaasv2_driver_shim_url|"

// Do not include requests for development or report issues with code or products here. On this page: http://clouddocs.f5.com/cloud/openstack/v1/lbaas/quick-reference.html It manifests itself as curl -O -L https://github.com/F5Networks/neutron-lbaas/releases/download/v10.1.0/f5.tgz

That path does not exist.

Requests

Provide details regarding what you would like to see added to our documentation:

OpenStack project

OpenStack version

Use Case

Trying to install lbaas agent and driver

thomsonjames commented 6 years ago

Possibly as part of this, I found one here: https://github.com/F5Networks/f5-openstack-lbaasv2-driver/blob/master/f5.tgz

Used the curl command to get the file and untar: curl -O -L https://github.com/F5Networks/f5-openstack-lbaasv2-driver/blob/master/f5.tgz tar xvf f5.tgz -C /usr/lib/python2.7/site-packages/neutron_lbaas/drivers/

[root@newton neutron(keystone_admin)]# tar xvf ./f5.tgz -C /usr/lib/python2.7/site-packages/neutron_lbaas/drivers/

gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now

I'm not sure if this is a problem with f5.tgz file and I should file a bug there or if it's just documentation for the correct tar command.

russokj commented 6 years ago

I did not see a release v10.1.0, but there is a v.10.0.0 release, so use curl -O -L https://github.com/F5Networks/neutron-lbaas/releases/download/v10.0.0/f5.tgz

If you want the latest, you would have to update the curl command you used to the following: curl -o f5.tgz -L https://github.com/F5Networks/f5-openstack-lbaasv2-driver/blob/master/f5.tgz?raw=true

Looks like the documentation might need a little updating (or maybe it's ahead of the actual release).