Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for turn (0.08 sec)

  1. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.template.gen.yaml

                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
                exec:
                  command:
                  - pilot-agent
                  - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.17.template.gen.yaml

                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
                exec:
                  command:
                  - pilot-agent
                  - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
                exec:
                  command:
                  - pilot-agent
                  - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                      - pilot-agent
                      - wait
              {{- else if $nativeSidecar }}
                {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
                lifecycle:
                  preStop:
                    exec:
                      command:
                      - pilot-agent
                      - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                      - pilot-agent
                      - wait
              {{- else if $nativeSidecar }}
                {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
                lifecycle:
                  preStop:
                    exec:
                      command:
                      - pilot-agent
                      - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  6. istioctl/pkg/util/formatting/formatter.go

    var (
    	colorPrefixes = map[diag.Level]string{
    		diag.Info:    "",           // no special color for info messages
    		diag.Warning: "\033[33m",   // yellow
    		diag.Error:   "\033[1;31m", // bold red
    	}
    )
    
    // render turns a Message instance into a string with an option of colored bash output
    func render(m diag.Message, colorize bool) string {
    	return fmt.Sprintf("%s%v%s [%v]%s %s",
    		colorPrefix(m, colorize), m.Type.Level(), colorSuffix(colorize),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 02:41:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. pkg/kube/kclient/client.go

    				// filter passthrough the entire namespace object, so we can pass the last known state to OnDelete.
    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    						for _, c := range ic.registeredHandlers {
    							c.handler.OnAdd(item, false)
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

              command:
              - pilot-agent
              - wait
      {{- else if $nativeSidecar }}
        {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
        lifecycle:
          preStop:
            exec:
              command:
              - pilot-agent
              - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. architecture/networking/pilot.md

    ```mermaid
    graph TD
        sd(Service Discovery)
        cs(ConfigStore)
        ep(Endpoints)
        pc(PushContext)
        sd-->pc
        cs-->pc
        sd-->ep
    ```
    
    ### Config Translation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation.go

    }
    
    func (v Validation) Unwrap() (Warning, error) {
    	return v.Warning, v.Err
    }
    
    func (v Validation) Error() string {
    	if v.Err == nil {
    		return ""
    	}
    	return v.Err.Error()
    }
    
    // WrapWarning turns an error into a Validation as a warning
    func WrapWarning(e error) Validation {
    	return Validation{Warning: e}
    }
    
    // wrapper around multierror.Append that enforces the invariant that if all input errors are nil, the output
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top