Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 369 for deploymentID (0.51 sec)

  1. 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)
  2. 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)
  3. 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)
  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/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)
  6. architecture/environments/operator.md

    function in the Istio control plane without necessarily being tied to any one component that runs in a Deployment.
    Component settings are those that necessarily refer to a particular Deployment or Service. For example, the number
    of Pilot replicas is a component setting, because it refers to a component which is a Deployment in the
    cluster. Most K8s platform settings are necessarily component settings.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. pkg/controller/deployment/rolling.go

    		// Scale down.
    		scaled, _, err := dc.scaleReplicaSetAndRecordEvent(ctx, newRS, *(deployment.Spec.Replicas), deployment)
    		return scaled, err
    	}
    	newReplicasCount, err := deploymentutil.NewRSNewReplicas(deployment, allRSs, newRS)
    	if err != nil {
    		return false, err
    	}
    	scaled, _, err := dc.scaleReplicaSetAndRecordEvent(ctx, newRS, newReplicasCount, deployment)
    	return scaled, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K 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. 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)
  10. manifests/charts/gateways/istio-ingress/values.yaml

        # . implies these objects are visible to only to sidecars in the same namespace, or if imported as a Sidecar.egress.host
        defaultConfigVisibilitySettings: []
    
        # Default node selector to be applied to all deployments so that all pods can be
        # constrained to run a particular nodes. Each component can overwrite these default
        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top