Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 442 for deploymentID (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    						Resource:           metav1.GroupVersionResource{Group: "extensions", Version: "v1beta1", Resource: "deployments"},
    						SubResource:        "",
    						RequestKind:        &metav1.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"},
    						RequestResource:    &metav1.GroupVersionResource{Group: "apps", Version: "v1", Resource: "deployments"},
    						RequestSubResource: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it
    	// is considered to be failed. The deployment controller will continue to
    	// process failed deployments and a condition with a ProgressDeadlineExceeded
    	// reason will be surfaced in the deployment status. Note that progress will
    	// not be estimated during the time a deployment is paused. Defaults to 600s.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go

    								APIVersions: []string{"v1"},
    								Resources:   []string{"deployments"},
    							},
    						},
    					},
    					{
    						RuleWithOperations: v1.RuleWithOperations{
    							Rule: v1.Rule{
    								APIGroups:   []string{"apps"},
    								APIVersions: []string{"*"},
    								Resources:   []string{"deployments"},
    							},
    						},
    					},
    				}},
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml

    apiVersion: apps/v1beta2
    kind: Deployment
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.Deployment.yaml

    apiVersion: extensions/v1beta1
    kind: Deployment
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.Deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.2.md

    create Deployment Beta resources after upgrading to 1.2. Not deleting the
    Deployment objects may cause the deployment controller to mistakenly match
    other pods and delete them, due to the selector API change.
         * Client (kubectl) and server versions must match (both 1.1 or both 1.2) for any
    Deployment-related operations.
         * Behavior change:
            * Deployment creates ReplicaSets instead of ReplicationControllers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  8. pkg/apis/apps/types.go

    // Deployment provides declarative updates for Pods and ReplicaSets.
    type Deployment struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// Specification of the desired behavior of the Deployment.
    	// +optional
    	Spec DeploymentSpec
    
    	// Most recently observed status of the Deployment.
    	// +optional
    	Status DeploymentStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/cluster/cluster_test.go

    		name       string
    		config     *config2.BugReportConfig
    		deployment string
    		expected   bool
    	}{
    		{
    			"tested deployment not skip",
    			&config2.BugReportConfig{
    				Include: []*config2.SelectionSpec{
    					{
    						Deployments: []string{"in-"},
    					},
    				},
    				Exclude: []*config2.SelectionSpec{
    					{
    						Deployments: []string{"ex-"},
    					},
    				},
    			},
    			"in-dep1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top