Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 326 for mydeployment (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager_test.go

    	// create object with client-side apply
    	newObj := &unstructured.Unstructured{Object: map[string]interface{}{}}
    	deployment := []byte(`
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-deployment
      labels:
        app: my-app-v1
    spec:
      replicas: 1
    `)
    	if err := yaml.Unmarshal(deployment, &newObj.Object); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // Items is the list of ControllerRevisions
      repeated ControllerRevision items = 2;
    }
    
    // DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for
    // more information.
    // Deployment enables declarative updates for Pods and ReplicaSets.
    message Deployment {
      // Standard object metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. operator/pkg/patch/patch_test.go

    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    a:
      b:
      - name: "n1"
        value: v2
      - list:
        - v1
        - v2
        - v3_regex
        name: n2
      c:
    `,
    		},
    		{
    			desc:  "ModifyListEntry",
    			path:  `a.b.[name:n2].list.[v2]`,
    			value: `v3`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/echotest/run.go

    // of source instance to target deployment.
    //
    // For example, in a test named `a/to_b/from_cluster-0`,
    // `a` is the source deployment, `b` is the destination deployment and
    // `cluster-0` marks which instance of the source deployment.
    //
    // We use a combination of deployment name and cluster name to identify
    // a particular source instance, as there should typically be one instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/cluster/cluster.go

    }
    
    func (r *Resources) insertContainer(namespace, deployment, pod, container string) {
    	if r.Root == nil {
    		r.Root = make(map[string]any)
    	}
    	if r.Root[namespace] == nil {
    		r.Root[namespace] = make(map[string]any)
    	}
    	d := r.Root[namespace].(map[string]any)
    	if d[deployment] == nil {
    		d[deployment] = make(map[string]any)
    	}
    	p := d[deployment].(map[string]any)
    	if p[pod] == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"":         "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.",
    	"metadata": "Standard object metadata.",
    	"spec":     "Specification of the desired behavior of the Deployment.",
    	"status":   "Most recently observed status of the Deployment.",
    }
    
    func (Deployment) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:removed=1.16
    // +k8s:prerelease-lifecycle-gen:replacement=apps,v1,Deployment
    
    // DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for
    // more information.
    // Deployment enables declarative updates for Pods and ReplicaSets.
    type Deployment struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata.
    	// +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)
  8. operator/pkg/helmreconciler/wait.go

    	// cRDPollTimeout is the maximum wait time for all CRDs to be created.
    	cRDPollTimeout = 60 * time.Second
    )
    
    // deployment holds associated replicaSets for a deployment
    type deployment struct {
    	replicaSets *appsv1.ReplicaSet
    	deployment  *appsv1.Deployment
    }
    
    // WaitForResources polls to get the current status of all pods, PVCs, and Services
    // until all are ready or a timeout is reached
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controller/deployment/sync_test.go

    		name          string
    		deployment    *apps.Deployment
    		oldDeployment *apps.Deployment
    
    		newRS  *apps.ReplicaSet
    		oldRSs []*apps.ReplicaSet
    
    		expectedNew  *apps.ReplicaSet
    		expectedOld  []*apps.ReplicaSet
    		wasntUpdated map[string]bool
    
    		desiredReplicasAnnotations map[string]int32
    	}{
    		{
    			name:          "normal scaling event: 10 -> 12",
    			deployment:    newDeployment("foo", 12, nil, nil, nil, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top