gpt4 book ai didi

cloud-foundry - 在 Cloud Foundry list 中添加服务参数

转载 作者:行者123 更新时间:2023-12-03 16:26:00 28 4
gpt4 key购买 nike

我想推送一个需要绑定(bind)到需要额外参数的服务的 Cloud Foundry 应用程序。我在 binding services with arbitrary parameters 上找到了文档使用 cf bind-service在命令行中,我在其他地方看到了如何使用 manifest.yml 进行简单绑定(bind)文件。但是,我看不到如何在 list 文件中为服务绑定(bind)添加任意参数。怎么可能呢?
bind-service方法是这样完成的:

cf bind-service APP_NAME SERVICE_INSTANCE -c '{"role":"read-only"}'

但我希望能够在 list 中做到这一点,类似于下面的假设(但它不起作用):
services:
- service_instance:
role: read-only

最佳答案

我想对这个老问题进行更新,因为我刚刚遇到了同样的问题,而现在的答案不同了。事情已经发展和使用cf CLI V7我们现在可以在 list 文件中为服务传递参数。这是语法:

--- 
applications:
- name: my-app
services:
- name: my-service1
parameters:
foo: bar
herp: derp
- name: my-service2
parameters:
foo: bar
下面是一个真实的例子:
---
applications:
- name: order-service
path: order-service/build/libs/order-service-0.0.1.jar
services:
- mysql
- name: gateway
parameters:
routes: [{"path": "/order-service/**"}]

关于cloud-foundry - 在 Cloud Foundry list 中添加服务参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42010661/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com