ResultFAILURE
Tests 0 failed / 0 succeeded
Started2025-08-08 06:23
Elapsed3m46s
Revision46a6a37c0b06ad2ec87aec98fe2c3f5267f85d3c
Refs 1774

No Test Failures!


Error lines from build-log.txt

... skipping 377 lines ...
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp/gce.go
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp/gke.go
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/LICENSE
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/README.md
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/cloudmonitoring.go
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/constants.go
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/error.go
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/metric.go
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/option.go
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping/LICENSE
vendor/github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping/resourcemapping.go
vendor/github.com/cespare/xxhash/v2/README.md
vendor/github.com/cespare/xxhash/v2/xxhash.go
... skipping 546 lines ...
vendor/github.com/google/cel-go/common/debug/debug.go
vendor/github.com/google/cel-go/common/decls/BUILD.bazel
vendor/github.com/google/cel-go/common/decls/decls.go
vendor/github.com/google/cel-go/common/doc.go
vendor/github.com/google/cel-go/common/env/BUILD.bazel
vendor/github.com/google/cel-go/common/env/env.go
vendor/github.com/google/cel-go/common/error.go
vendor/github.com/google/cel-go/common/errors.go
vendor/github.com/google/cel-go/common/runes/buffer.go
vendor/github.com/google/cel-go/common/source.go
vendor/github.com/google/cel-go/common/stdlib/BUILD.bazel
vendor/github.com/google/cel-go/common/stdlib/standard.go
vendor/github.com/google/cel-go/common/types/BUILD.bazel
... skipping 5712 lines ...
      "properties": {
        "condition": {
          "description": "Current status",
          "type": "string"
        },
        "message": {
          "description": "Error is the text of error (if any)",
          "type": "string",
          "default": ""
        },
        "retryCount": {
          "description": "RetryCount is the number of attempts of sending the cloud event",
          "type": "integer",
... skipping 1004 lines ...
        },
        "name": {
          "description": "Name is the name of this task within the context of a Pipeline. Name is used as a coordinate with the `from` and `runAfter` fields to establish the execution order of tasks relative to one another.",
          "type": "string"
        },
        "onError": {
          "description": "OnError defines the exiting behavior of a PipelineRun on error can be set to [ continue | stopAndFail ]",
          "type": "string"
        },
        "params": {
          "description": "Parameters declares parameters passed to this task.",
          "type": "array",
          "items": {
... skipping 167 lines ...
          },
          "x-kubernetes-list-type": "atomic"
        }
      }
    },
    "v1beta1.PipelineTaskRun": {
      "description": "PipelineTaskRun reports the results of running a step in the Task. Each task has the potential to succeed or fail (based on the exit code) and produces logs.",
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        }
      }
... skipping 263 lines ...
        },
        "securityContext": {
          "description": "SecurityContext defines the security options the Sidecar should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/",
          "$ref": "#/definitions/v1.SecurityContext"
        },
        "startupProbe": {
          "description": "StartupProbe indicates that the Pod the Sidecar is running in has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
          "$ref": "#/definitions/v1.Probe"
        },
        "stdin": {
          "description": "Whether this Sidecar should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the Sidecar will always result in EOF. Default is false.",
          "type": "boolean"
        },
... skipping 3 lines ...
        },
        "terminationMessagePath": {
          "description": "Optional: Path at which the file to which the Sidecar's termination message will be written is mounted into the Sidecar's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
          "type": "string"
        },
        "terminationMessagePolicy": {
          "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the Sidecar status message on both success and failure. FallbackToLogsOnError will use the last chunk of Sidecar log output if the termination message file is empty and the Sidecar exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
          "type": "string"
        },
        "tty": {
          "description": "Whether this Sidecar should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
          "type": "boolean"
        },
