Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    // necessary to perform the update for the indicated strategy.
    message StatefulSetUpdateStrategy {
      // Type indicates the type of the StatefulSetUpdateStrategy.
      // Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
      // +optional
      optional RollingUpdateStatefulSetStrategy rollingUpdate = 2;
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/waypoint.go

    					Protocol: gateway.ProtocolType(protocol.HBONE),
    				}},
    			},
    		}
    		// Determine which traffic address type to apply the waypoint to, if none is provided it will default to "service"
    		// as the waypoint-for traffic type.
    		if !validTrafficTypes.Contains(trafficType) {
    			return nil, fmt.Errorf("invalid traffic type: %s. Valid options are: %s", trafficType, validTrafficTypes.String())
    		}
    
    		if gw.Labels == nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:40 GMT 2024
    - 15K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        # cluster. The public IP for the gateway will be determined from that remote service (only
        # LoadBalancer gateway service type is currently supported, for a NodePort type gateway service,
        # it still need to be configured manually).
        #
        # meshNetworks:
        #   network1:
        #     endpoints:
        #     - fromCidr: "192.168.0.1/24"
        #     gateways:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe_test.go

    	"istio.io/istio/istioctl/pkg/util/configdump"
    	"istio.io/istio/pilot/test/util"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    // execAndK8sConfigTestCase lets a test case hold some Envoy, Istio, and Kubernetes configuration
    type execAndK8sConfigTestCase struct {
    	k8sConfigs     []runtime.Object // Canned K8s configuration
    	istioConfigs   []runtime.Object // Canned Istio configuration
    	configDumps    map[string][]byte
    	namespace      string
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/tag.go

    	manifestsPath        = ""
    	overwrite            = false
    	skipConfirmation     = false
    	webhookName          = ""
    	autoInjectNamespaces = false
    	outputFormat         = util.TableFormat
    )
    
    type tagDescription struct {
    	Tag        string   `json:"tag"`
    	Revision   string   `json:"revision"`
    	Namespaces []string `json:"namespaces"`
    }
    
    func TagCommand(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  6. cni/pkg/repair/repaircontroller.go

    	events       kclient.EventRecorder
    	repairedPods map[types.NamespacedName]types.UID
    }
    
    func NewRepairController(client kube.Client, cfg config.RepairConfig) (*Controller, error) {
    	c := &Controller{
    		cfg:          cfg,
    		client:       client,
    		events:       kclient.NewEventRecorder(client, "cni-repair"),
    		repairedPods: map[types.NamespacedName]types.UID{},
    	}
    	fieldSelectors := []string{}
    	if cfg.FieldSelectors != "" {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  7. cni/README.md

    capability.
    
    The following example grabs the last 10 `kubelet` logs containing the string "cmdAdd" in the log message.
    
    ```console
    $ gcloud logging read "resource.type=k8s_node AND jsonPayload.SYSLOG_IDENTIFIER=kubelet AND jsonPayload.MESSAGE:cmdAdd" --limit 10 --format json
    ```
    
    ## Other Reference
    
    The framework for this implementation of the CNI plugin is based on the
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top