Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for OutlierLogPath (0.22 sec)

  1. pilot/cmd/pilot-agent/app/cmd.go

    				LogAsJSON:         loggingOptions.JSONEncoding,
    				NodeIPs:           proxyArgs.IPAddresses,
    				Sidecar:           proxyArgs.Type == model.SidecarProxy,
    				OutlierLogPath:    proxyArgs.OutlierLogPath,
    			}
    			agentOptions := options.NewAgentOptions(&proxyArgs, proxyConfig, sds)
    			agent := istioagent.NewAgent(proxyConfig, agentOptions, secOpts, envoyOptions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    		metadataDiscovery = true
    	}
    
    	opts = append(opts,
    		option.NodeID(cfg.ID),
    		option.NodeType(cfg.ID),
    		option.PilotSubjectAltName(cfg.Metadata.PilotSubjectAltName),
    		option.OutlierLogPath(cfg.Metadata.OutlierLogPath),
    		option.ApplicationLogJSON(cfg.LogAsJSON),
    		option.DiscoveryHost(discHost),
    		option.Metadata(cfg.Metadata),
    		option.XdsType(xdsType),
    		option.MetadataDiscovery(bool(metadataDiscovery)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/files/injection-template.yaml

        - --stsPort={{ .Values.global.sts.servicePort }}
      {{- end }}
      {{- if .Values.global.logAsJson }}
        - --log_as_json
      {{- end }}
      {{- if .Values.global.proxy.outlierLogPath }}
        - --outlierLogPath={{ .Values.global.proxy.outlierLogPath }}
      {{- end}}
      {{- if .Values.global.proxy.lifecycle }}
        lifecycle:
          {{ toYaml .Values.global.proxy.lifecycle | indent 6 }}
      {{- else if $holdProxy }}
        lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        - --stsPort={{ .Values.global.sts.servicePort }}
      {{- end }}
      {{- if .Values.global.logAsJson }}
        - --log_as_json
      {{- end }}
      {{- if .Values.global.proxy.outlierLogPath }}
        - --outlierLogPath={{ .Values.global.proxy.outlierLogPath }}
      {{- end}}
      {{- if .Values.global.proxy.lifecycle }}
        lifecycle:
          {{ toYaml .Values.global.proxy.lifecycle | indent 6 }}
      {{- else if $holdProxy }}
        lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	PilotSubjectAltName []string `json:"PILOT_SAN,omitempty"`
    
    	// XDSRootCert defines the root cert to use for XDS connections
    	XDSRootCert string `json:"-"`
    
    	// OutlierLogPath is the cluster manager outlier event log path.
    	OutlierLogPath string `json:"OUTLIER_LOG_PATH,omitempty"`
    
    	// AppContainers is the list of containers in the pod.
    	AppContainers string `json:"APP_CONTAINERS,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    		StsPort:                     a.secOpts.STSPort,
    		ProxyConfig:                 a.proxyConfig,
    		PilotSubjectAltName:         pilotSAN,
    		CredentialSocketExists:      credentialSocketExists,
    		OutlierLogPath:              a.envoyOpts.OutlierLogPath,
    		EnvoyPrometheusPort:         a.cfg.EnvoyPrometheusPort,
    		EnvoyStatusPort:             a.cfg.EnvoyStatusPort,
    		ExitOnZeroActiveConnections: a.cfg.ExitOnZeroActiveConnections,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. pkg/bootstrap/instance_test.go

    				StsPort:     c.stsPort,
    				ProxyConfig: proxyConfig,
    				PilotSubjectAltName: []string{
    					"spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account",
    				},
    				OutlierLogPath:      "/dev/stdout",
    				annotationFilePath:  annoFile.Name(),
    				EnvoyPrometheusPort: 15090,
    				EnvoyStatusPort:     15021,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    			fn, err := New(Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

          # Expected values are: trace|debug|info|warning|error|critical|off
          logLevel: warning
    
          # Specify the path to the outlier event log.
          # Example: /dev/stdout
          outlierLogPath: ""
    
          #If set to true, istio-proxy container will have privileged securityContext
          privileged: false
    
          # The number of successive failed probes before indicating readiness failure.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/values.yaml

          # Expected values are: trace|debug|info|warning|error|critical|off
          logLevel: warning
          # Specify the path to the outlier event log.
          # Example: /dev/stdout
          outlierLogPath: ""
          #If set to true, istio-proxy container will have privileged securityContext
          privileged: false
          # The number of successive failed probes before indicating readiness failure.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top