Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for Drop (0.16 sec)

  1. pkg/proxy/nftables/proxier.go

    		),
    		Comment: ptr.To("Reject traffic to invalid ports of ClusterIPs"),
    	})
    
    	// drop traffic to unallocated ClusterIPs.
    	if len(proxier.serviceCIDRs) > 0 {
    		tx.Add(&knftables.Rule{
    			Chain: clusterIPsCheckChain,
    			Rule: knftables.Concat(
    				ipX, "daddr", "{", proxier.serviceCIDRs, "}",
    				"drop",
    			),
    			Comment: ptr.To("Drop traffic to unallocated ClusterIPs"),
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    		t.Fatalf("Failed to drop view, got %v", err)
    	}
    
    	query = DB.Model(&User{}).Where("age > ?", 20)
    	if err := DB.Migrator().CreateView("users_view", gorm.ViewOption{Query: query}); err != nil {
    		t.Fatalf("Failed to crate view, got %v", err)
    	}
    	if err := DB.Migrator().DropView("users_view"); err != nil {
    		t.Fatalf("Failed to drop view, got %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    					"-m", protocol, "-p", protocol,
    					"-d", lbip.String(),
    					"--dport", strconv.Itoa(svcInfo.Port()),
    					"-j", "DROP")
    			}
    		}
    		if !hasExternalEndpoints {
    			// Either no endpoints at all (REJECT) or no endpoints for
    			// external traffic (DROP anything that didn't get short-circuited
    			// by the EXT chain.)
    			for _, lbip := range svcInfo.LoadBalancerVIPs() {
    				filterRules.Write(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodTemplate.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.json

                    "securityContext": {
                      "capabilities": {
                        "add": [
                          "addValue"
                        ],
                        "drop": [
                          "dropValue"
                        ]
                      },
                      "privileged": true,
                      "seLinuxOptions": {
                        "user": "userValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.3K bytes
    - Viewed (0)
Back to top