Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 291 for type (0.14 sec)

  1. manifests/charts/gateway/values.schema.json

              "type": "object"
            },
            "labels": {
              "type": "object"
            },
            "name": {
              "type": "string"
            },
            "nodeSelector": {
              "type": "object"
            },
            "podAnnotations": {
              "type": "object",
              "properties": {
                "inject.istio.io/templates": {
                  "type": "string"
                },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 18 16:33:33 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                          type: object
                          x-kubernetes-map-type: atomic
                        type: array
                    type: object
                required:
                - addresses
                type: object
              status:
                description: IPAddressPoolStatus defines the observed state of IPAddressPool.
                type: object
            required:
            - spec
            type: object
        served: true
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  3. cni/test/testdata/pre/calico.conflist

      "plugins": [
        {
          "etcd_endpoints": "http://10.110.0.136:6666",
          "ipam": {
            "type": "calico-ipam"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          },
          "log_level": "info",
          "mtu": 1500,
          "policy": {
            "type": "k8s"
          },
          "type": "calico"
        },
        {
          "capabilities": {
            "portMappings": true
          },
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 521 bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    }
    
    // MetricSpec specifies how to scale based on a single metric
    // (only `type` and one other matching field should be set at once).
    message MetricSpec {
      // type is the type of metric source.  It should be one of "ContainerResource", "External",
      // "Object", "Pods" or "Resource", each mapping to a matching field in the object.
      // Note: "ContainerResource" type is available on when the feature-gate
      // HPAContainerMetrics is enabled
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    }
    
    // MetricSpec specifies how to scale based on a single metric
    // (only `type` and one other matching field should be set at once).
    message MetricSpec {
      // type is the type of metric source.  It should be one of "ContainerResource",
      // "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object.
      // Note: "ContainerResource" type is available on when the feature-gate
      // HPAContainerMetrics is enabled
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  6. cni/pkg/install/cniconfig.go

    	"istio.io/istio/cni/pkg/config"
    	"istio.io/istio/cni/pkg/util"
    	"istio.io/istio/pkg/file"
    )
    
    type pluginConfig struct {
    	mountedCNINetDir string
    	cniConfName      string
    	chainedCNIPlugin bool
    }
    
    type cniConfigTemplate struct {
    	cniNetworkConfigFile string
    	cniNetworkConfig     string
    }
    
    type cniConfigVars struct {
    	cniNetDir          string
    	kubeconfigFilename string
    	logLevel           string
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/informers_test.go

    		constants.DataplaneMode, constants.DataplaneModeAmbient))
    	_, err := client.Kube().CoreV1().Namespaces().Patch(ctx, ns.Name,
    		types.MergePatchType, labelsPatch, metav1.PatchOptions{})
    	assert.NoError(t, err)
    
    	// wait until at least one add event happens
    	mt.Assert(EventTotals.Name(), map[string]string{"type": "add"}, monitortest.AtLeast(1))
    
    	assertPodNotAnnotated(t, client, pod)
    
    	// Assert expected calls (not) actually made
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 08 01:03:24 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/pilot/status.go

    	"istio.io/istio/pkg/log"
    )
    
    // XdsStatusWriter enables printing of sync status using multiple xdsapi.DiscoveryResponse Istiod responses
    type XdsStatusWriter struct {
    	Writer                 io.Writer
    	Namespace              string
    	InternalDebugAllIstiod bool
    }
    
    type xdsWriterStatus struct {
    	proxyID               string
    	clusterID             string
    	istiodID              string
    	istiodVersion         string
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

    //     and the version of the actual struct is irrelevant.
    //  5. We cannot easily change it.  Because this type is embedded in many locations, updates to this type
    //     will affect numerous schemas.  Don't make new APIs embed an underspecified API type they do not control.
    //
    // Instead of using this type, create a locally provided and used type that is well-focused on your reference.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/ztunnelserver.go

    	}
    	log.Debug("accepted conn")
    	return newZtunnelConnection(conn), nil
    }
    
    type updateResponse struct {
    	err  error
    	resp *zdsapi.WorkloadResponse
    }
    
    type updateRequest struct {
    	Update []byte
    	Fd     *int
    
    	Resp chan updateResponse
    }
    
    type ZtunnelConnection struct {
    	u       *net.UnixConn
    	Updates chan updateRequest
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
Back to top