Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for log_json (0.11 sec)

  1. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --applicationPorts
            - "{{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/applicationPorts` (applicationPorts .Spec.Containers) }}"
          {{- end }}
          {{- if .Values.global.logAsJson }}
            - --log_as_json
          {{- end }}
          {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
            - --templateFile=/etc/istio/custom-bootstrap/envoy_bootstrap.json
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - --applicationPorts
            - "{{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/applicationPorts` (applicationPorts .Spec.Containers) }}"
          {{- end }}
          {{- if .Values.global.logAsJson }}
            - --log_as_json
          {{- end }}
          {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
            - --templateFile=/etc/istio/custom-bootstrap/envoy_bootstrap.json
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

      {{- if .Values.global.sts.servicePort }}
        - --stsPort={{ .Values.global.sts.servicePort }}
      {{- end }}
      {{- if .Values.global.logAsJson }}
        - --log_as_json
      {{- end }}
        lifecycle:
          postStart:
            exec:
              command:
              - pilot-agent
              - wait
              - --url=http://localhost:15020/healthz/ready
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/bootstrap/config.go

    	"zstd":   {},
    	"brotli": {},
    }
    
    // Config for creating a bootstrap file.
    type Config struct {
    	*model.Node
    	// CompliancePolicy to decouple the environment variable dependency.
    	CompliancePolicy string
    	LogAsJSON        bool
    }
    
    // toTemplateParams creates a new template configuration for the given configuration.
    func (cfg Config) toTemplateParams() (map[string]any, error) {
    	opts := make([]option.Instance, 0)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/app/cmd.go

    			}
    
    			envoyOptions := envoy.ProxyConfig{
    				LogLevel:          proxyArgs.ProxyLogLevel,
    				ComponentLogLevel: proxyArgs.ProxyComponentLogLevel,
    				LogAsJSON:         loggingOptions.JSONEncoding,
    				NodeIPs:           proxyArgs.IPAddresses,
    				Sidecar:           proxyArgs.Type == model.SidecarProxy,
    				OutlierLogPath:    proxyArgs.OutlierLogPath,
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    		a.envoyOpts.ConfigCleanup = false
    	} else {
    		out, err := bootstrap.New(bootstrap.Config{
    			Node:             node,
    			CompliancePolicy: common_features.CompliancePolicy,
    			LogAsJSON:        a.envoyOpts.LogAsJSON,
    		}).CreateFile()
    		if err != nil {
    			return fmt.Errorf("failed to generate bootstrap config: %v", err)
    		}
    		a.envoyOpts.ConfigPath = out
    		a.envoyOpts.ConfigCleanup = true
    	}
    
    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. manifests/charts/gateways/istio-ingress/values.yaml

        imagePullSecrets: []
        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
        # Specify pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows:
        #   0 - Never scheduled
        #   1 - Least preferred
        #   2 - No preference
        #   3 - Most preferred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/values.yaml

        imagePullSecrets: []
        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
        # Specify pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows:
        #   0 - Never scheduled
        #   1 - Least preferred
        #   2 - No preference
        #   3 - Most preferred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/values.yaml

        # Enabled by default in master for maximising testing.
        istiod:
          enableAnalysis: false
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/values.yaml

        istiod:
          enableAnalysis: false
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top