Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for networkpolicy (0.45 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    			}
    		}
    
    		// In some setups, iptables can make remote network calls(!!). Since these come from a partially initialized pod network namespace,
    		// these calls can be blocked (or NetworkPolicy, etc could block them anyways).
    		// This is triggered by NSS, which allows various things to use arbitrary code to lookup configuration that typically comes from files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. helm/minio/values.yaml

      claimName: "policy"
      scopes: "openid,profile,email"
      redirectUri: "https://console-endpoint-url/oauth_callback"
      # Can leave empty
      claimPrefix: ""
      comment: ""
      displayName: ""
    
    networkPolicy:
      enabled: false
      # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes)
      # or Cilium Network Policies (flavor: cilium)
      flavor: kubernetes
      allowExternal: true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    * As part of the NetworkPolicy "v1" changes, it is also now ([#47123](https://github.com/kubernetes/kubernetes/pull/47123), [@danwinship](https://github.com/danwinship))
        * possible to update the spec field of an existing
        * NetworkPolicy. (Previously you had to delete and recreate a
        * NetworkPolicy if you wanted to change it.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintNetworkPolicy(t *testing.T) {
    	tests := []struct {
    		policy   networking.NetworkPolicy
    		expected []metav1.TableRow
    	}{
    		// Basic network policy with empty spec.
    		{
    			policy: networking.NetworkPolicy{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "policy1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.networking.v1.NetworkPolicy": {
          "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.networking.v1.NetworkPolicy": {
          "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Fixed a bug where `kubectl describe` incorrectly displayed NetworkPolicy port ranges
      (showing only the starting port). ([#123316](https://github.com/kubernetes/kubernetes/pull/123316), [@jcaamano](https://github.com/jcaamano)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    	return common.OpenAPIDefinition{
    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Description: "DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of Pods",
    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.networking.v1.NetworkPolicy": {
          "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    		r, err := printConfigMap(&list.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printNetworkPolicy(obj *networking.NetworkPolicy, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top