Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for CRONJOB (0.1 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.batch.v1.CronJob": {
            "description": "CronJob represents the configuration of a single cron job.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2.json

                  "responseKind": {
                    "group": "",
                    "kind": "CronJob",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "cj"
                  ],
                  "singularResource": "cronjob",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/names/controller_names.go

    	DisruptionController                         = "disruption-controller"
    	StatefulSetController                        = "statefulset-controller"
    	CronJobController                            = "cronjob-controller"
    	CertificateSigningRequestSigningController   = "certificatesigningrequest-signing-controller"
    	CertificateSigningRequestApprovingController = "certificatesigningrequest-approving-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/apis/batch/v1/zz_generated.defaults.go

    // All generated defaulters are covering - they call all nested defaulters.
    func RegisterDefaults(scheme *runtime.Scheme) error {
    	scheme.AddTypeDefaultingFunc(&v1.CronJob{}, func(obj interface{}) { SetObjectDefaults_CronJob(obj.(*v1.CronJob)) })
    	scheme.AddTypeDefaultingFunc(&v1.CronJobList{}, func(obj interface{}) { SetObjectDefaults_CronJobList(obj.(*v1.CronJobList)) })
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 20.7K bytes
    - Viewed (0)
  5. pkg/controller/apis/config/v1alpha1/defaults.go

    	kubectrlmgrconfigv1alpha1 "k8s.io/kube-controller-manager/config/v1alpha1"
    	csrsigningconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/certificates/signer/config/v1alpha1"
    	cronjobconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/cronjob/config/v1alpha1"
    	daemonconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/daemon/config/v1alpha1"
    	deploymentconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/deployment/config/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 07:55:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. pkg/apis/batch/types.go

    	// Human readable message indicating details about last transition.
    	// +optional
    	Message string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // CronJob represents the configuration of a single cron job.
    type CronJob struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution. If no system-wide time zone database can be found a bundled version of the database is used instead. If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. pkg/controller/apis/config/types.go

    	cmconfig "k8s.io/controller-manager/config"
    	csrsigningconfig "k8s.io/kubernetes/pkg/controller/certificates/signer/config"
    	cronjobconfig "k8s.io/kubernetes/pkg/controller/cronjob/config"
    	daemonconfig "k8s.io/kubernetes/pkg/controller/daemon/config"
    	deploymentconfig "k8s.io/kubernetes/pkg/controller/deployment/config"
    	endpointconfig "k8s.io/kubernetes/pkg/controller/endpoint/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    	timeZone := "LOCAL"
    	completions := int32(2)
    	suspend := false
    	tests := []struct {
    		cronjob  batch.CronJob
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		// Basic cron job; does not print containers, images, or labels.
    		{
    			cronjob: batch.CronJob{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "cronjob1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject_test.go

    			want:        "hello-service.yaml.injected",
    			skipWebhook: true,
    		},
    		{
    			// Cronjob is tricky for webhook test since the spec is different. Since the real code will
    			// get a pod anyways, the test isn't too useful for webhook anyways.
    			in:          "cronjob.yaml",
    			want:        "cronjob.yaml.injected",
    			skipWebhook: true,
    		},
    		{
    			in:            "traffic-annotations-bad-includeipranges.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top