Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ OpenNebula maintains two appliance marketplaces:
| `ENDPOINT` | The Marketplace endpoint URL |

For instructions on adding the OpenNebula Community Marketplace to your OpenNebula installation, please see the [OpenNebula Community Marketplace Wiki](https://github.com/OpenNebula/marketplace-community/wiki/marketplace_start).

## Access Through an HTTP Proxy

To use a proxy, set `HTTP_PROXY` in the OpenNebula service environment or add `--proxy http://username:password@proxy.example.com:8080` to the `MARKET_MAD` arguments in [oned.conf]({{% relref "../../operation_references/opennebula_services_configuration/oned#marketplace-driver-configuration" %}}). The `--proxy` option takes precedence over the environment variable.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ Drivers to manage different Marketplaces, specialized for the storage backend.
- `ARGUMENTS`: for the driver executable:
- `-t` number of threads, i.e., number of simultaneous repo operations
- `-m` Marketplace mads separated by commas
- `--proxy` proxy URI, if required to access the internet. For example `--proxy http://1.2.3.4:5678`
- `--proxy` proxy URI, if required to access the internet. For example `--proxy http://username:password@proxy.example.com:8080`. For the `one` monitor, this overrides the `HTTP_PROXY` environment variable.
- `-w` timeout in seconds to execute external commands (default unlimited)

Sample configuration:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ One line per issue starting with "Fix ...". Descrive the issue so the user under
* Fix failure of `onegroup create` CLI command with empty `--resource` parameter [#7458](https://github.com/OpenNebula/one/issues/7458).
-->

* Fix usage of HTTP proxy credentials for marketplace monitoring [#8043](https://github.com/OpenNebula/one/issues/8043).
Loading