Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 538 for plfeature (0.16 sec)

  1. pkg/kubelet/userns/userns_manager_disabled_test.go

    	"github.com/stretchr/testify/require"
    	v1 "k8s.io/api/core/v1"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	pkgfeatures "k8s.io/kubernetes/pkg/features"
    )
    
    // Test all public methods behave ok when the feature gate is disabled.
    
    func TestMakeUserNsManagerDisabled(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/utils.go

    */
    
    package nodevolumelimits
    
    import (
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	storagev1 "k8s.io/api/storage/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	csilibplugins "k8s.io/csi-translation-lib/plugins"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. releasenotes/notes/50728.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    
    releaseNotes:
    - |
      **Added** An environment variable METRICS_LOCALHOST_ACCESS_ONLY for disabling 
      metrics endpoint from outside of the pod, to allow only localhost access. User can use set this with command
      `--set values.pilot.env.METRICS_LOCALHOST_ACCESS_ONLY=true` for Control plane and  
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 478 bytes
    - Viewed (0)
  4. releasenotes/notes/50804.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 50736
    releaseNotes:
    - |
      **Added** Allow pods to be opted out of ambient capture using the `istio.io/dataplane-mode=none` label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 387 bytes
    - Viewed (0)
  5. releasenotes/notes/51174.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 232 bytes
    - Viewed (0)
  6. releasenotes/notes/otel-accesslog-formatter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 02:59:27 UTC 2024
    - 322 bytes
    - Viewed (0)
  7. releasenotes/notes/release-channels-remote-cluster.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - https://github.com/istio/enhancements/issues/173
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 297 bytes
    - Viewed (0)
  8. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    }
    
    func TestPodDisruptionBudgetStrategy(t *testing.T) {
    	tests := map[string]bool{
    		"PodDisruptionBudget strategy with PDBUnhealthyPodEvictionPolicy feature gate disabled": false,
    		"PodDisruptionBudget strategy with PDBUnhealthyPodEvictionPolicy feature gate enabled":  true,
    	}
    
    	for name, enableUnhealthyPodEvictionPolicy := range tests {
    		t.Run(name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. operator/pkg/name/name.go

    // 1. If DefaultNamespace is unset, log and error and return the empty string.
    // 2. If the feature and component namespaces are unset, return DefaultNamespace.
    // 3. If the feature namespace is set but component name is unset, return the feature namespace.
    // 4. Otherwise return the component namespace.
    // Namespace assumes that controlPlaneSpec has been validated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    import (
    	"encoding/json"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	pluginapi "k8s.io/kubelet/pkg/apis/deviceplugin/v1beta1"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cm/devicemanager/checkpoint"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top