Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for controlPlaneAuthPolicy (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top