Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 442 for deploymentID (0.16 sec)

  1. operator/pkg/verifier/verifier.go

    			namespace = v.istioNamespace
    		}
    		switch kind {
    		case "Deployment":
    			deployment := &appsv1.Deployment{}
    			err = info.Client.
    				Get().
    				Resource(kinds).
    				Namespace(namespace).
    				Name(name).
    				VersionedParams(&metav1.GetOptions{}, scheme.ParameterCodec).
    				Do(context.TODO()).
    				Into(deployment)
    			if err != nil {
    				v.reportFailure(kind, name, namespace, err)
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. docs/de/docs/deployment/concepts.md

    # Deployment-Konzepte
    
    Bei dem Deployment – der Bereitstellung – einer **FastAPI**-Anwendung, oder eigentlich jeder Art von Web-API, gibt es mehrere Konzepte, die Sie wahrscheinlich interessieren, und mithilfe der Sie die **am besten geeignete** Methode zur **Bereitstellung Ihrer Anwendung** finden können.
    
    Einige wichtige Konzepte sind:
    
    * Sicherheit – HTTPS
    * Beim Hochfahren ausführen
    * Neustarts
    * Replikation (die Anzahl der laufenden Prozesse)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    <img class="shadow" src="/img/deployment/concepts/image01.png">
    
    ---
    
    Now that we know the difference between the terms **process** and **program**, let's continue talking about deployments.
    
    ## Running on Startup
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/traffic.go

    				tmplData := map[string]any{
    					// tests that use simple Run only need the first
    					"dst":    dsts[0],
    					"dstSvc": dsts[0][0].Config().Service,
    					// tests that use RunForN need all destination deployments
    					"dsts":    dsts,
    					"dstSvcs": dsts.NamespacedNames().Names(),
    				}
    				if len(src) > 0 {
    					tmplData["src"] = src
    					if src, ok := src[0].(echo.Instance); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption.go

    	if !ok || err != nil {
    		return nil, err
    	}
    	deployment, err := dc.dLister.Deployments(rs.Namespace).Get(controllerRef.Name)
    	if err != nil {
    		// The only possible error is NotFound, which is ok here.
    		return nil, nil
    	}
    	if deployment.UID != controllerRef.UID {
    		return nil, nil
    	}
    	return &controllerAndScale{deployment.UID, *(deployment.Spec.Replicas)}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. pkg/test/kube/dump.go

    		deps, err := c.Kube().AppsV1().Deployments(namespace).List(context.TODO(), metav1.ListOptions{})
    		if err != nil {
    			scopes.Framework.Warnf("Error getting deployments for cluster %s: %v", c.Name(), err)
    			return
    		}
    		for _, deployment := range deps.Items {
    			deployment := deployment
    			errG.Go(func() error {
    				out, err := yaml.Marshal(deployment)
    				if err != nil {
    					return err
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule(Write...).Groups(appsGroup).Resources(
    					"statefulsets", "statefulsets/scale",
    					"daemonsets",
    					"deployments", "deployments/scale", "deployments/rollback",
    					"replicasets", "replicasets/scale").RuleOrDie(),
    
    				rbacv1helpers.NewRule(Write...).Groups(autoscalingGroup).Resources("horizontalpodautoscalers").RuleOrDie(),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/config.go

    	// Indicates that the test should deploy Istio into the target Kubernetes cluster before running tests.
    	DeployIstio bool
    
    	// Do not wait for the validation webhook before completing the deployment. This is useful for
    	// doing deployments without Galley.
    	SkipWaitForValidationWebhook bool
    
    	// Indicates that the test should deploy Istio's east west gateway into the target Kubernetes cluster
    	// before running tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager_test.go

    apiVersion: extensions/v1beta1
    kind: Deployment
    metadata:
      name: my-deployment
    spec:
      replicas: 3
    `),
    			original: []byte(`
    apiVersion: apps/v1 # expect conflict due to apiVersion mismatch with last-applied
    kind: Deployment
    metadata:
      name: my-deployment
    spec:
      replicas: 3
    `),
    			applied: []byte(`
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-deployment
    spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 20K bytes
    - Viewed (0)
  10. pkg/config/schema/gvr/resources.gen.go

    	DaemonSet                      = schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "daemonsets"}
    	Deployment                     = schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "deployments"}
    	DestinationRule                = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", Resource: "destinationrules"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top