Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for REGISTRY_ONLY (0.21 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_merge_meshconfig.golden.yaml

          tracing:
            zipkin:
              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
        rootNamespace: istio-control
        trustDomain: cluster.local
      meshNetworks: 'networks: {}'
    kind: ConfigMap
    metadata:
      labels:
        install.operator.istio.io/owning-resource: unknown
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 743 bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input/pilot_merge_meshconfig.yaml

    kind: IstioOperator
    spec:
      profile: empty
      hub: docker.io/istio
      tag: 1.1.4
      meshConfig:
        enablePrometheusMerge: true
        rootNamespace: istio-control
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
        defaultConfig:
          discoveryAddress: my-discovery:123
          drainDuration: 12s
          controlPlaneAuthPolicy: NONE
        accessLogFormat: |
          {
            "key": "val"
          }
      components:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 11 03:03:49 UTC 2021
    - 474 bytes
    - Viewed (0)
  3. tests/integration/telemetry/policy/helper_test.go

    	//
    	// 5. TCP
    	//    client ---TCP request at port 9090----> Matches no listener -> 0.0.0.0_150001 -> ALLOW_ANY/REGISTRY_ONLY
    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	// 5. TCP conflict
    	//    client ---TCP request at port 9091 ----> Hits listener 0.0.0.0_9091 ->  ALLOW_ANY/REGISTRY_ONLY
    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	framework.
    		NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			cfg.SystemNamespace = userGroup1NS.Name()
    			cfg.ControlPlaneValues = fmt.Sprintf(`
    namespace: %s
    revision: usergroup-1
    meshConfig:
      # REGISTRY_ONLY on one control plane is used to verify custom resources scoping
      outboundTrafficPolicy:
        mode: REGISTRY_ONLY
      # CR scoping requires discoverySelectors to be configured
      discoverySelectors:
        - matchLabels:
            usergroup: usergroup-1
    values:
      global:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh_test.go

        host:
          - "*.myns.svc.cluster.local"
    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    - "foons"
    defaultProviders:
      tracing: [foo]
    extensionProviders:
    - name: sd
      stackdriver: {}
    defaultConfig:
      tracing: {}
      concurrency: 4`)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_builder.go

    // with TLS blocks and build the appropriate filter chain matches and routes here. And then finally
    // evaluate the left over unmatched TLS traffic using allow_any or registry_only.
    // See https://github.com/istio/istio/issues/21170
    func buildOutboundCatchAllNetworkFilterChains(node *model.Proxy, push *model.PushContext) []*listener.FilterChain {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    					},
    					Address: c.host,
    					Check:   checker,
    				},
    			})
    		}
    	}
    }
    
    func TestExternalService(t TrafficContext) {
    	// Let us enable outboundTrafficPolicy REGISTRY_ONLY
    	// on one of the workloads, to verify selective external connectivity
    	SidecarScope := fmt.Sprintf(`apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: restrict-external-service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    				"templates/service.yaml", "templates/reader-serviceaccount.yaml",
    			},
    		},
    		// TODO https://github.com/istio/istio/issues/22347 this is broken for overriding things to default value
    		// This can be seen from REGISTRY_ONLY not applying
    		{
    			desc:       "pilot_merge_meshconfig",
    			diffSelect: "ConfigMap:*:istio$",
    			fileSelect: []string{"templates/configmap.yaml", "templates/_helpers.tpl"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar_test.go

    				Mode: networking.OutboundTrafficPolicy_ALLOW_ANY,
    			},
    		},
    	}
    
    	meshConfigWithRegistryOnly, err := mesh.ApplyMeshConfigDefaults(`
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    `)
    	if err != nil {
    		t.Fatalf("unexpected error reading test mesh config: %v", err)
    	}
    
    	tests := []struct {
    		name                  string
    		meshConfig            *v1alpha1.MeshConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        - host
                        type: object
                      mode:
                        description: |2-
    
    
                          Valid Options: REGISTRY_ONLY, ALLOW_ANY
                        enum:
                        - REGISTRY_ONLY
                        - ALLOW_ANY
                        type: string
                    type: object
                  workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
Back to top