Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 82 for APIGroups (0.31 sec)

  1. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

          path: "{{ .injectionPath }}"
          port: 443
        {{- end }}
        {{- if .caBundle }}
        caBundle: "{{ .caBundle }}"
        {{- end }}
      sideEffects: None
      rules:
      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      reinvocationPolicy: "{{ .reinvocationPolicy }}"
      admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

          path: "{{ .injectionPath }}"
          port: 443
        {{- end }}
        {{- if .caBundle }}
        caBundle: "{{ .caBundle }}"
        {{- end }}
      sideEffects: None
      rules:
      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      reinvocationPolicy: "{{ .reinvocationPolicy }}"
      admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

      - apiGroups: ["networking.k8s.io"]
        resources:
          - networkpolicies
        verbs:
          - watch
          - list
      # Used by Calico for policy information.
      - apiGroups: [""]
        resources:
          - pods
          - namespaces
          - serviceaccounts
        verbs:
          - list
          - watch
      # The CNI plugin patches pods/status.
      - apiGroups: [""]
        resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// Required.
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// `apiGroups` is a list of matching API groups and may not be empty.
    	// "*" matches all API groups and, if present, must be the only entry.
    	// +listType=set
    	// Required.
    	APIGroups []string `json:"apiGroups" protobuf:"bytes,2,rep,name=apiGroups"`
    
    	// `resources` is a list of matching resources (i.e., lowercase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	if len(rule.APIGroups) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("apiGroups"), ""))
    	}
    	if len(rule.APIGroups) > 1 && hasWildcard(rule.APIGroups) {
    		allErrors = append(allErrors, field.Invalid(fldPath.Child("apiGroups"), rule.APIGroups, "if '*' is present, must not specify other API groups"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/dns_test.go

        k8s-app: kube-dns
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: system:coredns
    rules:
    - apiGroups:
      - ""
      resources:
      - endpoints
      - services
      - pods
      - namespaces
      verbs:
      - list
      - watch
    - apiGroups:
      - discovery.k8s.io
      resources:
      - endpointslices
      verbs:
      - list
      - watch
    ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		}
    	}
    	if gvks.Len() == 0 {
    		return nil
    	}
    	return sortGVKList(gvks.UnsortedList())
    }
    
    func extractGroups(rule *v1.Rule) []string {
    	groups := make([]string, 0, len(rule.APIGroups))
    	for _, group := range rule.APIGroups {
    		// give up if wildcard
    		if strings.ContainsAny(group, "*") {
    			return nil
    		}
    		groups = append(groups, group)
    	}
    	return groups
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: "/inject"
      sideEffects: None
      rules:
      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      admissionReviewVersions: ["v1beta1", "v1"]
      namespaceSelector:
        matchLabels:
          istio-injection: enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    									},
    								},
    							},
    						},
    					},
    					"apiGroups": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "atomic",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// external (public internet) URLs for this GenericAPIServer.
    	ExternalAddress string
    
    	// Serializer controls how common API objects not in a group/version prefix are serialized for this server.
    	// Individual APIGroups may define their own serializers.
    	Serializer runtime.NegotiatedSerializer
    
    	// "Outputs"
    	// Handler holds the handlers being used by this API server
    	Handler *APIServerHandler
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top