5.3. 导入服务
通过按照以下指定顺序指定以下字段,从 CSV 文件中导入服务。在 CSV 文件中包含这些标头:
service_name,endpoint_name,endpoint_http_method,endpoint_path,auth_mode,endpoint_system_name,type
您需要以下信息:
-
3scale admin 帐户:
{3SCALE_ADMIN}
运行 3scale 实例的域:
{DOMAIN_NAME}
- 如果您使用的是托管 APICast,这是 3scale.net
-
您的帐户的访问密钥:{
ACCESS_KEY}
-
服务的 CSV 文件,例如:
example/import_example.csv
运行以下命令导入服务:
示例
$ podman run -v $PWD/examples/import_example.csv:/tmp/import_example.csv registry.redhat.io/3scale-amp2/toolbox-rhel8:3scale2.12 3scale import csv --destination=https://{ACCESS_KEY}@{3SCALE_ADMIN}-admin.{DOMAIN_NAME} --file=/tmp/import_example.csv
本例使用 Podman 卷在容器中挂载资源文件。它假定该文件位于当前的 $PWD
文件夹中。