Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestIptables (0.15 sec)

  1. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    	return &config.Config{
    		ProxyUID:           constants.DefaultProxyUID,
    		ProxyGID:           constants.DefaultProxyUID,
    		OwnerGroupsInclude: constants.OwnerGroupsInclude.DefaultValue,
    	}
    }
    
    func TestIptables(t *testing.T) {
    	cases := []struct {
    		name   string
    		config func(cfg *config.Config)
    	}{
    		{
    			"empty",
    			func(*config.Config) {},
    		},
    		{
    			"dns",
    			func(cfg *config.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables_test.go

    package iptables
    
    import (
    	"net/netip"
    	"path/filepath"
    	"strings"
    	"testing"
    
    	testutil "istio.io/istio/pilot/test/util"
    	dep "istio.io/istio/tools/istio-iptables/pkg/dependencies"
    )
    
    func TestIptables(t *testing.T) {
    	cases := []struct {
    		name   string
    		config func(cfg *Config)
    	}{
    		{
    			"default",
    			func(cfg *Config) {
    				cfg.RedirectDNS = true
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run_test.go

    		OwnerGroupsInclude:      constants.OwnerGroupsInclude.DefaultValue,
    		HostIPv4LoopbackCidr:    constants.HostIPv4LoopbackCidr.DefaultValue,
    		RestoreFormat:           false,
    	}
    }
    
    func TestIptables(t *testing.T) {
    	cases := []struct {
    		name   string
    		config func(cfg *config.Config)
    	}{
    		{
    			"ipv6-empty-inbound-ports",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top