Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for statefulsets (0.25 sec)

  1. pkg/test/framework/components/echo/workloadclass.go

    	VM          WorkloadClass = "vm"
    	Sotw        WorkloadClass = "sotw"
    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    	StatefulSet WorkloadClass = "statefulset"
    	Headless    WorkloadClass = "headless"
    	Captured    WorkloadClass = "captured"
    	Waypoint    WorkloadClass = "waypoint"
    	Standard    WorkloadClass = "standard"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- range $revision, $version := $revVerMap }}
    apiVersion: apps/v1
    {{- if $.StatefulSet }}
    kind: StatefulSet
    {{- else }}
    kind: Deployment
    {{- end }}
    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    spec:
      {{- if $.StatefulSet }}
      serviceName: {{ $.Service }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/apps/validation/validation_test.go

    	corevalidation "k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    type statefulSetTweak func(ss *apps.StatefulSet)
    
    func mkStatefulSet(template *api.PodTemplate, tweaks ...statefulSetTweak) apps.StatefulSet {
    	ss := apps.StatefulSet{
    		ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    		Spec: apps.StatefulSetSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  5. cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml

    # This YAML file shows how to deploy the volume snapshot controller 
    
    ---
    kind: StatefulSet
    apiVersion: apps/v1
    metadata:
      name: volume-snapshot-controller
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      serviceName: "volume-snapshot-controller"
      replicas: 1
      selector:
        matchLabels:
          app: volume-snapshot-controller
      template:
        metadata:
          labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:47:15 UTC 2024
    - 758 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. tests/integration/pilot/common/routing.go

    				//	from: vm,
    				//	to:   apps.StatefulSet.Match(echo.Cluster(vm.Config().Cluster.Config())),
    				//	host: fmt.Sprintf("%s-v1-0.%s.%s.svc", StatefulSetSvc, StatefulSetSvc, apps.Namespace.Name()),
    				//},
    				//vmCase{
    				//	name: "dns: VM to k8s statefulset instance FQDN",
    				//	from: vm,
    				//	to:   apps.StatefulSet.Match(echo.Cluster(vm.Config().Cluster.Config())),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pkg/config/schema/kubetypes/resources.gen.go

    		return gvk.ServiceEntry, true
    	case *istioioapinetworkingv1alpha3.Sidecar:
    		return gvk.Sidecar, true
    	case *apiistioioapinetworkingv1alpha3.Sidecar:
    		return gvk.Sidecar, true
    	case *k8sioapiappsv1.StatefulSet:
    		return gvk.StatefulSet, true
    	case *sigsk8siogatewayapiapisv1alpha2.TCPRoute:
    		return gvk.TCPRoute, true
    	case *sigsk8siogatewayapiapisv1alpha2.TLSRoute:
    		return gvk.TLSRoute, true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. samples/addons/loki.yaml

      selector:
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
        app.kubernetes.io/component: single-binary
    ---
    # Source: loki/templates/single-binary/statefulset.yaml
    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: loki
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

          "properties": {
            "whenDeleted": {
              "description": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top