Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sapcc/archer
CCloud Endpoint Service
https://github.com/sapcc/archer
Last synced: 11 days ago
JSON representation
CCloud Endpoint Service
- Host: GitHub
- URL: https://github.com/sapcc/archer
- Owner: sapcc
- License: apache-2.0
- Created: 2023-03-22T14:25:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-24T20:13:08.000Z (27 days ago)
- Last Synced: 2024-10-25T12:44:34.315Z (26 days ago)
- Language: Go
- Homepage:
- Size: 1.25 MB
- Stars: 4
- Watchers: 30
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Archer - CCloud Endpoint Service [![Go Reference](https://pkg.go.dev/badge/github.com/sapcc/archer.svg)](https://pkg.go.dev/github.com/sapcc/archer) [![Swagger](https://img.shields.io/badge/Swagger-UI-brightgreen)](https://sapcc.github.io/archer/) [![Go Report Card](https://goreportcard.com/badge/github.com/sapcc/archer)](https://goreportcard.com/report/github.com/sapcc/archer) [![Checks](https://github.com/sapcc/archer/actions/workflows/checks.yaml/badge.svg)](https://github.com/sapcc/archer/actions/workflows/checks.yaml) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
Archer is an API service that can privately connect services from one private [OpenStack Network](https://docs.openstack.org/neutron/latest/admin/intro-os-networking.html) to another. Consumers can select a *service* from a service catalog and **inject** it to their network, which means making this *service* available via a private ip address.
Archer implements an *OpenStack* like API and integrates with *OpenStack Keystone* and *OpenStack Neutron*.
## Architecture
There are two types of resources: **services** and **endpoints*** **Services** are private or public services that are manually configured in *Archer*. They can be accessed by creating an endpoint.
* **Service endpoints**, or short **endpoints**, are IP endpoints in a local network used to transparently access services residing in different private networks.### Features
* Multi-tenant capable via OpenStack Identity service
* OpenStack `policy.json` access policy support
* Prometheus Exporter
* Rate limiting
* CORS
* CADF compatible audit tracing
* Sentry support
* CLI Client `archerctl`### Supported Backends
* F5 BigIP
* Network Injection agent (together with `openvswitch-agent` or `linuxbridge-agent`)### Requirements
* PostgreSQL Database
* OpenStack Keystone
* OpenStack Neutron## CLI Client
`archerctl` provides a OpenStack-like CLI client for interacting with the Archer API Service. It supports common OpenStack environment setting as set by the OpenStack RC File.```sh
# archerctl --help
Usage:
archerctl [OPTIONS]Application Options:
--debug Show verbose debug information
--os-endpoint= The endpoint that will always be used [$OS_ENDPOINT]
--os-auth-url= Authentication URL [$OS_AUTH_URL]
--os-password= User's password to use with [$OS_PASSWORD]
--os-username= User's username to use with [$OS_USERNAME]
--os-project-domain-name= Domain name containing project [$OS_PROJECT_DOMAIN_NAME]
--os-project-name= Project name to scope to [$OS_PROJECT_NAME]
--os-region-name= Authentication region name [$OS_REGION_NAME]
--os-user-domain-name= User's domain name [$OS_USER_DOMAIN_NAME]
--os-pw-cmd= Derive user's password from command [$OS_PW_CMD]Output formatters:
-f, --format=[table|csv|markdown|html|value] The output format, defaults to table (default: table)
-c, --column= specify the column(s) to include, can be repeated to show multiple columns
--sort-column= specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
--long Show all columns in outputHelp Options:
-h, --help Show this help messageAvailable commands:
endpoint Endpoints
quota Quotas
rbac RBACs
service Services
version Version
```#### Example
```sh
# archerctl service list
+--------------------------------------+------+------+---------+----------+-----------+-------------------+
| ID | NAME | PORT | ENABLED | PROVIDER | STATUS | AVAILABILITY_ZONE |
+--------------------------------------+------+------+---------+----------+-----------+-------------------+
| 3c8ab870-a409-46f2-b19a-f5672e793705 | test | 80 | true | tenant | AVAILABLE | |
+--------------------------------------+------+------+---------+----------+-----------+-------------------+
```## API
This section describes properties of the Archer API. It uses a ReSTful HTTP API.#### Request format
The Archer API only accepts requests with the JSON data serialization format. The Content-Type header for POST requests is always expected to be `application/json`.#### Response format
The Archer API always response with JSON data serialization format. The Content-Type header is always `Content-Type: application/json`.#### Authentication and authorization
The **Archer API** uses the OpenStack Identity service as the default authentication service. When Keystone is enabled, users that submit requests to the OpenStack Networking service must provide an authentication token in `X-Auth-Token` request header.
You obtain the token by authenticating to the Keystone endpoint.When Keystone is enabled, the `project_id` attribute is not required in create requests because the project ID is derived from the authentication token.
#### Pagination
To reduce load on the service, list operations will return a maximum number of items at a time. To navigate the collection, the parameters limit, marker and page_reverse can be set in the URI. For example:```
?limit=100&marker=1234&page_reverse=False
```The `marker` parameter is the ID of the last item in the previous list. The `limit` parameter sets the page size. The `page_reverse` parameter sets the page direction.
These parameters are optional.
If the client requests a limit beyond the maximum limit configured by the deployment, the server returns the maximum limit number of items.For convenience, list responses contain atom **next** links and **previous** links. The last page in the list requested with `page_reverse=False` will not contain **next** link, and the last page in the list requested with `page_reverse=True` will not contain **previous** link.
To determine if pagination is supported, a user can check whether the `pagination` capability is available through the Archer API detail endpoint.
#### Sorting
You can use the `sort` parameter to sort the results of list operations.
The sort parameter contains a comma-separated list of sort keys, in order of the sort priority. Each sort key can be optionally prepended with a minus **-** character to reverse default sort direction (ascending).For example:
```
?sort=key1,-key2,key3
```**key1** is the first key (ascending order), **key2** is the second key (descending order) and **key3** is the third key in ascending order.
To determine if sorting is supported, a user can check whether the `sort` capability is available through the Archer API detail endpoint.
#### Filtering by tags
Most resources (e.g. service and endpoint) support adding tags to the resource attributes. Archer supports advanced filtering using these tags for list operations. The following tag filters are supported by the Archer API:* `tags` - Return the list of entities that have this tag or tags.
* `tags-any` - Return the list of entities that have one or more of the given tags.
* `not-tags` - Return the list of entities that do not have one or more of the given tags.
* `not-tags-any` - Return the list of entities that do not have at least one of the given tags.Each tag supports a maximum amount of 64 characters.
For example to get a list of resources having both, **red** and **blue** tags:
```
?tags=red,blue
```To get a list of resourcing having either, **red** or **blue** tags:
```
?tags-any=red,blue
```Tag filters can also be combined in the same request:
```
?tags=red,blue&tags-any=green,orange
```#### Response Codes (Faults)
| Code | Description |
|------|------------------------------------------------------------------------------------------------|
| 400 | Validation Error |
| 401 | Unauthorized |
| 403 | Policy does not allow current user to do this
The project is over quota for the request |
| 404 | Not Found
Resource not found |
| 409 | Conflict |
| 429 | You have reached maximum request limit |
| 500 | Internal server error |