Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for 3723004 (0.12 sec)

  1. pkg/proxy/nftables/proxier_test.go

    	expected = baseRules + dedent.Dedent(`
    		add element ip kube-proxy cluster-ips { 172.30.0.41 }
    		add element ip kube-proxy cluster-ips { 172.30.0.42 }
    		add element ip kube-proxy cluster-ips { 172.30.0.43 }
    		add element ip kube-proxy service-ips { 172.30.0.41 . tcp . 80 : goto service-ULMVA6XW-ns1/svc1/tcp/p80 }
    		add element ip kube-proxy service-ips { 172.30.0.42 . tcp . 8080 : goto service-MHHHYRWA-ns2/svc2/tcp/p8080 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    		-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 -j KUBE-SVC-XPGD46QRK7WJZT7O
    		-A KUBE-SERVICES -m comment --comment "ns2/svc2:p8080 cluster IP" -m tcp -p tcp -d 172.30.0.42 --dport 8080 -j KUBE-SVC-2VJB64SDSIJUP5T6
    		-A KUBE-SERVICES -m comment --comment "ns3/svc3:p80 cluster IP" -m tcp -p tcp -d 172.30.0.43 --dport 80 -j KUBE-SVC-X27LE4BHSL4DOUIK
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/helpers_test.go

    	add element ip testing service-ips { 172.30.0.41 . tcp . 80 : goto service-ULMVA6XW-ns1/svc1/tcp/p80 }
    
    	# svc2
    	add chain ip testing service-42NFTM6N-ns2/svc2/tcp/p80
    	add rule ip testing service-42NFTM6N-ns2/svc2/tcp/p80 ip daddr 172.30.0.42 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1 == duration('1h2m') + duration('3s4ms')",
    				"self.val1.getHours() == 1",
    				"self.val1.getMinutes() == 62",
    				"self.val1.getSeconds() == 3723",
    				"self.val1.getMilliseconds() == 3723004",
    				"type(self.val1) == google.protobuf.Duration",
    			},
    			errors: map[string]string{
    				"duration('1')":                      "compilation failed: ERROR: <input>:1:10: invalid duration argument",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    }
    
    func TestManifestGenerateFlagsSetValues(t *testing.T) {
    	g := NewWithT(t)
    	m, _, err := generateManifest("default", "-s values.global.proxy.image=myproxy -s values.global.proxy.includeIPRanges=172.30.0.0/16,172.21.0.0/16", liveCharts,
    		[]string{"templates/deployment.yaml", "templates/istiod-injector-configmap.yaml"})
    	if err != nil {
    		t.Fatal(err)
    	}
    	objs, err := parseObjectSetFromManifest(m)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

          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: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

          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: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // Examples: my-proxy (uses global.hub/tag), docker.io/myrepo/my-proxy:v1.0.0
      string image = 14;
    
      // Lists the IP ranges of Istio egress traffic that the sidecar captures.
      //
      // Example: "172.30.0.0/16,172.20.0.0/16"
      // This would only capture egress traffic on those two IP Ranges, all other outbound traffic would # be allowed by the sidecar."
      string includeIPRanges = 16;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	minimumAllowedReplicas = hpaMinReplicas
    
    	// Do not scaleup too much to prevent incorrect rapid increase of the number of master replicas caused by
    	// bogus CPU usage report from heapster/kubelet (like in issue #32304).
    	scaleUpLimit := calculateScaleUpLimit(currentReplicas)
    
    	if hpaMaxReplicas > scaleUpLimit {
    		maximumAllowedReplicas = scaleUpLimit
    		possibleLimitingCondition = "ScaleUpLimit"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	}
    
    	c.ctxt.Diag("bad load opcode %v", a)
    	return 0
    }
    
    /*
     * indexed load a(b),d
     */
    func (c *ctxt9) oploadx(a obj.As) uint32 {
    	switch a {
    	case AMOVWZ:
    		return OPVCC(31, 23, 0, 0) /* lwzx */
    	case AMOVWZU:
    		return OPVCC(31, 55, 0, 0) /* lwzux */
    	case AMOVW:
    		return OPVCC(31, 341, 0, 0) /* lwax */
    	case AMOVWU:
    		return OPVCC(31, 373, 0, 0) /* lwaux */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top