Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,247 for v1beta (0.12 sec)

  1. cmd/kubeadm/test/cmd/init_test.go

    			expected: false,
    		},
    		{
    			name:     "can't load v1beta1 config",
    			args:     "--config=testdata/init/v1beta1.yaml",
    			expected: false,
    		},
    		{
    			name:     "can't load v1beta2 config",
    			args:     "--config=testdata/init/v1beta2.yaml",
    			expected: false,
    		},
    		{
    			name:     "can load v1beta3 config",
    			args:     "--config=testdata/init/v1beta3.yaml",
    			expected: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/CredentialProviderConfig/before/v1beta1.yaml

    kind: CredentialProviderConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 17:13:38 UTC 2022
    - 72 bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/scheme/testdata/CredentialProviderConfig/after/v1beta1.yaml

    apiVersion: kubelet.config.k8s.io/v1beta1
    kind: CredentialProviderConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 17:13:38 UTC 2022
    - 89 bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/scheme/testdata/CredentialProviderConfig/roundtrip/default/v1beta1.yaml

    apiVersion: kubelet.config.k8s.io/v1beta1
    kind: CredentialProviderConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 17:13:38 UTC 2022
    - 89 bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"flowcontrol.apiserver.k8s.io/v1beta1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    		"flowcontrol.apiserver.k8s.io/v1beta2": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    		"flowcontrol.apiserver.k8s.io/v1beta3": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    		"flowcontrol.apiserver.k8s.io/v1": fieldpath.NewSet(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/flowschema/strategy.go

    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"flowcontrol.apiserver.k8s.io/v1beta1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    		"flowcontrol.apiserver.k8s.io/v1beta2": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    		"flowcontrol.apiserver.k8s.io/v1beta3": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    		"flowcontrol.apiserver.k8s.io/v1": fieldpath.NewSet(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    ### Auth
    
    * [GA] The RBAC API group has been promoted from v1beta1 to v1. No API changes were introduced.
    
    * [beta] Advanced auditing has been promoted from alpha to beta. The webhook and logging policy formats have changed since alpha, and may require modification.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    address: 0.0.0.0
    apiVersion: kubelet.config.k8s.io/v1beta1
    authentication:
      anonymous:
        enabled: false
      webhook:
        cacheTTL: 2m0s
        enabled: true
      x509: {}
    authorization:
      mode: Webhook
      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    address: 0.0.0.0
    apiVersion: kubelet.config.k8s.io/v1beta1
    authentication:
      anonymous:
        enabled: false
      webhook:
        cacheTTL: 2m0s
        enabled: true
      x509: {}
    authorization:
      mode: Webhook
      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/install/install.go

    	"k8s.io/kubernetes/pkg/apis/flowcontrol"
    	flowcontrolv1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1"
    	flowcontrolv1beta1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta1"
    	flowcontrolv1beta2 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta2"
    	flowcontrolv1beta3 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1beta3"
    )
    
    func init() {
    	Install(legacyscheme.Scheme)
    }
    
    // Install registers the API group and adds types to a scheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 06:24:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top