Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for statefulsets (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pkg/apis/apps/v1beta1/defaults_test.go

    	tests := []struct {
    		name                        string
    		original                    *appsv1beta1.StatefulSet
    		expected                    *appsv1beta1.StatefulSet
    		enableMaxUnavailablePolicy  bool
    		enableStatefulSetAutoDelete bool
    	}{
    		{
    			name: "labels and default update strategy",
    			original: &appsv1beta1.StatefulSet{
    				Spec: appsv1beta1.StatefulSetSpec{
    					Template: defaultTemplate,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1/defaults_test.go

    		original                   *appsv1.StatefulSet
    		expected                   *appsv1.StatefulSet
    		enablePVCDeletionPolicy    bool
    		enableMaxUnavailablePolicy bool
    	}{
    		{
    			name: "labels and default update strategy",
    			original: &appsv1.StatefulSet{
    				Spec: appsv1.StatefulSetSpec{
    					Template: defaultTemplate,
    				},
    			},
    			expected: &appsv1.StatefulSet{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta2/defaults_test.go

    	tests := []struct {
    		name                        string
    		original                    *appsv1beta2.StatefulSet
    		expected                    *appsv1beta2.StatefulSet
    		enableMaxUnavailablePolicy  bool
    		enableStatefulSetAutoDelete bool
    	}{
    		{
    			name: "labels and default update strategy",
    			original: &appsv1beta2.StatefulSet{
    				Spec: appsv1beta2.StatefulSetSpec{
    					Template: defaultTemplate,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. pkg/config/schema/gvk/resources.gen.go

    	Sidecar_v1                     = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1", Kind: "Sidecar"}
    	StatefulSet                    = config.GroupVersionKind{Group: "apps", Version: "v1", Kind: "StatefulSet"}
    	TCPRoute                       = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Kind: "TCPRoute"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/config.go

    	Locality string
    
    	// Headless (k8s only) indicates that no ClusterIP should be specified.
    	Headless bool
    
    	// StatefulSet indicates that the pod should be backed by a StatefulSet. This implies Headless=true
    	// as well.
    	StatefulSet bool
    
    	// StaticAddress for some echo implementations is an address locally reachable within
    	// the test framework and from the echo Cluster's network.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/deployment/echos.go

    		Ports:           ports.Headless(),
    		Subsets:         []echo.SubsetConfig{{}},
    		IncludeExtAuthz: c.IncludeExtAuthz,
    	}
    
    	stateful := echo.Config{
    		Service:         StatefulSetSvc,
    		ServiceAccount:  true,
    		Headless:        true,
    		StatefulSet:     true,
    		Ports:           ports.Headless(),
    		Subsets:         []echo.SubsetConfig{{}},
    		IncludeExtAuthz: c.IncludeExtAuthz,
    	}
    
    	naked := echo.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// owner: @mattcary
    	// alpha: v1.22
    	// beta: v1.27
    	//
    	// Enables policies controlling deletion of PVCs created by a StatefulSet.
    	StatefulSetAutoDeletePVC featuregate.Feature = "StatefulSetAutoDeletePVC"
    
    	// owner: @psch
    	// alpha: v1.26
    	// beta: v1.27
    	//
    	// Enables a StatefulSet to start from an arbitrary non zero ordinal
    	StatefulSetStartOrdinal featuregate.Feature = "StatefulSetStartOrdinal"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_pod_control_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package statefulset
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"strings"
    	"testing"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Enabled by default in master for maximising testing.
        istiod:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top