Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for polos (0.12 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/policies.go

    	w := c.tabwriter()
    	zDump := c.ztunnelDump
    
    	pols := slices.Filter(maps.Values(zDump.Policies), filter.Verify)
    	slices.SortFunc(pols, func(a, b *ZtunnelPolicy) int {
    		if r := cmp.Compare(a.Namespace, b.Namespace); r != 0 {
    			return r
    		}
    		return cmp.Compare(a.Name, b.Name)
    	})
    	fmt.Fprintln(w, "NAMESPACE\tPOLICY NAME\tACTION\tSCOPE")
    
    	for _, pol := range pols {
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                      x-kubernetes-map-type: atomic
                    type: array
                  peers:
                    description: Peers limits the bgppeer to advertise the ips of the
                      selected pools to. When empty, the loadbalancer IP is announced
                      to all the BGPPeers configured.
                    items:
                      type: string
                    type: array
                type: object
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // the actual log data coming from the real kubelet).
      // +optional
      optional bool insecureSkipTLSVerifyBackend = 9;
    }
    
    // PodOS defines the OS parameters of a pod.
    message PodOS {
      // Name is the name of the operating system. The currently supported values are linux and windows.
      // Additional value may be defined in future and can be one of:
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    Another job polls this queue and triggers each client to start a push.
    
    ```mermaid
    graph TD
        subgraph Config Flow
            cu(Config Update)
            db(Debounce)
            pc(Recompute Push Context)
            pq(Push Queue)
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
Back to top