Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for helps (0.17 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                readOnly: true
              {{- with .Values.pilot.volumeMounts }}
                {{- toYaml . | nindent 10 }}
              {{- end }}
          volumes:
          # Technically not needed on this pod - but it helps debugging/testing SDS
          # Should be removed after everything works.
          - emptyDir:
              medium: Memory
            name: local-certs
          - name: istio-token
            projected:
              sources:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 19:22:34 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/informers.go

    	// because we are using `List()` in the handler, without this requeue,
    	// the fake client will sometimes drop pod events leading to test flakes.
    	//
    	// WaitForCacheSync *helps*, but does not entirely fix this problem
    	s.namespaces = kclient.New[*corev1.Namespace](kubeClient)
    	s.namespaces.AddEventHandler(controllers.FromEventHandler(func(o controllers.Event) {
    		s.queue.Add(o)
    	}))
    
    	return s
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Feb 08 01:03:24 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  3. istioctl/pkg/dashboard/dashboard.go

    	dashboardCmd.AddCommand(skywalking)
    
    	envoy := envoyDashCmd(cliContext)
    	envoy.Long += fmt.Sprintf("\n\n%s\n", "Note: envoy command is deprecated and can be replaced with proxy command, "+
    		"e.g. `istioctl dashboard proxy --help`")
    	envoy.PersistentFlags().StringVarP(&labelSelector, "selector", "l", "", "Label selector")
    	envoy.PersistentFlags().IntVar(&proxyAdminPort, "ui-port", util.DefaultProxyAdminPort, "The component dashboard UI port.")
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    //  1. Ignored fields.  It includes many fields which are not generally honored.  For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage.
    //  2. Invalid usage help.  It is impossible to add specific help for individual usage.  In most embedded usages, there are particular
    //     restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted".
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. istioctl/cmd/root_test.go

    	t.Helper()
    
    	if strings.Contains(gotHelpText, flag) != wantExists {
    		if wantExists {
    			t.Errorf("%q flag was expected but not found in help text", flag)
    		} else {
    			t.Errorf("%q flag was found in help text but not expected", flag)
    		}
    	}
    }
    
    func TestHideInheritedFlags(t *testing.T) {
    	const (
    		parentFlag0 = "parent-flag0"
    		parentFlag1 = "parent-flag1"
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jan 15 17:59:55 GMT 2021
    - 2.4K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    * The Kubernetes Service Discovery controller is a bit of a monolith, and spins off a bunch of other sub-controllers in addition to the core service discovery controller.
    
    Because of the monolithic complexity it helps to see this magnified a bit:
    
    ```mermaid
    graph BT
        mcsc("Multicluster Secret")
        scr("Credentials Controller")
        ksd("Kubernetes Service Controller")
        nsc("Namespace Controller")
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  7. bin/diff_yaml.py

                            help="Ignore namespace during comparison")
        parser.add_argument("--ignore-labels", action="store_true", default=False,
                            help="Ignore resource labels during comparison")
        parser.add_argument("--ignore-annotations", action="store_true", default=False,
                            help="Ignore annotations during comparison")
    
        return parser
    
    
    Python
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Mar 03 16:14:57 GMT 2021
    - 4.5K bytes
    - Viewed (0)
  8. .github/pull_request_template.md

    **Please provide a description of this PR:**
    
    
    
    **To help us figure out who should review this PR, please put an X in all the areas that this PR affects.**
    
    - [ ] Ambient
    - [ ] Configuration Infrastructure
    - [ ] Docs
    - [ ] Dual Stack
    - [ ] Installation
    - [ ] Networking
    - [ ] Performance and Scalability
    - [ ] Policies and Telemetry
    - [ ] Security
    - [ ] Test and Release
    - [ ] User Experience
    - [ ] Developer Infrastructure
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Aug 25 14:29:43 GMT 2023
    - 718 bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    # Contribution guidelines
    
    So you want to hack on Istio? Yay! Please refer to Istio's overall
    [contribution guidelines](https://github.com/istio/community/blob/master/CONTRIBUTING.md)
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Nov 27 20:58:34 GMT 2017
    - 214 bytes
    - Viewed (0)
  10. SUPPORT.md

    # Support
    
    Here are some resources to help you understand and use Istio:
    
    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    - To ask questions and get assistance from our community, visit [GitHub Discussions](https://github.com/istio/istio/discussions)
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Feb 12 19:00:41 GMT 2024
    - 411 bytes
    - Viewed (0)
Back to top