Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 187 for networkpolicy (0.28 sec)

  1. pkg/registry/networking/networkpolicy/strategy_test.go

    limitations under the License.
    */
    
    package networkpolicy
    
    import (
    	"context"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/apis/networking"
    )
    
    func makeNetworkPolicy(isIngress, isEgress, hasEndPort bool) *networking.NetworkPolicy {
    
    	protocolTCP := api.ProtocolTCP
    	endPort := int32(32000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types_test.go

    	obj := reflect.ValueOf(NetworkPolicy{}).Type()
    	for i := 0; i < obj.NumField(); i++ {
    		f := obj.Field(i)
    		protobufSpec := f.Tag.Get("protobuf")
    		if protobufSpec == "" {
    			continue
    		}
    
    		protobufNum := strings.Split(protobufSpec, ",")[1]
    		if protobufNum == "3" {
    			t.Errorf("protobuf 3 in NetworkPolicy is reserved for removed status field")
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/registry/networking/networkpolicy/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 14:11:01 UTC 2017
    - 661 bytes
    - Viewed (0)
  4. helm/minio/templates/NOTES.txt

    Alternately, you can use your browser or the MinIO SDK to access the server - https://min.io/docs/minio/linux/reference/minio-server/minio-server.html
    {{- end }}
    
    {{ if and (.Values.networkPolicy.enabled) (not .Values.networkPolicy.allowExternal) }}
    Note: Since NetworkPolicy is enabled, only pods with label
    {{ template "minio.fullname" . }}-client=true"
    will be able to connect to this minio cluster.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1/generated.proto

      // and value of the "Host" header is used for routing.
      // +optional
      optional string secretName = 2;
    }
    
    // NetworkPolicy describes what network traffic is allowed for a set of Pods
    message NetworkPolicy {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. pkg/apis/networking/types.go

    // NetworkPolicy describes what network traffic is allowed for a set of pods
    type NetworkPolicy struct {
    	metav1.TypeMeta
    
    	// +optional
    	metav1.ObjectMeta
    
    	// spec represents the specification of the desired behavior for this NetworkPolicy.
    	// +optional
    	Spec NetworkPolicySpec
    }
    
    // PolicyType describes the NetworkPolicy type
    // This type is beta-level in 1.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/types_test.go

    	obj := reflect.ValueOf(NetworkPolicy{}).Type()
    	for i := 0; i < obj.NumField(); i++ {
    		f := obj.Field(i)
    		protobufSpec := f.Tag.Get("protobuf")
    		if protobufSpec == "" {
    			continue
    		}
    
    		protobufNum := strings.Split(protobufSpec, ",")[1]
    		if protobufNum == "3" {
    			t.Errorf("protobuf 3 in NetworkPolicy is reserved for removed status field")
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tests/integration/ambient/testdata/only-hbone.yaml

    apiVersion: networking.k8s.io/v1
    kind: NetworkPolicy
    metadata:
      name: only-hbone
    spec:
      policyTypes:
      - Ingress
      ingress:
      - ports:
        - protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 175 bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                by the rule. \n For NetworkPolicy, an empty NamespaceSelector
                                implies that the Selector is limited to selecting only
                                workload endpoints in the same namespace as the NetworkPolicy.
                                \n For NetworkPolicy, `global()` NamespaceSelector implies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/types.go

    }
    
    // PolicyType string describes the NetworkPolicy type
    // This type is beta-level in 1.8
    // +enum
    type PolicyType string
    
    const (
    	// PolicyTypeIngress is a NetworkPolicy that affects ingress traffic on selected pods
    	PolicyTypeIngress PolicyType = "Ingress"
    	// PolicyTypeEgress is a NetworkPolicy that affects egress traffic on selected pods
    	PolicyTypeEgress PolicyType = "Egress"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top