Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for MUTUAL_TLS (0.09 sec)

  1. pkg/bootstrap/testdata/stats_compression_zstd.proxycfg

    envoy_access_log_service:         {address: "accesslog-service:15000"}
    proxy_admin_port:                 15005
    control_plane_auth_policy:        MUTUAL_TLS
    stat_name_length:                 200
    tracing:                          { zipkin: { address: "localhost:6000" } }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 27 03:36:28 UTC 2023
    - 864 bytes
    - Viewed (0)
  2. tools/packaging/common/sidecar.env

    # 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
    
    # Fine tuning - useful if installing/building binaries instead of using the .deb file, or running
    # multiple instances.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. pkg/model/proxy_test.go

    								SubjectAltNames: []string{"san"},
    							},
    						},
    					}),
    				},
    			},
    			// nolint: lll
    			`{"PROXY_CONFIG":{"configPath":"foo","drainDuration":"5s","controlPlaneAuthPolicy":"MUTUAL_TLS","envoyAccessLogService":{"address":"address","tlsSettings":{"subjectAltNames":["san"]}}}}`,
    			model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. tools/packaging/common/istio-start.sh

    NS=${ISTIO_NAMESPACE:-default}
    SVC=${ISTIO_SERVICE:-rawvm}
    ISTIO_SYSTEM_NAMESPACE=${ISTIO_SYSTEM_NAMESPACE:-istio-system}
    
    # If set, override the default
    CONTROL_PLANE_AUTH_POLICY=${ISTIO_CP_AUTH:-"MUTUAL_TLS"}
    
    if [ -z "${ISTIO_SVC_IP:-}" ]; then
      ISTIO_SVC_IP=$(hostname --all-ip-addresses | cut -d ' ' -f 1)
    fi
    
    if [ -z "${POD_NAME:-}" ]; then
      POD_NAME=$(hostname -s)
    fi
    
    if [[ ${1-} == "clean" ]] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top