第 10 章 带有 RHPAM Kogito Operator 的 OpenShift 部署选项


在将 Kogito 微服务构建为业务应用程序的一部分后,您可以使用 Red Hat OpenShift Container Platform Web 控制台来部署微服务。OpenShift Web 控制台中的 RHPAM Kogito Operator 页面会指导您完成部署过程。

RHPAM Kogito Operator 支持以下选项,用于在 Red Hat OpenShift Container Platform 上构建和部署 Kogito 微服务:

  • Git 源构建和部署
  • 二进制构建和部署
  • 自定义镜像构建和部署
  • 文件构建和部署

10.1. 使用 Git 源构建和 OpenShift Web 控制台在 OpenShift 上部署 Red Hat build of Kogito 微服务

RHPAM Kogito Operator 使用以下自定义资源来部署特定于域的微服务(您开发的微服务):

  • KogitoBuild 使用 Git URL 或其他源构建应用,并生成运行时镜像。
  • KogitoRuntime 启动运行时镜像,并根据要求进行配置。

在大多数用例中,您可以使用标准运行时构建和部署方法,从 Git 存储库源在 OpenShift 上部署 Kogito 微服务,如以下步骤所示。

注意

如果您要在本地开发或测试 Red Hat build of Kogito 微服务,您可以使用二进制构建、自定义镜像构建或文件构建选项从本地源而不是从 Git 存储库构建和部署。

先决条件

  • 已安装 RHPAM Kogito Operator。
  • 带有 Red Hat build of Kogito 微服务的应用位于 Git 存储库中,可从您的 OpenShift 环境访问。
  • 您可以访问 OpenShift Web 控制台,具有创建并编辑 KogitoBuildKogitoRuntime 所需的权限。
  • (仅红帽构建的 Quarkus)项目的 pom.xml 文件包含了对 quarkus-smallrye-health 扩展的以下依赖项。此扩展启用 OpenShift 中红帽构建 Quarkus 项目所需的 存活度和就绪度探测

    在 OpenShift 中红帽构建的 Quarkus 应用程序的 SmallRye Health 依赖项

    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-smallrye-health</artifactId>
    </dependency>

流程

  1. 进入 Operators Installed Operators 并选择 RHPAM Kogito Operator
  2. 要在 operator 页面上创建 Red Hat build of Kogito build 定义,请选择 Kogito Build 选项卡,然后点击 Create KogitoBuild
  3. 在应用程序窗口中,使用 Form ViewYAML View 来配置构建定义。

    至少,定义以下示例 YAML 文件中显示的应用程序配置:

    带有红帽构建的 Kogito 构建的红帽 Quarkus 应用程序的 YAML 定义示例

    apiVersion: rhpam.kiegroup.org/v1 # Red Hat build of Kogito API for this service
    kind: KogitoBuild  # Application type
    metadata:
      name: example-quarkus  # Application name
    spec:
      type: RemoteSource
      gitSource:
        uri: 'https://github.com/kiegroup/kogito-examples'  # Git repository containing application (uses default branch)
        contextDir: dmn-quarkus-example  # Git folder location of application

    带有红帽构建的 Spring Boot 应用程序的 YAML 定义示例

    apiVersion: rhpam.kiegroup.org/v1 # Red Hat build of Kogito API for this service
    kind: KogitoBuild  # Application type
    metadata:
      name: example-springboot  # Application name
    spec:
      runtime: springboot
      type: RemoteSource
      gitSource:
        uri: 'https://github.com/kiegroup/kogito-examples'  # Git repository containing application (uses default branch)
        contextDir: dmn-springboot-example  # Git folder location of application

    注意

    如果您配置了内部 Maven 存储库,您可以将其用作 Maven mirror 服务,并在 Red Hat build of Kogito 构建定义中指定 Maven mirror URL 来缩短构建时间:

    spec:
      mavenMirrorURL: http://nexus3-nexus.apps-crc.testing/repository/maven-public/

    有关内部 Maven 存储库的更多信息,请参阅 Apache Maven 文档。

  4. 定义应用程序数据后,点 Create 生成 Red Hat build of Kogito 构建。

    您的应用程序在 红帽构建的 KogitoBuilds 页面中列出。您可以选择应用程序名称来查看或修改应用程序设置和 YAML 详情。

  5. 要创建 Red Hat build of Kogito 微服务定义,请在 operator 页面中选择 Kogito Runtime 选项卡,然后点击 Create KogitoRuntime
  6. 在应用窗口中,使用 Form ViewYAML View 来配置微服务定义。

    至少,定义以下示例 YAML 文件中显示的应用程序配置:

    带有红帽构建的 Kogito 微服务构建的 Red Hat build 的 YAML 定义示例

    apiVersion: rhpam.kiegroup.org/v1 # Red Hat build of Kogito API for this microservice
    kind: KogitoRuntime  # Application type
    metadata:
      name: example-quarkus  # Application name

    带有红帽构建的 Kogito 微服务的 Spring Boot 应用程序的 YAML 定义示例

    apiVersion: rhpam.kiegroup.org/v1 # Red Hat build of Kogito API for this microservice
    kind: KogitoRuntime  # Application type
    metadata:
      name: example-springboot  # Application name
    spec:
      runtime: springboot

    注意

    在这种情况下,应用程序是从 Git 构建并使用 KogitoRuntime 进行部署。您必须确保应用程序名称在 KogitoBuildKogitoRuntime 中相同。

  7. 定义应用程序数据后,点 Create 生成 Red Hat build of Kogito 微服务。

    您的应用程序在红帽构建的 Kogito 微服务页面中列出。您可以选择应用程序名称来查看或修改应用程序设置以及 YAML 文件的内容。

  8. 在 Web 控制台的左侧菜单中,转至 Builds Builds 以查看应用程序构建的状态。

    您可以选择特定的构建来查看构建详情。

    注意

    对于您为 OpenShift 部署创建的每个红帽构建 Kogito 微服务,Web 控制台的 Builds 页面会生成并列出两个构建:传统运行时构建和 Source-to-Image(S2I)构建,后缀 -builder。S2I 机制在 OpenShift 构建中构建应用,然后将构建的应用传递到下一 OpenShift 构建,以打包至运行时容器镜像。红帽构建的 Kogito S2I 构建配置还允许您直接从 OpenShift 平台上的 Git 存储库构建项目。

  9. 应用程序构建完成后,进入 Workloads Deployments 来查看应用程序部署、pod 状态和其他详情。
  10. 部署完 Red Hat build of Kogito microservice 后,在 web 控制台的左侧菜单中,转至 Networking Routes 以查看对部署的应用程序的访问链接。

    您可以选择应用程序名称来查看或修改路由设置。

    通过应用程序路由,您可以根据需要将 Kogito 微服务构建与业务自动化解决方案集成。

Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.