文档

在Knative上实现GitHub事件处理

更新时间:

本文介绍了如何在Knative上实现GitHub事件处理。

前提条件

步骤一:创建服务

关于创建服务的详细步骤,请参见快速部署Serverless应用

步骤二:创建GitHub Token

  1. 创建Personal access token。
    Personal access token用于访问GitHub API。请参见Personal access tokens
    下面是设置一个GitHubSource Sample token的示例。创建github token
    说明 需要开启repo:public_repoadmin:repo_hook,以便通过公共仓库触发Event事件,并为这些公共仓库创建webhooks。

    您可以自定义token的名称。

  2. 获取集群KubeConfig并通过kubectl工具连接集群
  3. secretToken内容可以通过下述方式生成随机字符串。
    head -c 8 /dev/urandom | base64
  4. 更新githubsecret.yaml
    如果生成的是personal_access_token_value token,则需要设置secretToken。示例如下:
    apiVersion: v1
    kind: Secret
    metadata:
      name: githubsecret
    type: Opaque
    stringData:
      accessToken: personal_access_token_value
      secretToken: asdfasfdsaf
  5. 执行以下命令,创建GitHub Token。
    kubectl --namespace default apply githubsecret.yaml

步骤三:创建GitHub事件源

您可以创建GitHubSource用于接收GitHub产生的事件。

  1. 获取集群KubeConfig并通过kubectl工具连接集群
  2. 创建并拷贝以下内容到github-source.yaml文件中。
    apiVersion: sources.eventing.knative.dev/v1alpha1
    kind: GitHubSource
    metadata:
      name: githubsourcesample
    spec:
      eventTypes:
        - pull_request
      ownerAndRepository: <YOUR USER>/<YOUR REPO>
      accessToken:
        secretKeyRef:
          name: githubsecret
          key: accessToken
      secretToken:
        secretKeyRef:
          name: githubsecret
          key: secretToken
      sink:
        apiVersion: serving.knative.dev/v1alpha1
        kind: Service
        name: github-event-display
  3. 执行以下命令,在命名空间default中创建GitHubSource。
    kubectl --namespace default apply github-source.yaml

执行结果

在GitHub repository中选择Settings > Webhooks,可以看到有一个验证成功的Hook URL。
说明 域名需要备案,否则无法进行访问。
在GitHub repository中执行以下命令,创建一个pull request,此时会产生Event事件。
kubectl --namespace default get pods
kubectl --namespace default logs github-event-display-XXXX user-container
在Knative Eventing可以看到类似下面的事件结果。
2018/11/08 18:25:34 Message Dumper received a message: POST / HTTP/1.1
Host: github-event-display.knative-demo.svc.cluster.local
Accept-Encoding: gzip
Ce-Cloudeventsversion: 0.1
Ce-Eventid: a8d4cf20-e383-11e8-8069-46e3c8ad****
Ce-Eventtime: 2018-11-08T18:25:32.819548012Z
Ce-Eventtype: dev.knative.source.github.pull_request
Ce-Source: https://github.com/someuser/somerepo/pull/1
Content-Length: 21060
Content-Type: application/json
User-Agent: Go-http-client/1.1
X-B3-Parentspanid: b2e514c3dbe94c03
X-B3-Sampled: 1
X-B3-Spanid: c85e346d89c8be4e
X-B3-Traceid: abf6292d458fb8e7
X-Envoy-Expected-Rq-Timeout-Ms: 60000
X-Envoy-Internal: true
X-Forwarded-For: 12*.*.*.*, 12*.*.*.*
X-Forwarded-Proto: http
X-Request-Id: 8a2201af-5075-9447-b593-ec3a243a****

{"action":"opened","number":1,"pull_request": ...}
  • 本页导读 (1)
文档反馈