Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/test/framework/resource/settings.go

    	Hub string
    
    	// Tag value to use in Helm templates
    	Tag string
    
    	// Variant value to use in Helm templates
    	Variant string
    
    	// Image pull policy to use for deployments. If not specified, the defaults of each deployment will be used.
    	PullPolicy string
    
    	// PullSecret path to a file containing a k8s secret in yaml so test pods can pull from protected registries.
    	PullSecret string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/leaderelection.go

    	// resources (Service, Deployment, etc).
    	// Unlike other types which use ConfigMaps, we use a Lease here. This is because:
    	// * Others use configmap for backwards compatibility
    	// * This type is per-revision, so it is higher cost. Leases are cheaper
    	// * Other types use "prioritized leader election", which isn't implemented for Lease
    	GatewayDeploymentController = "istio-gateway-deployment"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. pkg/controller/deployment/progress_test.go

    		AvailableReplicas: availableReplicas,
    	}
    }
    
    // assumes the retuned deployment is always observed - not needed to be tested here.
    func currentDeployment(pds *int32, replicas, statusReplicas, updatedReplicas, availableReplicas int32, conditions []apps.DeploymentCondition) *apps.Deployment {
    	d := &apps.Deployment{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "progress-test",
    		},
    		Spec: apps.DeploymentSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. helm/minio/values.yaml

    ## Additional labels to include with deployment or statefulset
    additionalLabels: {}
    
    ## Additional annotations to include with deployment or statefulset
    additionalAnnotations: {}
    
    ## Typically the deployment/statefulset includes checksums of secrets/config,
    ## So that when these change on a subsequent helm install, the deployment/statefulset
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. docs/en/mkdocs.yml

        - advanced/wsgi.md
        - advanced/generate-clients.md
      - fastapi-cli.md
      - Deployment:
        - deployment/index.md
        - deployment/versions.md
        - deployment/https.md
        - deployment/manually.md
        - deployment/concepts.md
        - deployment/cloud.md
        - deployment/server-workers.md
        - deployment/docker.md
      - How To - Recipes:
        - how-to/index.md
        - how-to/general.md
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: {{.DeploymentName}}
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/{{.Namespace}}/deployments/{{.DeploymentName}}
            {{- if .Values.global.meshID }}
            - name: ISTIO_META_MESH_ID
              value: "{{ .Values.global.meshID }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top