Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for replicaSet (0.29 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	poautosclerconfig "k8s.io/kubernetes/pkg/controller/podautoscaler/config"
    	podgcconfig "k8s.io/kubernetes/pkg/controller/podgc/config"
    	replicasetconfig "k8s.io/kubernetes/pkg/controller/replicaset/config"
    	replicationconfig "k8s.io/kubernetes/pkg/controller/replication/config"
    	resourcequotaconfig "k8s.io/kubernetes/pkg/controller/resourcequota/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    }
    
    const (
    	// DefaultDeploymentUniqueLabelKey is the default key of the selector that is added
    	// to existing ReplicaSets (and label key that is added to its pods) to prevent the existing ReplicaSets
    	// to select new pods (and old pods being select by new ReplicaSet).
    	DefaultDeploymentUniqueLabelKey string = "pod-template-hash"
    )
    
    // GetNodeMetaData function uses an environment variable contract
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. api/openapi-spec/swagger.json

            }
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref(...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    		useMetricsAPI:           true,
    		resource: &fakeResource{
    			name:       "test-replicaset",
    			apiVersion: "apps/v1",
    			kind:       "ReplicaSet",
    		},
    		expectedReportedReconciliationActionLabel: monitor.ActionLabelScaleUp,
    		expectedReportedReconciliationErrorLabel:  monitor.ErrorLabelNone,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    	PodAndContainerStatsFromCRI featuregate.Feature = "PodAndContainerStatsFromCRI"
    
    	// owner: @ahg-g
    	// alpha: v1.21
    	// beta: v1.22
    	//
    	// Enables controlling pod ranking on replicaset scale-down.
    	PodDeletionCost featuregate.Feature = "PodDeletionCost"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3329
    	// alpha: v1.25
    	// beta: v1.26
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		if !test.isNilRequestInfo {
    			context = genericapirequest.WithRequestInfo(context, &test.requestInfo)
    		}
    		changed, finalizers := deletionFinalizersForGarbageCollection(context, registry, &example.ReplicaSet{}, &metav1.DeleteOptions{})
    		if !changed {
    			if test.changed {
    				t.Errorf("%s/%s: no new finalizers are added", test.requestInfo.APIGroup, test.requestInfo.APIVersion)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. docs/bucket/replication/setup_ilm_expiry_replication.sh

    ./mc ilm rule list sitea/bucket
    
    ## Check ilm expiry flag
    ./mc admin replicate info sitea --json
    flag1=$(./mc admin replicate info sitea --json | jq '.sites[0]."replicate-ilm-expiry"')
    flag2=$(./mc admin replicate info sitea --json | jq '.sites[1]."replicate-ilm-expiry"')
    if [ "$flag1" != "true" ]; then
    	echo "BUG: Expected ILM expiry replication not set for 'sitea'"
    	exit 1
    fi
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

        tf_device::ReplicateOp replicate;
        while_op.getBody().walk([&](tf_device::ReplicateOp replicate_op) {
          if (replicate == nullptr) {
            replicate = replicate_op;
            return WalkResult::advance();
          }
          // We do not handle loops with multiple replicate ops.
          replicate = nullptr;
          return WalkResult::interrupt();
        });
        if (replicate)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. docs/site-replication/run-multi-site-minio-idp.sh

    if [ $? -ne 0 ]; then
    	echo "expected 'bucket2' delete and 'newbucket2' creation to have replicated, exiting..."
    	exit_1
    fi
    
    # force a resync after removing all site replication
    ./mc admin replicate rm --all --force minio1
    ./mc rb minio2 --force --dangerous
    ./mc admin replicate add minio1 minio2
    ./mc admin replicate resync start minio1 minio2
    sleep 30
    
    ./mc ls -r --versions minio1/newbucket >/tmp/minio1.txt
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top