Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for kimd (0.11 sec)

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

    	{Group: "", Kind: "Namespace"}:        true,
    	{Group: "", Kind: "PersistentVolume"}: true,
    	{Group: "", Kind: "ComponentStatus"}:  true,
    
    	{Group: "rbac.authorization.k8s.io", Kind: "ClusterRole"}:        true,
    	{Group: "rbac.authorization.k8s.io", Kind: "ClusterRoleBinding"}: true,
    
    	{Group: "scheduling.k8s.io", Kind: "PriorityClass"}: true,
    
    	{Group: "storage.k8s.io", Kind: "StorageClass"}:     true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/proxy_dependencies_test.go

    	}
    
    	sidecarScopeKindNames := map[kind.Kind]string{
    		kind.ServiceEntry: svcName, kind.VirtualService: vsName, kind.DestinationRule: drName, kind.Sidecar: scName,
    	}
    	for kind, name := range sidecarScopeKindNames {
    		sidecar.SidecarScope.AddConfigDependencies(model.ConfigKey{Kind: kind, Name: name, Namespace: nsName}.HashCode())
    	}
    	for kind := range UnAffectedConfigKinds[model.SidecarProxy] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AccessRule.java

     */
    public class AccessRule {
        private String kind;
        private String pattern;
    
        public AccessRule(String kind, String pattern) {
            this.kind = Preconditions.checkNotNull(kind);
            this.pattern = Preconditions.checkNotNull(pattern);
        }
    
        public String getKind() {
            return kind;
        }
    
        public void setKind(String kind) {
            this.kind = kind;
        }
    
        public String getPattern() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/ParameterMatchEntry.java

     * 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.
     */
    
    package org.gradle.internal.instrumentation.processor.codegen.groovy;
    
    import org.objectweb.asm.Type;
    
    import java.util.Objects;
    
    class ParameterMatchEntry {
        final Type type;
        final Kind kind;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: reviews
      namespace: default
    spec:
      ports:
      - port: 42
        name: tcp-test
        protocol: TCP
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: reviews-2port
      namespace: default
    spec:
      ports:
      - port: 80
        name: http-test
        protocol: HTTP
      - port: 443
        name: https-test
        protocol: HTTPS
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top