Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for controlPlaneAuthPolicy (0.31 sec)

  1. pilot/cmd/pilot-agent/config/config_test.go

    )
    
    func TestGetMeshConfig(t *testing.T) {
    	meshOverride := `
    defaultConfig:
      discoveryAddress: foo:123
      controlPlaneAuthPolicy: NONE
      proxyMetadata:
        SOME: setting
      drainDuration: 1s`
    	proxyOverride := `discoveryAddress: foo:123
    proxyMetadata:
      SOME: setting
    drainDuration: 1s
    controlPlaneAuthPolicy: NONE`
    	overridesExpected := func() *meshconfig.ProxyConfig {
    		m := mesh.DefaultProxyConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/model/proxy_test.go

    				NodeMetadata: model.NodeMetadata{
    					ProxyConfig: (*model.NodeMetaProxyConfig)(&meshconfig.ProxyConfig{
    						ConfigPath:             "foo",
    						DrainDuration:          durationpb.New(time.Second * 5),
    						ControlPlaneAuthPolicy: meshconfig.AuthenticationPolicy_MUTUAL_TLS,
    						EnvoyAccessLogService: &meshconfig.RemoteService{
    							Address: "address",
    							TlsSettings: &v1alpha3.ClientTLSSettings{
    								SubjectAltNames: []string{"san"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/input/pilot_merge_meshconfig.yaml

        enablePrometheusMerge: true
        rootNamespace: istio-control
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
        defaultConfig:
          discoveryAddress: my-discovery:123
          drainDuration: 12s
          controlPlaneAuthPolicy: NONE
        accessLogFormat: |
          {
            "key": "val"
          }
      components:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 11 03:03:49 UTC 2021
    - 474 bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_merge_meshconfig.golden.yaml

    apiVersion: v1
    data:
      mesh: |-
        accessLogFormat: |
          {
            "key": "val"
          }
        defaultConfig:
          controlPlaneAuthPolicy: NONE
          discoveryAddress: my-discovery:123
          drainDuration: 12s
          tracing:
            zipkin:
              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 743 bytes
    - Viewed (0)
  5. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      zipkinAddress: ""
      #
      # Statsd metrics collector converts statsd metrics into Prometheus metrics.
      statsdUdpAddress: ""
      #
      # Mutual TLS authentication between sidecars and istio control plane.
      controlPlaneAuthPolicy: NONE
      #
      # Address where istio Pilot service is running
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. tools/packaging/common/istio-start.sh

    ISTIO_AGENT_FLAGS=${ISTIO_AGENT_FLAGS:-}
    # Split ISTIO_AGENT_FLAGS by spaces.
    IFS=' ' read -r -a ISTIO_AGENT_FLAGS_ARRAY <<< "$ISTIO_AGENT_FLAGS"
    
    DEFAULT_PROXY_CONFIG="
    serviceCluster: $SVC
    controlPlaneAuthPolicy: ${CONTROL_PLANE_AUTH_POLICY}
    "
    if [ -n "${CUSTOM_PILOT_ADDRESS}" ]; then
      PROXY_CONFIG="$PROXY_CONFIG
    discoveryAddress: ${CUSTOM_PILOT_ADDRESS}
    "
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. tools/packaging/common/sidecar.env

    # Specify the IP address used in endpoints. If not set, 'hostname --ip-address' will be used.
    # Needed if the host has multiple IP.
    # ISTIO_SVC_IP=
    
    # If istio-pilot is configured with mTLS authentication (--controlPlaneAuthPolicy MUTUAL_TLS ) you must
    # also configure the mesh expansion machines:
    # ISTIO_PILOT_PORT=15005
    # ISTIO_CP_AUTH=MUTUAL_TLS
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top