Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for calling (0.2 sec)

  1. cni/pkg/nodeagent/net_test.go

    	assert.NoError(t, err)
    	fakeIPSetDeps.AssertExpectations(t)
    }
    
    // for tests that call `runtime.GC()` - we have no control over when the GC is actually scheduled,
    // and it is flake-prone to check for closure after calling it, this retries for a bit to make
    // sure the netns is closed eventually.
    func assertNSClosed(t *testing.T, closed *atomic.Bool) {
    	for i := 0; i < 5; i++ {
    		if closed.Load() {
    			return
    		}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 14.3K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net.go

    	err = addPodToHostNSIpset(pod, podIPs, &s.hostsideProbeIPSet)
    	if err != nil {
    		log.Errorf("failed to add pod to ipset: %s/%s %v", pod.Namespace, pod.Name, err)
    		return err
    	}
    
    	log.Debug("calling CreateInpodRules")
    	if err := s.netnsRunner(openNetns, func() error {
    		return s.iptablesConfigurator.CreateInpodRules(&HostProbeSNATIP)
    	}); err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  3. .github/ISSUE_TEMPLATE/config.yml

    contact_links:
    - name: "Crash bug"
      url: https://istio.io/about/security-vulnerabilities/
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 05 18:48:44 GMT 2020
    - 196 bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // diskName is the Name of the data disk in the blob storage
      optional string diskName = 1;
    
      // diskURI is the URI of data disk in the blob storage
      optional string diskURI = 2;
    
      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. licenses/github.com/davecgh/go-spew/LICENSE

    ISC License
    
    Copyright (c) 2012-2016 Dave Collins <******@****.***>
    
    Permission to use, copy, modify, and/or distribute this software for any
    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.
    
    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 766 bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

          excludeInboundPorts: ""
          includeInboundPorts: "*"
    
          # istio egress capture allowlist
          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
          # example: includeIPRanges: "172.30.0.0/16,172.20.0.0/16"
          # would only capture egress traffic on those two IP Ranges, all other outbound traffic would
          # be allowed by the sidecar
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  7. common/scripts/kind_provisioner.sh

    # as specified in cluster topology configuration file.
    # 1. IMAGE = docker image used as node by KinD
    # 2. IP_FAMILY = either ipv4 or ipv6
    #
    # NOTE: Please call load_cluster_topology before calling this method as it expects
    # cluster topology information to be loaded in advance
    function setup_kind_clusters() {
      IMAGE="${1:-"${DEFAULT_KIND_IMAGE}"}"
      KUBECONFIG_DIR="${ARTIFACTS:-$(mktemp -d)}/kubeconfig"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  8. architecture/security/istio-agent.md

    1. When `GenerateSecret` is called, the `SecretManager` is expected to return a new certificate. This can occur in a few ways.
       1. The most common method (pictured above) is to sign a new certificate by calling the configured CA. Typically, this is Istiod.
       1. If the certificate is not yet expired, the `SecretManager` also can return a cache response. In practice, this would
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Aug 22 16:45:50 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/values.yaml

          excludeInboundPorts: ""
          includeInboundPorts: "*"
          # istio egress capture allowlist
          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
          # example: includeIPRanges: "172.30.0.0/16,172.20.0.0/16"
          # would only capture egress traffic on those two IP Ranges, all other outbound traffic would
          # be allowed by the sidecar
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    istio ingress capture allowlist # examples: # Redirect only selected ports: --includeInboundPorts="80,8080" excludeInboundPorts: "" includeInboundPorts: "*" # istio egress capture allowlist # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly # example: includeIPRanges: "172.30.0.0/16,172.20.0.0/16" # would only capture egress traffic on those two IP Ranges, all other outbound traffic would # be allowed by the sidecar includeIPRanges: "*" excludeIPRanges: ""...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top