Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for enableCoreDump (0.23 sec)

  1. manifests/charts/istio-control/istio-discovery/values.yaml

          # not set, then the global "logLevel" will be used.
          componentLogLevel: "misc:error"
    
          # If set, newly injected sidecars will have core dumps enabled.
          enableCoreDump: false
    
          # istio ingress capture allowlist
          # examples:
          #     Redirect only selected ports:            --includeInboundPorts="80,8080"
          excludeInboundPorts: ""
          includeInboundPorts: "*"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject_test.go

    			setFlags: []string{"values.global.imagePullPolicy=Never"},
    		},
    		{
    			in:       "enable-core-dump.yaml",
    			want:     "enable-core-dump.yaml.injected",
    			setFlags: []string{"values.global.proxy.enableCoreDump=true"},
    		},
    		{
    			in:   "format-duration.yaml",
    			want: "format-duration.yaml.injected",
    			mesh: func(m *meshapi.MeshConfig) {
    				m.DefaultConfig.DrainDuration = durationpb.New(time.Second * 23)
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                  runAsUser: {{ .ProxyUID | default "1337" }}
                  runAsNonRoot: true
                {{- end }}
              {{ end -}}
              {{- if eq (annotation .ObjectMeta `sidecar.istio.io/enableCoreDump` .Values.global.proxy.enableCoreDump) "true" }}
              - name: enable-core-dump
                args:
                - -c
                - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    runAsUser: 0 {{- else }} readOnlyRootFilesyst: true runAsGroup: {{ .ProxyGID | default "1337" }} runAsUser: {{ .ProxyUID | default "1337" }} runAsNonRoot: true {{- end }} {{ end -}} {{- if eq (annotation .ObjectMeta `sidecar.istio.io/enableCoreDump` .Values.global.proxy.enableCoreDump) "true" }} - name: enable-core-dump args: - -c - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited command: - /bin/sh {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage`...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string componentLogLevel = 6;
    
      // Enables core dumps for newly injected sidecars.
      //
      // If set, newly injected sidecars will have core dumps enabled.
      google.protobuf.BoolValue enableCoreDump = 9;
    
      // Specifies the Istio ingress ports not to capture.
      string excludeInboundPorts = 12;
    
      // Lists the excluded IP ranges of Istio egress traffic that the sidecar captures.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Enables core dumps for newly injected sidecars.
    	//
    	// If set, newly injected sidecars will have core dumps enabled.
    	EnableCoreDump *wrapperspb.BoolValue `protobuf:"bytes,9,opt,name=enableCoreDump,proto3" json:"enableCoreDump,omitempty"`
    	// Specifies the Istio ingress ports not to capture.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top