Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Sidecars (0.11 sec)

  1. pilot/pkg/model/gateway.go

    	if len(duplicates) == 0 {
    		for _, h := range hosts {
    			knownHosts[h] = bind
    		}
    	}
    	return duplicates
    }
    
    // gatewayRDSRouteName generates the RDS route config name for gateway's servers.
    // Unlike sidecars where the RDS route name is the listener port number, gateways have a different
    // structure for RDS.
    // HTTP servers have route name set to http.<portNumber>.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging_test.go

    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - outbound",
    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - inbound",
    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassSidecarInbound,
    			sidecar,
    			nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_test.go

    		want             *TracingConfig
    	}{
    		{
    			"empty",
    			nil,
    			sidecar,
    			nil,
    			nil,
    		},
    		{
    			"default provider only",
    			nil,
    			sidecar,
    			[]string{"envoy"},
    			newTracingConfig("envoy", reportingEnabled),
    		},
    		{
    			"provider only",
    			[]config.Config{newTelemetry("istio-system", envoy)},
    			sidecar,
    			nil,
    			newTracingConfig("envoy", reportingEnabled),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/sidecar-default-selector.yaml"},
    		analyzer:   &sidecar.SelectorAnalyzer{},
    		expected: []message{
    			{msg.MultipleSidecarsWithoutWorkloadSelectors, "Sidecar ns2/has-conflict-2"},
    			{msg.MultipleSidecarsWithoutWorkloadSelectors, "Sidecar ns2/has-conflict-1"},
    			{msg.IneffectivePolicy, "Sidecar ns-ambient/namespace-scoped"},
    			{msg.IneffectivePolicy, "Sidecar ns-ambient/pod-scoped"},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		}
    	}
    	assert.Equal(t, expected, actual, desc)
    }
    
    func TestComputePodActionsWithInitContainers(t *testing.T) {
    	t.Run("sidecar containers disabled", func(t *testing.T) {
    		testComputePodActionsWithInitContainers(t, false)
    	})
    	t.Run("sidecar containers enabled", func(t *testing.T) {
    		testComputePodActionsWithInitContainers(t, true)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top