... skipping 154 lines ...
        "name": {
          "description": "Name of the Step specified as a DNS_LABEL. Each Step in a Task must have a unique name.",
          "type": "string",
          "default": ""
        },
        "onError": {
          "description": "OnError defines the exiting behavior of a container on error can be set to [ continue | stopAndFail ]",
          "type": "string"
        },
        "params": {
          "description": "Params declares parameters passed to this step action.",
          "type": "array",
          "items": {
... skipping 44 lines ...
        },
        "securityContext": {
          "description": "SecurityContext defines the security options the Step should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/",
          "$ref": "#/definitions/v1.SecurityContext"
        },
        "startupProbe": {
          "description": "DeprecatedStartupProbe indicates that the Pod this Step runs in has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\n\nDeprecated: This field will be removed in a future release.",
          "$ref": "#/definitions/v1.Probe"
        },
        "stderrConfig": {
          "description": "Stores configuration for the stderr stream of the step.",
          "$ref": "#/definitions/v1beta1.StepOutputConfig"
        },
... skipping 355 lines ...
        },
        "securityContext": {
          "description": "SecurityContext defines the security options the Step should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/",
          "$ref": "#/definitions/v1.SecurityContext"
        },
        "startupProbe": {
          "description": "DeprecatedStartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\n\nDeprecated: This field will be removed in a future release.",
          "$ref": "#/definitions/v1.Probe"
        },
        "stdin": {
          "description": "Whether this Step should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the Step will always result in EOF. Default is false.\n\nDeprecated: This field will be removed in a future release.",
          "type": "boolean"
        },
