Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 470 for replicaSet (0.35 sec)

  1. pkg/controller/apis/config/types.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: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/register.go

    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Deployment{},
    		&DeploymentList{},
    		&StatefulSet{},
    		&StatefulSetList{},
    		&DaemonSet{},
    		&DaemonSetList{},
    		&ReplicaSet{},
    		&ReplicaSetList{},
    		&ControllerRevision{},
    		&ControllerRevisionList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 21:19:04 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example2/register.go

    }
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&example.ReplicaSet{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 20:55:33 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  4. pkg/controller/controller_utils.go

    func FilterActiveReplicaSets(replicaSets []*apps.ReplicaSet) []*apps.ReplicaSet {
    	activeFilter := func(rs *apps.ReplicaSet) bool {
    		return rs != nil && *(rs.Spec.Replicas) > 0
    	}
    	return FilterReplicaSets(replicaSets, activeFilter)
    }
    
    type filterRS func(rs *apps.ReplicaSet) bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. cluster/addons/README.md

    by the initial config. In order to make Horizontal / Vertical Auto-scaling functional,
    the related fields in config should be left unset. More specifically, leave `replicas`
    in `ReplicationController` / `Deployment` / `ReplicaSet` unset for Horizontal Scaling,
    leave `resources` for container unset for Vertical Scaling. The periodic reconcile
    won't clobbered these fields, hence they could be managed by Horizontal / Vertical
    Auto-scaler.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // This can not be 0 if MaxSurge is 0.
      // Defaults to 25%.
      // Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
      // immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
      // can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
      // that the total number of pods available at all times during the update is at
      // least 70% of desired pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. pkg/apis/apps/types.go

    // ReplicaSet ensures that a specified number of pod replicas are running at any given time.
    type ReplicaSet struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec defines the desired behavior of this ReplicaSet.
    	// +optional
    	Spec ReplicaSetSpec
    
    	// Status is the current status of this ReplicaSet. This data may be
    	// out of date by some window of time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. pkg/controller/replication/replication_controller_utils.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // If you make changes to this file, you should also make the corresponding change in ReplicaSet.
    
    package replication
    
    import (
    	"k8s.io/api/core/v1"
    )
    
    // GetCondition returns a replication controller condition with the provided type if it exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 28 14:41:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/conversion_test.go

    			outstr, _ := json.MarshalIndent(out, "", "  ")
    			t.Errorf("RC-RS conversion round-trip failed:\nin:\n%s\nout:\n%s", instr, outstr)
    		}
    	}
    }
    
    func roundTripRS(t *testing.T, rs *apps.ReplicaSet) *apps.ReplicaSet {
    	codec := legacyscheme.Codecs.LegacyCodec(appsv1.SchemeGroupVersion)
    	data, err := runtime.Encode(codec, rs)
    	if err != nil {
    		t.Errorf("%v\n %#v", err, rs)
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.prerelease-lifecycle.go

    func (in *ReplicaSet) APILifecycleDeprecated() (major, minor int) {
    	return 1, 8
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *ReplicaSet) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:29:23 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top