Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
cronjobsource replaced with pingsource, dependencies and tests updated
Browse files Browse the repository at this point in the history
  • Loading branch information
tzununbekov committed Jul 15, 2020
1 parent e024707 commit 1d6dc4f
Show file tree
Hide file tree
Showing 100 changed files with 1,654 additions and 477 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright (c) 2018 TriggerMesh, Inc
Copyright (c) 2020 TriggerMesh Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 2 additions & 0 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ steps:
- ${_KANIKO_EXTRA_ARGS}
waitFor: ['-']

timeout: 1800s

substitutions:
_KANIKO_IMAGE_TAG: "latest"
_KANIKO_NO_PUSH: "false"
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 TriggerMesh, Inc
// Copyright 2020 TriggerMesh Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion cmd/delete.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 TriggerMesh, Inc
// Copyright 2020 TriggerMesh Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
9 changes: 2 additions & 7 deletions cmd/deploy.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 TriggerMesh, Inc
// Copyright 2020 TriggerMesh Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -15,8 +15,6 @@
package cmd

import (
"fmt"

"github.com/spf13/cobra"
"github.com/triggermesh/tm/pkg/client"
)
Expand All @@ -29,10 +27,7 @@ func newDeployCmd(clientset *client.ConfigSet) *cobra.Command {
Run: func(cmd *cobra.Command, args []string) {
s.Namespace = client.Namespace
if clientset.Log.IsDebug() && concurrency > 1 {
clientset.Log.Warnf(`You are about to run %d deployments in parallel with verbose output.
It's better to either add "--concurrency=1" argument or remove debug flag.
Press Ctr+C to abort or Enter to continue anyway...`, concurrency)
fmt.Scanln()
clientset.Log.Warnf(`You are about to run %d deployments in parallel with verbose logging - the output may be unreadable.`, concurrency)
}
if err := s.DeployYAML(yaml, args, concurrency, clientset); err != nil {
clientset.Log.Fatal(err)
Expand Down
2 changes: 1 addition & 1 deletion cmd/generate.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 TriggerMesh, Inc
// Copyright 2020 TriggerMesh Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion cmd/get.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2018 TriggerMesh, Inc
Copyright (c) 2020 TriggerMesh Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion cmd/push.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 TriggerMesh, Inc
// Copyright 2020 TriggerMesh Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion cmd/set.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 TriggerMesh, Inc
// Copyright 2020 TriggerMesh Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
43 changes: 18 additions & 25 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,35 @@ module github.com/triggermesh/tm
go 1.13

require (
contrib.go.opencensus.io/exporter/ocagent v0.6.0 // indirect
contrib.go.opencensus.io/exporter/stackdriver v0.12.9 // indirect
github.com/docker/spdystream v0.0.0-20181023171402-6480d4af844c // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/frankban/quicktest v1.7.2 // indirect
github.com/ghodss/yaml v1.0.0
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/knative/build v0.7.0
github.com/knative/pkg v0.0.0-20190624141606-d82505e6c5b4
github.com/mholt/archiver v2.1.0+incompatible
github.com/nwaples/rardecode v1.0.0 // indirect
github.com/olekukonko/tablewriter v0.0.4
github.com/openzipkin/zipkin-go v0.2.2 // indirect
github.com/pierrec/lz4 v2.4.0+incompatible // indirect
github.com/robfig/cron v1.2.0 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/sirupsen/logrus v1.6.0
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v0.0.5
github.com/stretchr/testify v1.4.0
github.com/tektoncd/pipeline v0.11.2
github.com/spf13/cobra v1.0.0
github.com/stretchr/testify v1.5.1
github.com/tektoncd/pipeline v0.14.0
github.com/tektoncd/triggers v0.1.0
github.com/tidwall/gjson v1.3.2 // indirect
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413
google.golang.org/genproto v0.0.0-20191028173616-919d9bdd9fe6 // indirect
golang.org/x/crypto v0.0.0-20200707235045-ab33eee955e0
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
gopkg.in/src-d/go-git.v4 v4.13.1
gopkg.in/yaml.v2 v2.2.5
k8s.io/api v0.17.2
k8s.io/apimachinery v0.17.2
k8s.io/client-go v0.17.0
k8s.io/utils v0.0.0-20191030222137-2b95a09bc58d // indirect
knative.dev/eventing v0.12.0
knative.dev/eventing-contrib v0.11.2
knative.dev/pkg v0.0.0-20200207155214-fef852970f43
knative.dev/serving v0.12.0
sigs.k8s.io/controller-runtime v0.4.0 // indirect
gopkg.in/yaml.v2 v2.3.0
k8s.io/api v0.18.5
k8s.io/apimachinery v0.18.5
k8s.io/client-go v12.0.0+incompatible
k8s.io/klog/v2 v2.3.0 // indirect
k8s.io/utils v0.0.0-20200619165400-6e3d28b6ed19 // indirect
knative.dev/eventing v0.15.0
knative.dev/eventing-contrib v0.15.0
knative.dev/pkg v0.0.0-20200708171447-5358179e7499
knative.dev/serving v0.15.0
)

replace (
Expand All @@ -61,5 +55,4 @@ replace (
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.0.0-20191016115707-22244e5b01eb
k8s.io/metrics => k8s.io/metrics v0.0.0-20191016113728-f445c7b35c1c
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.0.0-20191016112728-ceb381866e80
knative.dev/pkg => knative.dev/pkg v0.0.0-20200122022923-4e81bc3c320f
)
Loading

0 comments on commit 1d6dc4f

Please sign in to comment.