... skipping 74 lines ...
            "type": "string",
            "default": ""
          },
          "x-kubernetes-list-type": "atomic"
        },
        "onFailure": {
          "description": "if enabled, pause TaskRun on failure of a step failed step will not exit",
          "type": "string"
        }
      }
    },
    "v1beta1.TaskList": {
      "description": "TaskList contains a list of Task",
... skipping 942 lines ...
+}
+
+var scheduledtemplatesResource = v1alpha1.SchemeGroupVersion.WithResource("scheduledtemplates")
+
+var scheduledtemplatesKind = v1alpha1.SchemeGroupVersion.WithKind("ScheduledTemplate")
+
+// Get takes name of the scheduledTemplate, and returns the corresponding scheduledTemplate object, and an error if there is any.
+func (c *FakeScheduledTemplates) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha1.ScheduledTemplate, err error) {
+	obj, err := c.Fake.
+		Invokes(testing.NewGetAction(scheduledtemplatesResource, c.ns, name), &v1alpha1.ScheduledTemplate{})
+
+	if obj == nil {
+		return nil, err
+	}
+	return obj.(*v1alpha1.ScheduledTemplate), err
+}
+
+// List takes label and field selectors, and returns the list of ScheduledTemplates that match those selectors.
+func (c *FakeScheduledTemplates) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha1.ScheduledTemplateList, err error) {
+	obj, err := c.Fake.
+		Invokes(testing.NewListAction(scheduledtemplatesResource, scheduledtemplatesKind, c.ns, opts), &v1alpha1.ScheduledTemplateList{})
+
+	if obj == nil {
+		return nil, err
+	}
... skipping 9 lines ...
+		}
+	}
+	return list, err
+}
+
+// Watch returns a watch.Interface that watches the requested scheduledTemplates.
+func (c *FakeScheduledTemplates) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) {
+	return c.Fake.
+		InvokesWatch(testing.NewWatchAction(scheduledtemplatesResource, c.ns, opts))
+
+}
+
+// Create takes the representation of a scheduledTemplate and creates it.  Returns the server's representation of the scheduledTemplate, and an error, if there is any.
+func (c *FakeScheduledTemplates) Create(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.CreateOptions) (result *v1alpha1.ScheduledTemplate, err error) {
+	obj, err := c.Fake.
+		Invokes(testing.NewCreateAction(scheduledtemplatesResource, c.ns, scheduledTemplate), &v1alpha1.ScheduledTemplate{})
+
+	if obj == nil {
+		return nil, err
+	}
+	return obj.(*v1alpha1.ScheduledTemplate), err
+}
+
+// Update takes the representation of a scheduledTemplate and updates it. Returns the server's representation of the scheduledTemplate, and an error, if there is any.
+func (c *FakeScheduledTemplates) Update(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (result *v1alpha1.ScheduledTemplate, err error) {
+	obj, err := c.Fake.
+		Invokes(testing.NewUpdateAction(scheduledtemplatesResource, c.ns, scheduledTemplate), &v1alpha1.ScheduledTemplate{})
+
+	if obj == nil {
+		return nil, err
+	}
+	return obj.(*v1alpha1.ScheduledTemplate), err
+}
+
+// UpdateStatus was generated because the type contains a Status member.
+// Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
+func (c *FakeScheduledTemplates) UpdateStatus(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (*v1alpha1.ScheduledTemplate, error) {
+	obj, err := c.Fake.
+		Invokes(testing.NewUpdateSubresourceAction(scheduledtemplatesResource, "status", c.ns, scheduledTemplate), &v1alpha1.ScheduledTemplate{})
+
+	if obj == nil {
+		return nil, err
+	}
+	return obj.(*v1alpha1.ScheduledTemplate), err
+}
+
+// Delete takes name of the scheduledTemplate and deletes it. Returns an error if one occurs.
+func (c *FakeScheduledTemplates) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error {
+	_, err := c.Fake.
+		Invokes(testing.NewDeleteActionWithOptions(scheduledtemplatesResource, c.ns, name, opts), &v1alpha1.ScheduledTemplate{})
+
+	return err
 }
 
... skipping 13 lines ...
-			func(list *v1alpha1.ScheduledTemplateList, items []*v1alpha1.ScheduledTemplate) {
-				list.Items = gentype.FromPointerSlice(items)
-			},
-		),
-		fake,
+// DeleteCollection deletes a collection of objects.
+func (c *FakeScheduledTemplates) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error {
+	action := testing.NewDeleteCollectionAction(scheduledtemplatesResource, c.ns, listOpts)
+
+	_, err := c.Fake.Invokes(action, &v1alpha1.ScheduledTemplateList{})
+	return err
+}
+
+// Patch applies the patch and returns the patched scheduledTemplate.
+func (c *FakeScheduledTemplates) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ScheduledTemplate, err error) {
+	obj, err := c.Fake.
+		Invokes(testing.NewPatchSubresourceAction(scheduledtemplatesResource, c.ns, name, pt, data, subresources...), &v1alpha1.ScheduledTemplate{})
+
+	if obj == nil {
+		return nil, err
 	}
... skipping 34 lines ...
 
 // ScheduledTemplatesGetter has a method to return a ScheduledTemplateInterface.
@@ -37,34 +38,158 @@ type ScheduledTemplatesGetter interface
 
 // ScheduledTemplateInterface has methods to work with ScheduledTemplate resources.
 type ScheduledTemplateInterface interface {
-	Create(ctx context.Context, scheduledTemplate *triggersv1alpha1.ScheduledTemplate, opts v1.CreateOptions) (*triggersv1alpha1.ScheduledTemplate, error)
-	Update(ctx context.Context, scheduledTemplate *triggersv1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (*triggersv1alpha1.ScheduledTemplate, error)
-	// Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
-	UpdateStatus(ctx context.Context, scheduledTemplate *triggersv1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (*triggersv1alpha1.ScheduledTemplate, error)
+	Create(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.CreateOptions) (*v1alpha1.ScheduledTemplate, error)
+	Update(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (*v1alpha1.ScheduledTemplate, error)
+	UpdateStatus(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (*v1alpha1.ScheduledTemplate, error)
 	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
 	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
-	Get(ctx context.Context, name string, opts v1.GetOptions) (*triggersv1alpha1.ScheduledTemplate, error)
-	List(ctx context.Context, opts v1.ListOptions) (*triggersv1alpha1.ScheduledTemplateList, error)
+	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha1.ScheduledTemplate, error)
+	List(ctx context.Context, opts v1.ListOptions) (*v1alpha1.ScheduledTemplateList, error)
 	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
-	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *triggersv1alpha1.ScheduledTemplate, err error)
+	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ScheduledTemplate, err error)
 	ScheduledTemplateExpansion
 }
 
 // scheduledTemplates implements ScheduledTemplateInterface
 type scheduledTemplates struct {
-	*gentype.ClientWithList[*triggersv1alpha1.ScheduledTemplate, *triggersv1alpha1.ScheduledTemplateList]
... skipping 14 lines ...
-		),
+		client: c.RESTClient(),
+		ns:     namespace,
 	}
 }
