Spring 数据流 Helm 图表:有没有办法在 Helm 图表中声明应用程序和任务的创建?
Spring Data Flow Helm chart: Is there a way to declare creation of applications and tasks within the helm charts?
我 运行 唯一的方法是根据文档使用 curl 命令:https://docs.spring.io/spring-cloud-dataflow/docs/2.7.1/reference/htmlsingle/#resources-app-registry-post
这使用 curl 命令来命中 api。我可以为其开发脚本,但我想在 helm chart 中设置它,以便在部署 helm chart 时创建这些任务和应用程序。有什么想法吗?
请检查 Spring Cloud Data Flow, Helm Installation, Register prebuilt applications,上面写着:
Applications can be registered individually using the app register functionality or as a group using the app import functionality.
所以,我想您总是需要使用 Helm Chart 启动应用程序,然后才使用 app
或 REST Endpoint 注册应用程序。
我 运行 唯一的方法是根据文档使用 curl 命令:https://docs.spring.io/spring-cloud-dataflow/docs/2.7.1/reference/htmlsingle/#resources-app-registry-post
这使用 curl 命令来命中 api。我可以为其开发脚本,但我想在 helm chart 中设置它,以便在部署 helm chart 时创建这些任务和应用程序。有什么想法吗?
请检查 Spring Cloud Data Flow, Helm Installation, Register prebuilt applications,上面写着:
Applications can be registered individually using the app register functionality or as a group using the app import functionality.
所以,我想您总是需要使用 Helm Chart 启动应用程序,然后才使用 app
或 REST Endpoint 注册应用程序。