Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for networkpolicy (0.17 sec)

  1. helm/minio/README.md

    ```
    
    ### NetworkPolicy
    
    To enable network policy for MinIO,
    install [a networking plugin that implements the Kubernetes
    NetworkPolicy spec](https://kubernetes.io/docs/tasks/administer-cluster/declare-network-policy#before-you-begin),
    and set `networkPolicy.enabled` to `true`.
    
    For Kubernetes v1.5 & v1.6, you must also turn on NetworkPolicy by setting
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pkg/apis/networking/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.NetworkPolicy)(nil), (*networking.NetworkPolicy)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_NetworkPolicy_To_networking_NetworkPolicy(a.(*v1.NetworkPolicy), b.(*networking.NetworkPolicy), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    var map_NetworkPolicy = map[string]string{
    	"":         "NetworkPolicy describes what network traffic is allowed for a set of Pods",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "spec represents the specification of the desired behavior for this NetworkPolicy.",
    }
    
    func (NetworkPolicy) SwaggerDoc() map[string]string {
    	return map_NetworkPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/zz_generated.deepcopy.go

    func (in *NetworkPolicy) DeepCopyInto(out *NetworkPolicy) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicy.
    func (in *NetworkPolicy) DeepCopy() *NetworkPolicy {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 20K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/globalnetworkpolicy-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
    - 45.2K bytes
    - Viewed (0)
  7. helm-releases/minio-1.0.2.tgz

    http: paths: - path: {{ $ingressPath }} backend: serviceName: {{ $fullName }} servicePort: {{ $servicePort }} {{- if . }} host: {{ . | quote }} {{- end }} {{- end }} {{- end }} minio/templates/networkpolicy.yaml {{- if .Values.networkPolicy.enabled }} kind: NetworkPolicy apiVersion: {{ template "minio.networkPolicy.apiVersion" . }} metadata: name: {{ template "minio.fullname" . }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 24 18:58:05 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  8. helm-releases/minio-2.0.1.tgz

    http: paths: - path: {{ $ingressPath }} backend: serviceName: {{ $fullName }} servicePort: {{ $servicePort }} {{- if . }} host: {{ . | quote }} {{- end }} {{- end }} {{- end }} minio/templates/networkpolicy.yaml {{- if .Values.networkPolicy.enabled }} kind: NetworkPolicy apiVersion: {{ template "minio.networkPolicy.apiVersion" . }} metadata: name: {{ template "minio.fullname" . }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/policy/v1/doc.go

    // +k8s:openapi-gen=true
    // +k8s:prerelease-lifecycle-gen=true
    
    // Package policy is for any kind of policy object.  Suitable examples, even if
    // they aren't all here, are PodDisruptionBudget,
    // NetworkPolicy, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 890 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1beta1/doc.go

    // +k8s:openapi-gen=true
    // +k8s:prerelease-lifecycle-gen=true
    
    // Package policy is for any kind of policy object.  Suitable examples, even if
    // they aren't all here, are PodDisruptionBudget,
    // NetworkPolicy, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 900 bytes
    - Viewed (0)
Back to top