Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,326 for deploymentID (0.16 sec)

  1. pkg/controller/deployment/progress.go

    	// If the remaining time is less than a second, then requeue the deployment immediately.
    	// Make it ratelimited so we stay on the safe side, eventually the Deployment should
    	// transition either to a Complete or to a TimedOut condition.
    	if after < time.Second {
    		logger.V(4).Info("Queueing up deployment for a progress check now", "deployment", klog.KObj(d))
    		dc.enqueueRateLimited(d)
    		return time.Duration(0)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/vm_test.go

    	s, err := t.Clusters().Default().Kube().AppsV1().Deployments(namespace).
    		GetScale(context.TODO(), name, metav1.GetOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	s.Spec.Replicas = scale
    	_, err = t.Clusters().Default().Kube().AppsV1().Deployments(namespace).
    		UpdateScale(context.TODO(), name, s, metav1.UpdateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/operator-common.go

    	}
    	manifest, err := r.RenderManifest(vals)
    	return vals, manifest, err
    }
    
    // deploymentExists returns true if the given deployment in the namespace exists.
    func deploymentExists(cs kubernetes.Interface, namespace, name string) (bool, error) {
    	d, err := cs.AppsV1().Deployments(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    	if err != nil {
    		return false, err
    	}
    	return d != nil, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 17 02:25:04 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. samples/security/spire/README.md

      ```bash
      $ kubectl apply -f clusterspiffeid.yaml
      ```
    
    1. Add the `spiffe.io/spire-managed-identity: true` label to the Ingress-gateway Deployment:
    
      ```bash
      $ kubectl patch deployment istio-ingressgateway -n istio-system -p '{"spec":{"template":{"metadata":{"labels":{"spiffe.io/spire-managed-identity": "true"}}}}}'
      ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kube/adapter.go

    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    	// with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    	// and `requestResource: {group:"apps", version:"v1beta1", resource:"deployments"}` (indicating the resource of the original API request).
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      resources:
      - customresourcedefinitions.apiextensions.k8s.io
      - customresourcedefinitions
      verbs:
      - '*'
    - apiGroups:
      - apps
      - extensions
      resources:
      - daemonsets
      - deployments
      - deployments/finalizers
      - replicasets
      verbs:
      - '*'
    - apiGroups:
      - autoscaling
      resources:
      - horizontalpodautoscalers
      verbs:
      - '*'
    - apiGroups:
      - monitoring.coreos.com
      resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. docs/kms/IAM.md

    > since you will not be able to decrypt the IAM/configuration data anymore.
    For distributed MinIO deployments, specify the *same* `MINIO_KMS_SECRET_KEY` for each MinIO server process.
    
    At any point in time you can switch from `MINIO_KMS_SECRET_KEY` to a full KMS
    deployment. You just need to import the generated key into KES - for example via
    the KES CLI once you have successfully setup KES:
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/api/apps/v1beta2/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/v1/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
    - 52.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/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: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top