+
+// Get takes name of the scheduledTemplate, and returns the corresponding scheduledTemplate object, and an error if there is any.
+func (c *scheduledTemplates) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha1.ScheduledTemplate, err error) {
+	result = &v1alpha1.ScheduledTemplate{}
+	err = c.client.Get().
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		Name(name).
+		VersionedParams(&options, scheme.ParameterCodec).
+		Do(ctx).
+		Into(result)
+	return
+}
+
+// List takes label and field selectors, and returns the list of ScheduledTemplates that match those selectors.
+func (c *scheduledTemplates) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha1.ScheduledTemplateList, err error) {
+	var timeout time.Duration
+	if opts.TimeoutSeconds != nil {
+		timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
+	}
+	result = &v1alpha1.ScheduledTemplateList{}
+	err = c.client.Get().
... skipping 4 lines ...
+		Do(ctx).
+		Into(result)
+	return
+}
+
+// Watch returns a watch.Interface that watches the requested scheduledTemplates.
+func (c *scheduledTemplates) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) {
+	var timeout time.Duration
+	if opts.TimeoutSeconds != nil {
+		timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
+	}
+	opts.Watch = true
+	return c.client.Get().
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		VersionedParams(&opts, scheme.ParameterCodec).
+		Timeout(timeout).
+		Watch(ctx)
+}
+
+// Create takes the representation of a scheduledTemplate and creates it.  Returns the server's representation of the scheduledTemplate, and an error, if there is any.
+func (c *scheduledTemplates) Create(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.CreateOptions) (result *v1alpha1.ScheduledTemplate, err error) {
+	result = &v1alpha1.ScheduledTemplate{}
+	err = c.client.Post().
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		VersionedParams(&opts, scheme.ParameterCodec).
+		Body(scheduledTemplate).
+		Do(ctx).
+		Into(result)
+	return
+}
+
+// Update takes the representation of a scheduledTemplate and updates it. Returns the server's representation of the scheduledTemplate, and an error, if there is any.
+func (c *scheduledTemplates) Update(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (result *v1alpha1.ScheduledTemplate, err error) {
+	result = &v1alpha1.ScheduledTemplate{}
+	err = c.client.Put().
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		Name(scheduledTemplate.Name).
+		VersionedParams(&opts, scheme.ParameterCodec).
... skipping 2 lines ...
+		Into(result)
+	return
+}
+
+// UpdateStatus was generated because the type contains a Status member.
+// Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
+func (c *scheduledTemplates) UpdateStatus(ctx context.Context, scheduledTemplate *v1alpha1.ScheduledTemplate, opts v1.UpdateOptions) (result *v1alpha1.ScheduledTemplate, err error) {
+	result = &v1alpha1.ScheduledTemplate{}
+	err = c.client.Put().
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		Name(scheduledTemplate.Name).
+		SubResource("status").
+		VersionedParams(&opts, scheme.ParameterCodec).
+		Body(scheduledTemplate).
+		Do(ctx).
+		Into(result)
+	return
+}
+
+// Delete takes name of the scheduledTemplate and deletes it. Returns an error if one occurs.
+func (c *scheduledTemplates) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error {
+	return c.client.Delete().
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		Name(name).
+		Body(&opts).
+		Do(ctx).
+		Error()
+}
+
+// DeleteCollection deletes a collection of objects.
+func (c *scheduledTemplates) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error {
+	var timeout time.Duration
+	if listOpts.TimeoutSeconds != nil {
+		timeout = time.Duration(*listOpts.TimeoutSeconds) * time.Second
+	}
+	return c.client.Delete().
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		VersionedParams(&listOpts, scheme.ParameterCodec).
+		Timeout(timeout).
+		Body(&opts).
+		Do(ctx).
+		Error()
+}
+
+// Patch applies the patch and returns the patched scheduledTemplate.
+func (c *scheduledTemplates) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha1.ScheduledTemplate, err error) {
+	result = &v1alpha1.ScheduledTemplate{}
+	err = c.client.Patch(pt).
+		Namespace(c.ns).
+		Resource("scheduledtemplates").
+		Name(name).
+		SubResource(subresources...).
... skipping 73 lines ...
 
 // ScheduledTemplateLister helps list ScheduledTemplates.
@@ -30,7 +30,7 @@ import (
 type ScheduledTemplateLister interface {
 	// List lists all ScheduledTemplates in the indexer.
 	// Objects returned here must be treated as read-only.
-	List(selector labels.Selector) (ret []*triggersv1alpha1.ScheduledTemplate, err error)
+	List(selector labels.Selector) (ret []*v1alpha1.ScheduledTemplate, err error)
 	// ScheduledTemplates returns an object that can list and get ScheduledTemplates.
 	ScheduledTemplates(namespace string) ScheduledTemplateNamespaceLister
 	ScheduledTemplateListerExpansion
@@ -38,17 +38,25 @@ type ScheduledTemplateLister interface {
 
 // scheduledTemplateLister implements the ScheduledTemplateLister interface.
... skipping 6 lines ...
 func NewScheduledTemplateLister(indexer cache.Indexer) ScheduledTemplateLister {
-	return &scheduledTemplateLister{listers.New[*triggersv1alpha1.ScheduledTemplate](indexer, triggersv1alpha1.Resource("scheduledtemplate"))}
+	return &scheduledTemplateLister{indexer: indexer}
+}
+
+// List lists all ScheduledTemplates in the indexer.
+func (s *scheduledTemplateLister) List(selector labels.Selector) (ret []*v1alpha1.ScheduledTemplate, err error) {
+	err = cache.ListAll(s.indexer, selector, func(m interface{}) {
+		ret = append(ret, m.(*v1alpha1.ScheduledTemplate))
+	})
+	return ret, err
 }
 
... skipping 5 lines ...
 
 // ScheduledTemplateNamespaceLister helps list and get ScheduledTemplates.
@@ -56,15 +64,36 @@ func (s *scheduledTemplateLister) Schedu
 type ScheduledTemplateNamespaceLister interface {
 	// List lists all ScheduledTemplates in the indexer for a given namespace.
 	// Objects returned here must be treated as read-only.
-	List(selector labels.Selector) (ret []*triggersv1alpha1.ScheduledTemplate, err error)
+	List(selector labels.Selector) (ret []*v1alpha1.ScheduledTemplate, err error)
 	// Get retrieves the ScheduledTemplate from the indexer for a given namespace and name.
 	// Objects returned here must be treated as read-only.
-	Get(name string) (*triggersv1alpha1.ScheduledTemplate, error)
+	Get(name string) (*v1alpha1.ScheduledTemplate, error)
 	ScheduledTemplateNamespaceListerExpansion
 }
 
 // scheduledTemplateNamespaceLister implements the ScheduledTemplateNamespaceLister
 // interface.
 type scheduledTemplateNamespaceLister struct {
-	listers.ResourceIndexer[*triggersv1alpha1.ScheduledTemplate]
+	indexer   cache.Indexer
+	namespace string
+}
+
+// List lists all ScheduledTemplates in the indexer for a given namespace.
+func (s scheduledTemplateNamespaceLister) List(selector labels.Selector) (ret []*v1alpha1.ScheduledTemplate, err error) {
+	err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) {
+		ret = append(ret, m.(*v1alpha1.ScheduledTemplate))
+	})
+	return ret, err
+}
+
+// Get retrieves the ScheduledTemplate from the indexer for a given namespace and name.
+func (s scheduledTemplateNamespaceLister) Get(name string) (*v1alpha1.ScheduledTemplate, error) {
+	obj, exists, err := s.indexer.GetByKey(s.namespace + "/" + name)
+	if err != nil {
+		return nil, err
+	}
+	if !exists {
+		return nil, errors.NewNotFound(v1alpha1.Resource("scheduledtemplate"), name)
... skipping 2 lines ...
 }
/home/prow/go/src/github.com/tektoncd/triggers is out of date. Please run hack/update-codegen.sh
-----------------------------------------
---- Checking for forbidden licenses ----
-----------------------------------------
============================
==== BUILD TESTS FAILED ====
============================
+ EXIT_VALUE=1
+ set +o xtrace