Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 175 for replicaSet (0.17 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. 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)
  5. 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)
  6. staging/src/k8s.io/api/apps/v1beta2/register.go

    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Deployment{},
    		&DeploymentList{},
    		&Scale{},
    		&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: Mon Oct 30 18:54:02 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/initializer.go

    		{appsv1.SchemeGroupVersion, &appsv1.Deployment{}, "deployments", "/apis"},
    		{appsv1.SchemeGroupVersion, &appsv1.DaemonSet{}, "daemonsets", "/apis"},
    		{appsv1.SchemeGroupVersion, &appsv1.ReplicaSet{}, "replicasets", "/apis"},
    
    		{batchv1.SchemeGroupVersion, &batchv1.Job{}, "jobs", "/apis"},
    		{batchv1.SchemeGroupVersion, &batchv1.CronJob{}, "cronjobs", "/apis"},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

        plugin3: some-value
        plugin4: some-value
      name: some-name
      namespace: default
      ownerReferences:
      - apiVersion: apps/v1
        blockOwnerDeletion: true
        controller: true
        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
        - two
        - three
        - four
        - five
        - six
        - seven
        - eight
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/pod.yaml

        plugin3: some-value
        plugin4: some-value
      name: some-name
      namespace: default
      ownerReferences:
      - apiVersion: apps/v1
        blockOwnerDeletion: true
        controller: true
        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
        - two
        - three
        - four
        - five
        - six
        - seven
        - eight
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example/register.go

    }
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Pod{},
    		&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)
Back to top