Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for statefulsets (0.27 sec)

  1. cluster/addons/dns/nodelocaldns/README.md

    ocaldns.yaml#L61). In the unlikely event that this impacts performance, setting this TTL to a higher value make help alleviate issues, but be aware that operations that rely on DNS polling for orchestration may fail (for example operators with StatefulSets)....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. pkg/registry/apps/statefulset/strategy.go

    }
    
    // PrepareForCreate clears the status of an StatefulSet before creation.
    func (statefulSetStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	statefulSet := obj.(*apps.StatefulSet)
    	// create cannot set status
    	statefulSet.Status = apps.StatefulSetStatus{}
    
    	statefulSet.Generation = 1
    
    	dropStatefulSetDisabledFields(statefulSet, nil)
    	pod.DropDisabledTemplateFields(&statefulSet.Spec.Template, nil)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:10 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    	if err != nil || len(constraints) == 0 {
    		return nil, err
    	}
    	selector := helper.DefaultSelector(p, pl.services, pl.replicationCtrls, pl.replicaSets, pl.statefulSets)
    	if selector.Empty() {
    		return nil, nil
    	}
    	for i := range constraints {
    		constraints[i].Selector = selector
    	}
    	return constraints, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/types_pluginargs.go

    	// `.defaultConstraints[*].labelSelectors` must be empty, as they are
    	// deduced from the Pod's membership to Services, ReplicationControllers,
    	// ReplicaSets or StatefulSets.
    	// When not empty, .defaultingType must be "List".
    	DefaultConstraints []v1.TopologySpreadConstraint
    
    	// DefaultingType determines how .defaultConstraints are deduced. Can be one
    	// of "System" or "List".
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. hack/testdata/rollingupdate-statefulset.yaml

    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: nginx
      labels:
        app: nginx-statefulset
    spec:
      selector:
        matchLabels:
          app: nginx-statefulset
      updateStrategy:
        type: RollingUpdate
      serviceName: "nginx"
      replicas: 0
      template:
        metadata:
          labels:
            app: nginx-statefulset
        spec:
          terminationGracePeriodSeconds: 5
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 593 bytes
    - Viewed (0)
  6. hack/testdata/rollingupdate-statefulset-rv2.yaml

    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: nginx
      labels:
        app: nginx-statefulset
    spec:
      selector:
        matchLabels:
          app: nginx-statefulset
      updateStrategy:
        type: RollingUpdate
      serviceName: "nginx"
      replicas: 0
      template:
        metadata:
          labels:
            app: nginx-statefulset
        spec:
          terminationGracePeriodSeconds: 5
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 719 bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/deployment/namespace.go

    	E echo.Instances
    	// Standard echo app with TPROXY interception mode to be used by tests
    	Tproxy echo.Instances
    	// Headless echo app to be used by tests
    	Headless echo.Instances
    	// StatefulSet echo app to be used by tests
    	StatefulSet echo.Instances
    	// ProxylessGRPC echo app to be used by tests
    	ProxylessGRPC echo.Instances
    	// Echo app to be used by tests, with no sidecar injected
    	Naked echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. operator/pkg/name/name.go

    	RoleBindingStr                    = "RoleBinding"
    	SAStr                             = "ServiceAccount"
    	ServiceStr                        = "Service"
    	SecretStr                         = "Secret"
    	StatefulSetStr                    = "StatefulSet"
    	ValidatingWebhookConfigurationStr = "ValidatingWebhookConfiguration"
    )
    
    const (
    	// IstioOperatorStr is the kind name of the IstioOperator CRD.
    	IstioOperatorStr = "IstioOperator"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/config/schema/kind/resources.gen.go

    		return "Secret"
    	case Service:
    		return "Service"
    	case ServiceAccount:
    		return "ServiceAccount"
    	case ServiceEntry:
    		return "ServiceEntry"
    	case Sidecar:
    		return "Sidecar"
    	case StatefulSet:
    		return "StatefulSet"
    	case TCPRoute:
    		return "TCPRoute"
    	case TLSRoute:
    		return "TLSRoute"
    	case Telemetry:
    		return "Telemetry"
    	case UDPRoute:
    		return "UDPRoute"
    	case ValidatingWebhookConfiguration:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version_test.go

    		{input: ".apps", gk: GroupKind{Group: "apps"}},
    		{input: "Pod.", gk: GroupKind{Kind: "Pod"}},
    		{input: "StatefulSet.apps", gk: GroupKind{Group: "apps", Kind: "StatefulSet"}},
    		{input: "StatefulSet.v1.apps", gvk: &GroupVersionKind{Group: "apps", Version: "v1", Kind: "StatefulSet"}, gk: GroupKind{Group: "v1.apps", Kind: "StatefulSet"}},
    	}
    	for i, test := range tests {
    		t.Run(test.input, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:46:00 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top