Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for statefulsets (0.19 sec)

  1. pkg/printers/internalversion/printers_test.go

    	}
    }
    
    func TestPrintStatefulSet(t *testing.T) {
    	tests := []struct {
    		statefulSet apps.StatefulSet
    		options     printers.GenerateOptions
    		expected    []metav1.TableRow
    	}{
    		// Basic stateful set; no generate options.
    		{
    			statefulSet: apps.StatefulSet{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "test1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "imagePullPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a `v1.28.0` regression where `kube-controller-manager` can crash when `StatefulSet` with `Parallel` policy and PVC labels are scaled up. ([#121142](https://github.com/kubernetes/kubernetes/pull/121142), [@aleksandra-malinowska](https://github.com/aleksandra-malinowska))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - `StatefulSetAutoDeletePVC` feature gate promoted to beta. ([#116501](https://github.com/kubernetes/kubernetes/pull/116501), [@mattcary](https://github.com/mattcary))
    - `StatefulSet` names must be DNS labels, rather than subdomains. Any `StatefulSet`
      which took advantage of subdomain validation (by having dots in the name) can't
      possibly have worked, because we eventually set `pod.spec.hostname` from the `StatefulSetName`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - StatefulSet pods now have the pod index set as a pod label `statefulset.kubernetes.io/pod-index`. ([#119232](https://github.com/kubernetes/kubernetes/pull/119232), [@danielvegamyhre](https://github.com/danielvegamyhre)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - StatefulSet autodelete will respect controlling owners on PVC claims as described in https://github.com/kubernetes/enhancements/pull/4375 ([#122499](https://github.com/kubernetes/kubernetes/pull/122499), [@mattcary](https://github.com/mattcary)) [SIG Apps and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    		r, err := printIngressClass(&list.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printStatefulSet(obj *apps.StatefulSet, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	desiredReplicas := obj.Spec.Replicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      until kubectl get clusterrolebinding volume-snapshot-controller-role
      do
        sleep 10
      done
    
      echo "Wait until volume snapshot controller is installed"
      until kubectl get statefulset volume-snapshot-controller | grep volume-snapshot-controller | grep "1/1"
      do
        sleep 10
      done
    }
    
    # Trigger background process that will wait for volumesnapshot CRDs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top