Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for meshAPI (0.21 sec)

  1. pkg/bootstrap/option/convert.go

    			// Ignore UNSPECIFIED
    			case meshAPI.Tracing_OpenCensusAgent_W3C_TRACE_CONTEXT:
    				envoyContexts = append(envoyContexts, "TRACE_CONTEXT")
    			case meshAPI.Tracing_OpenCensusAgent_GRPC_BIN:
    				envoyContexts = append(envoyContexts, "GRPC_TRACE_BIN")
    			case meshAPI.Tracing_OpenCensusAgent_CLOUD_TRACE_CONTEXT:
    				envoyContexts = append(envoyContexts, "CLOUD_TRACE_CONTEXT")
    			case meshAPI.Tracing_OpenCensusAgent_B3:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    				meshAPI.Tracing_OpenCensusAgent_GRPC_BIN,
    				meshAPI.Tracing_OpenCensusAgent_W3C_TRACE_CONTEXT,
    			}),
    			expected: `["CLOUD_TRACE_CONTEXT","B3","GRPC_TRACE_BIN","TRACE_CONTEXT"]`,
    		},
    		{
    			testName: "openCensusAgent one context",
    			key:      "openCensusAgentContexts",
    			option: option.OpenCensusAgentContexts([]meshAPI.Tracing_OpenCensusAgent_TraceContext{
    				meshAPI.Tracing_OpenCensusAgent_B3,
    			}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    	switch name := metadata.ProxyConfig.ClusterName.(type) {
    	case *meshAPI.ProxyConfig_ServiceCluster:
    		return serviceClusterOrDefault(name.ServiceCluster, metadata)
    
    	case *meshAPI.ProxyConfig_TracingServiceName_:
    		workloadName := metadata.WorkloadName
    		if workloadName == "" {
    			workloadName = "istio-proxy"
    		}
    
    		switch name.TracingServiceName {
    		case meshAPI.ProxyConfig_APP_LABEL_AND_NAMESPACE:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/meshconfig.go

    import (
    	"google.golang.org/protobuf/proto"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	meshapi "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/log"
    )
    
    type MeshConfig struct {
    	*meshapi.MeshConfig
    }
    
    func (m MeshConfig) ResourceName() string { return " " }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/kube/namespace/filter.go

    package namespace
    
    import (
    	"fmt"
    	"sync"
    
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/selection"
    
    	meshapi "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/kubetypes"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    		{
    			// Validates localhost probes get injected correctly
    			in:   "hello-probes-localhost.yaml",
    			want: "hello-probes-localhost.yaml.injected",
    			mesh: func(m *meshapi.MeshConfig) {
    				m.InboundTrafficPolicy = &meshapi.MeshConfig_InboundTrafficPolicy{
    					Mode: meshapi.MeshConfig_InboundTrafficPolicy_LOCALHOST,
    				}
    			},
    		},
    	}
    	// Keep track of tests we add options above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. pkg/bootstrap/option/instances.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package option
    
    import (
    	"strings"
    
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	meshAPI "istio.io/api/mesh/v1alpha1"
    	networkingAPI "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/model"
    )
    
    type (
    	LocalhostValue       string
    	WildcardValue        string
    	DNSLookupFamilyValue string
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	// re-apply the annotation
    	return cur, true, true
    }
    
    type derivedInput struct {
    	TemplateInput
    
    	// Inserted from injection config
    	ProxyImage  string
    	ProxyConfig *meshapi.ProxyConfig
    	MeshConfig  *meshapi.MeshConfig
    	Values      map[string]any
    }
    
    func (d *DeploymentController) render(templateName string, mi TemplateInput) ([]string, error) {
    	cfg := d.injectConfig()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute_test.go

    	expectedHosts map[string]map[string]bool, expectedRoutes int, registryOnly bool,
    ) {
    	m := mesh.DefaultMeshConfig()
    	if registryOnly {
    		m.OutboundTrafficPolicy = &meshapi.MeshConfig_OutboundTrafficPolicy{Mode: meshapi.MeshConfig_OutboundTrafficPolicy_REGISTRY_ONLY}
    	}
    	cg := NewConfigGenTest(t, TestOptions{
    		MeshConfig:     m,
    		Services:       services,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top