Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 252 for deploymentID (0.3 sec)

  1. pkg/config/schema/kubeclient/resources.gen.go

    		}
    	case gvr.Deployment:
    		l = func(options metav1.ListOptions) (runtime.Object, error) {
    			return c.Kube().AppsV1().Deployments(opts.Namespace).List(context.Background(), options)
    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    			return c.Kube().AppsV1().Deployments(opts.Namespace).Watch(context.Background(), options)
    		}
    	case gvr.DestinationRule:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.Deployment.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. samples/addons/kiali.yaml

        protocol: TCP
        port: 9090
      selector:
        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
    ...
    ---
    # Source: kiali-server/templates/deployment.yaml
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: kiali
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top