webhookinator

command module
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 15, 2019 License: Apache-2.0 Imports: 11 Imported by: 0

README

webhookinator

Sample

Note: scm configuration & git repository secrets management are beyond webhookinator's scope.

Assume that githubconfig is set in proj-abc namespace and a git credential is store in user-def namespace(by configuring github in pipeline project settings)

Assume that rancher server will have a hook endpoint that proxy to webhookinator(for testing change here)

  1. Create a gitWebHookReceiver:
- apiVersion: webhookinator.cattle.io/v1
  kind: GitWebHookReceiver
  metadata:
    name: test
    namespace: proj-abc
  spec:
    enabled: true
    pr: true
    provider: github
    repositoryCredentialSecretName: user-def:proj-abc-github-gitlawr
    repositoryUrl: https://github.com/gitlawr/test.git
    executionLabels:
      provider: github

gitWebHookReceiver controller will register a webhook in the repo.

  1. Create a PR, an execution will be created by webhookinator
- apiVersion: webhookinator.cattle.io/v1
  kind: GitWebHookExecution
  metadata:
    generateName: test-
    name: test-n4fhv
    namespace: proj-abc
    labels:
      provider: github
  spec:
    author: gitlawr
    branch: master
    commit: 6d3f4956cff0
    pr: "1"
    gitWebHookReceiverName: proj-abc:test
    message: prmessage
    repositoryUrl: https://github.com/gitlawr/test.git
    sourceLink: https://github.com/gitlawr/test/pull/1
    title: prtitle
  1. An external execution controller handle this execution, setting Handled condition & statusUrl
apiVersion: webhookinator.cattle.io/v1
kind: GitWebHookExecution
metadata:
  generateName: test-
  name: test-n4fhv
  namespace: proj-abc
  labels:
    provider: github
spec:
  ...
status:
  conditions:
  - lastUpdateTime: 2018-12-06T14:15:43+08:00
    status: "Unknown"
    type: Handled
  statusUrl: http://myexample.com
  1. Webhookinator will update build status on github according to Handled condition
apiVersion: webhookinator.cattle.io/v1
kind: GitWebHookExecution
metadata:
  generateName: test-
  name: test-n4fhv
  namespace: proj-abc
  labels:
    provider: github
spec:
  ...
status:
  appliedStatus: "Unknown"
  conditions:
  - lastUpdateTime: 2018-12-06T14:15:43+08:00
    status: "Unknown"
    type: Handled
  statusUrl: http://myexample.com

Building

make

Running

./bin/webhookinator

License

Copyright (c) 2018 Rancher Labs, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL