-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bumping knative.dev/networking 60e29ff...d5387fa: > d5387fa upgrade to latest dependencies (# 1017) > c254dbf upgrade to latest dependencies (# 1016) > d954288 upgrade to latest dependencies (# 1014) > 49760c2 Update community files (# 1013) bumping knative.dev/pkg 9b9d535...0a99635: > 0a99635 Update community files (# 3112) > 25f6002 upgrade to latest dependencies (# 3111) > 6af2bf9 upgrade to latest dependencies (# 3110) > 76cfa12 Fix `WEBHOOK_DISABLE_NAMESPACE_OWNERSHIP` env-var (# 3107) > 6d10851 Add `WEBHOOK_DISABLE_NAMESPACE_OWNERSHIP` env-var (# 3103) > 6eb75e8 Update community files (# 3105) bumping knative.dev/eventing 291c0a8...f53d038: > f53d038 [main] Update community files (# 8307) > df34028 Add missing copyright boilerplate (# 8305) > 3f2b75b Use GetServiceHostname when passing URL to JobSink (# 8303) > fa6b4c5 Add jobsinks-addressable-resolver cluster role (# 8298) > b4b609a Add observedGeneration in JobSink OpenAPI schema (# 8297) > 2e4d353 Allow imc-controller to list JobSinks (# 8294) > 7bca815 IntegrationSource CRD (# 8238) > c859efd [main] Format Go code (# 8289) > 7c97e6f Schduler: MAXFILLUP strategy will spread vreplicas across multiple pods (# 8263) > ef6b31a fix: et autocreate makes eventtype id required (# 8288) > 4faf9c8 [main] Upgrade to latest dependencies (# 8287) > 65aeab5 [main] Upgrade to latest dependencies (# 8275) > 03ba8f4 feat: autocreate v1beta3 eventtypes (# 8276) bumping knative.dev/serving 6a27004...25edfee: > 25edfee Update net-contour nightly (# 15604) > f640bbb Update net-gateway-api nightly (# 15603) > 64b8325 Update community files (# 15602) > 423e654 Fix configuration metadata inconsistency (# 15601) > 135b667 Update net-kourier nightly (# 15598) > f215fdb Update net-contour nightly (# 15597) > 7dc3e95 Update net-gateway-api nightly (# 15596) > 16d2da8 upgrade to latest dependencies (# 15595) > 331c097 upgrade to latest dependencies (# 15593) > a22343c Update net-gateway-api nightly (# 15590) > e8e7de5 Update net-kourier nightly (# 15592) > 9d859b5 Update net-contour nightly (# 15589) > 83a09f0 Update net-istio nightly (# 15591) > d792207 Update net-contour nightly (# 15587) > 19b4ce9 Update net-gateway-api nightly (# 15586) > 4a9936a Update net-kourier nightly (# 15585) > 67460f5 Update net-istio nightly (# 15584) bumping knative.dev/hack 05b2fb3...b799531: > b799531 Update community files (# 403) > ef6e7e9 Export KO_FLAGS for consuming scripts (# 401) > 2191456 Update community files (# 400) Signed-off-by: Knative Automation <[email protected]>
- Loading branch information
1 parent
14f4a3a
commit 63980ae
Showing
14 changed files
with
831 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
vendor/knative.dev/eventing/pkg/apis/sources/v1alpha1/doc.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
Copyright 2020 The Knative Authors | ||
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. | ||
*/ | ||
|
||
// Package v1alpha1 contains API Schema definitions for the sources v1alpha1 API group. | ||
// +k8s:deepcopy-gen=package | ||
// +groupName=sources.knative.dev | ||
package v1alpha1 |
36 changes: 36 additions & 0 deletions
36
vendor/knative.dev/eventing/pkg/apis/sources/v1alpha1/integration_conversion.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
Copyright 2020 The Knative Authors | ||
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. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"knative.dev/pkg/apis" | ||
) | ||
|
||
// ConvertTo implements apis.Convertible | ||
// Converts source from v1alpha1.IntegrationSource into a higher version. | ||
func (source *IntegrationSource) ConvertTo(ctx context.Context, obj apis.Convertible) error { | ||
return fmt.Errorf("v1alpha1 is the highest known version, got: %T", source) | ||
} | ||
|
||
// ConvertFrom implements apis.Convertible | ||
// Converts source from a higher version into v1beta2.IntegrationSource | ||
func (source *IntegrationSource) ConvertFrom(ctx context.Context, obj apis.Convertible) error { | ||
return fmt.Errorf("v1alpha1 is the highest known version, got: %T", source) | ||
} |
26 changes: 26 additions & 0 deletions
26
vendor/knative.dev/eventing/pkg/apis/sources/v1alpha1/integration_defaults.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
Copyright 2020 The Knative Authors | ||
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. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import "context" | ||
|
||
func (source *IntegrationSource) SetDefaults(ctx context.Context) { | ||
source.Spec.SetDefaults(ctx) | ||
} | ||
|
||
func (source *IntegrationSourceSpec) SetDefaults(ctx context.Context) { | ||
} |
76 changes: 76 additions & 0 deletions
76
vendor/knative.dev/eventing/pkg/apis/sources/v1alpha1/integration_lifecycle.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
Copyright 2020 The Knative Authors | ||
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. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
corev1 "k8s.io/api/core/v1" | ||
v1 "knative.dev/eventing/pkg/apis/sources/v1" | ||
"knative.dev/pkg/apis" | ||
) | ||
|
||
const ( | ||
// IntegrationSourceConditionReady has status True when the IntegrationSource is ready to send events. | ||
IntegrationSourceConditionReady = apis.ConditionReady | ||
|
||
// IntegrationSourceConditionReceiveAdapterReady has status True when the IntegrationSource's Deployment is ready. | ||
IntegrationSourceConditionContainerSourceReady apis.ConditionType = "ContainerSourceReady" | ||
) | ||
|
||
var IntegrationCondSet = apis.NewLivingConditionSet( | ||
IntegrationSourceConditionContainerSourceReady, | ||
) | ||
|
||
// GetConditionSet retrieves the condition set for this resource. Implements the KRShaped interface. | ||
func (*IntegrationSource) GetConditionSet() apis.ConditionSet { | ||
return IntegrationCondSet | ||
} | ||
|
||
// GetTopLevelCondition returns the top level condition. | ||
func (s *IntegrationSourceStatus) GetTopLevelCondition() *apis.Condition { | ||
return IntegrationCondSet.Manage(s).GetTopLevelCondition() | ||
} | ||
|
||
// InitializeConditions sets relevant unset conditions to Unknown state. | ||
func (s *IntegrationSourceStatus) InitializeConditions() { | ||
IntegrationCondSet.Manage(s).InitializeConditions() | ||
} | ||
|
||
func (iss *IntegrationSourceStatus) IsReady() bool { | ||
return IntegrationCondSet.Manage(iss).IsHappy() | ||
} | ||
|
||
func (s *IntegrationSourceStatus) PropagateContainerSourceStatus(status *v1.ContainerSourceStatus) { | ||
//// Do not copy conditions nor observedGeneration | ||
s.SourceStatus = *status.SourceStatus.DeepCopy() | ||
|
||
cond := status.GetCondition(apis.ConditionReady) | ||
switch { | ||
case cond == nil: | ||
IntegrationCondSet.Manage(s).MarkUnknown(IntegrationSourceConditionContainerSourceReady, "", "") | ||
case cond.Status == corev1.ConditionTrue: | ||
IntegrationCondSet.Manage(s).MarkTrue(IntegrationSourceConditionContainerSourceReady) | ||
case cond.Status == corev1.ConditionFalse: | ||
IntegrationCondSet.Manage(s).MarkFalse(IntegrationSourceConditionContainerSourceReady, cond.Reason, cond.Message) | ||
case cond.Status == corev1.ConditionUnknown: | ||
IntegrationCondSet.Manage(s).MarkUnknown(IntegrationSourceConditionContainerSourceReady, cond.Reason, cond.Message) | ||
default: | ||
IntegrationCondSet.Manage(s).MarkUnknown(IntegrationSourceConditionContainerSourceReady, cond.Reason, cond.Message) | ||
} | ||
|
||
// Propagate ContainerSources AuthStatus to IntegrationSources AuthStatus | ||
s.Auth = status.Auth | ||
} |
Oops, something went wrong.