Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for kimd (0.07 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/priority_test.go

    				{Group: "one", Version: AnyVersion, Kind: AnyKind},
    				{Group: AnyGroup, Version: "a", Kind: AnyKind},
    			},
    			result: schema.GroupVersionKind{Group: "one", Version: "a", Kind: "first"},
    		},
    		{
    			name: "kind selection",
    			delegate: fixedRESTMapper{kindsFor: []schema.GroupVersionKind{
    				{Group: "one", Version: "a", Kind: "first"},
    				{Group: "one", Version: "a", Kind: "second"},
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 06 15:24:58 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/artifacts/deeply-nested.yaml

    apiVersion: v1
    kind: List
    items:
    - apiVersion: v1
      kind: Pod
    - apiVersion: v1
      kind: Pod
    - apiVersion: v1
      kind: List
      items:
      - apiVersion: v1
        kind: Pod
      - apiVersion: v1
        kind: Pod
      - apiVersion: v1
        kind: List
        items:
        - apiVersion: v1
          kind: Pod
        - apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 314 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller_test.go

    	}
    }
    
    func (b *crdBuilder) SpecNames(plural, singular, kind, listKind string, shortNames ...string) *crdBuilder {
    	b.curr.Spec.Names.Plural = plural
    	b.curr.Spec.Names.Singular = singular
    	b.curr.Spec.Names.Kind = kind
    	b.curr.Spec.Names.ListKind = listKind
    	b.curr.Spec.Names.ShortNames = shortNames
    
    	return b
    }
    
    func (b *crdBuilder) StatusNames(plural, singular, kind, listKind string, shortNames ...string) *crdBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 15.7K bytes
    - Viewed (0)
  4. pkg/config/schema/metadata.yaml

      - kind: "Node"
        plural: "nodes"
        version: "v1"
        clusterScoped: true
        builtin: true
        proto: "k8s.io.api.core.v1.NodeSpec"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "Pod"
        plural: "pods"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.core.v1.PodSpec"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "DaemonSet"
        plural: "daemonsets"
        group: "apps"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/nds.go

    var skippedNdsConfigs = sets.New(
    	kind.Gateway,
    	kind.VirtualService,
    	kind.DestinationRule,
    	kind.Secret,
    	kind.Telemetry,
    	kind.EnvoyFilter,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.MeshConfig,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

          - name: malformed
            kind: Secret
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-backendRef-kind
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example"]
      rules:
      - backendRefs:
        - name: httpbin
          kind: GcsBucket
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. pkg/api/testing/conversion.go

    	}
    	for label := range fields {
    		if label == "name" {
    			t.Logf("FIXME: \"name\" is deprecated by \"metadata.name\", it should be removed from selectable fields of kind=%s", kind)
    			continue
    		}
    		newLabel, newValue, err := legacyscheme.Scheme.ConvertFieldLabel(gvk, label, value)
    		if err != nil {
    			t.Errorf("kind=%s label=%s: got unexpected error: %v", kind, label, err)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml

    kind: HTTPRoute
    metadata:
      name: egress
      namespace: default
    spec:
      parentRefs:
      - kind: ServiceEntry
        group: networking.istio.io
        name: egress
      rules:
      - backendRefs:
        - kind: Hostname
          group: networking.istio.io
          name: google.com
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: egress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      namespace: ns2
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ns1
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ns2
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: random-pod
      namespace: ns1
      labels:
        app: foo
    spec:
      containers:
      - image: proxyv2
    ---
    # some tests for ambient
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. pkg/apis/rbac/v1alpha1/conversion_test.go

    					{Kind: "Group", APIGroup: v1alpha1.GroupName, Name: "mygroup"},
    					{Kind: "ServiceAccount", APIGroup: "", Name: "mysa", Namespace: "myns"},
    					{Kind: "User", APIGroup: v1alpha1.GroupName, Name: "myuser"},
    					{Kind: "Group", APIGroup: v1alpha1.GroupName, Name: "mygroup"},
    					{Kind: "ServiceAccount", APIGroup: "", Name: "mysa", Namespace: "myns"},
    				},
    			},
    		},
    	}
    	for k, tc := range testcases {
    		internal := &rbacapi.RoleBinding{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:23:55 UTC 2017
    - 4K bytes
    - Viewed (0)
Back to top