Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for cronjob1 (0.29 sec)

  1. pkg/kube/inject/testdata/inject/cronjob.yaml.injected

                  value: REDIRECT
                - name: ISTIO_META_WORKLOAD_NAME
                  value: hellocron
                - name: ISTIO_META_OWNER
                  value: kubernetes://apis/batch/v2alpha1/namespaces/default/cronjobs/hellocron
                - name: ISTIO_META_MESH_ID
                  value: cluster.local
                - name: TRUST_DOMAIN
                  value: cluster.local
                image: gcr.io/istio-testing/proxyv2:latest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/cronjob.yaml

    apiVersion: batch/v2alpha1
    kind: CronJob
    metadata:
      name: hellocron
    spec:
      schedule: "*/1 * * * *"
      jobTemplate:
        spec:
          template:
            spec:
              containers:
              - name: hello
                image: busybox
                args:
                - /bin/sh
                - -c
                - date; echo Hello from the Kubernetes cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 380 bytes
    - Viewed (0)
  3. api/discovery/apis__batch__v1.json

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

    	CronJob *batchv1.CronJob
    	Updates []batchv1.CronJob
    }
    
    func (c *fakeCJControl) GetCronJob(ctx context.Context, namespace, name string) (*batchv1.CronJob, error) {
    	if name == c.CronJob.Name && namespace == c.CronJob.Namespace {
    		return c.CronJob, nil
    	}
    	return nil, errors.NewNotFound(schema.GroupResource{
    		Group:    "v1beta1",
    		Resource: "cronjobs",
    	}, name)
    }
    
    var _ cjControlInterface = &fakeCJControl{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 09:37:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // +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 {
      // The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pkg/registry/batch/cronjob/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &batch.CronJobList{} },
    		DefaultQualifiedResource:  batch.Resource("cronjobs"),
    		SingularQualifiedResource: batch.Resource("cronjob"),
    
    		CreateStrategy:      cronjob.Strategy,
    		UpdateStrategy:      cronjob.Strategy,
    		DeleteStrategy:      cronjob.Strategy,
    		ResetFieldsStrategy: cronjob.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/batch/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:deprecated=1.21
    // +k8s:prerelease-lifecycle-gen:removed=1.25
    // +k8s:prerelease-lifecycle-gen:replacement=batch,v1,CronJob
    
    // CronJob represents the configuration of a single cron job.
    type CronJob struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // +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 {
      // The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
    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/types_swagger_doc_generated.go

    }
    
    func (CronJob) SwaggerDoc() map[string]string {
    	return map_CronJob
    }
    
    var map_CronJobList = map[string]string{
    	"":         "CronJobList is a collection of cron jobs.",
    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"items":    "items is the list of CronJobs.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top