Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for CronJobs (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    			resources: []metav1.APIResource{
    				{
    					Name:       "cronjobs",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. api/discovery/apis__batch__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "batch/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "categories": [
            "all"
          ],
          "kind": "CronJob",
          "name": "cronjobs",
          "namespaced": true,
          "shortNames": [
            "cj"
          ],
          "singularName": "cronjob",
          "storageVersionHash": "sd5LIXh4Fjs=",
          "verbs": [
            "create",
            "delete",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/injection.go

    	return c.KubeClient.BatchV1().CronJobs(namespace).Get(ctx, name, metav1.GetOptions{})
    }
    
    var _ cjControlInterface = &realCJControl{}
    
    func (c *realCJControl) UpdateStatus(ctx context.Context, cj *batchv1.CronJob) (*batchv1.CronJob, error) {
    	return c.KubeClient.BatchV1().CronJobs(cj.Namespace).UpdateStatus(ctx, cj, metav1.UpdateOptions{})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 09:37:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. pkg/registry/batch/rest/storage_batch.go

    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = jobsStorage
    		storage[resource+"/status"] = jobsStatusStorage
    	}
    
    	// cronjobs
    	if resource := "cronjobs"; apiResourceConfigSource.ResourceEnabled(batchapiv1.SchemeGroupVersion.WithResource(resource)) {
    		cronJobsStorage, cronJobsStatusStorage, err := cronjobstore.NewREST(restOptionsGetter)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 06:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. pkg/registry/batch/cronjob/storage/storage_test.go

    	etcdStorage, server := registrytest.NewEtcdStorageForResource(t, batch.SchemeGroupVersion.WithResource("cronjobs").GroupResource())
    	restOptions := generic.RESTOptions{
    		StorageConfig:           etcdStorage,
    		Decorator:               generic.UndecoratedStorage,
    		DeleteCollectionWorkers: 1,
    		ResourcePrefix:          "cronjobs",
    	}
    	storage, statusStorage, err := NewREST(restOptions)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1beta1/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// items is the list of CronJobs.
    	Items []CronJob `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // CronJobSpec describes how the job execution will look like and when it will actually run.
    type CronJobSpec struct {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. pkg/registry/batch/cronjob/storage/storage.go

    // NewREST returns a RESTStorage object that will work against CronJobs.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &batch.CronJob{} },
    		NewListFunc:               func() runtime.Object { return &batch.CronJobList{} },
    		DefaultQualifiedResource:  batch.Resource("cronjobs"),
    		SingularQualifiedResource: batch.Resource("cronjob"),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/fake.go

    			{Group: "", Resource: "services"},
    			{Group: "apps", Resource: "statefulsets"},
    			{Group: "autoscaling", Resource: "horizontalpodautoscalers"},
    			{Group: "batch", Resource: "jobs"},
    			{Group: "batch", Resource: "cronjobs"},
    			{Group: "extensions", Resource: "daemonsets"},
    			{Group: "extensions", Resource: "deployments"},
    			{Group: "extensions", Resource: "replicasets"},
    		},
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of CronJobs.
      repeated CronJob items = 2;
    }
    
    // CronJobSpec describes how the job execution will look like and when it will actually run.
    message CronJobSpec {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of CronJobs.
      repeated CronJob items = 2;
    }
    
    // CronJobSpec describes how the job execution will look like and when it will actually run.
    message CronJobSpec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top