Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,945 for Configs (0.12 sec)

  1. cmd/kubeadm/app/cmd/config.go

    				}
    			}
    			return nil
    		},
    		Args: cobra.NoArgs,
    	}
    	cmd.Flags().StringVar(&oldCfgPath, "old-config", "", "Path to the kubeadm config file that is using an old API version and should be converted. This flag is mandatory.")
    	cmd.Flags().StringVar(&newCfgPath, "new-config", "", "Path to the resulting equivalent kubeadm config file using the new API version. Optional, if not specified output will be sent to STDOUT.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/mesh_network_test.go

    	if w.kind == Pod {
    		return w.clusterID, w.buildPodService()
    	}
    	return "", nil
    }
    
    func (w *workload) configs() []config.Config {
    	if w.kind == VirtualMachine {
    		return []config.Config{{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.ServiceEntry,
    				Name:              w.name,
    				Namespace:         w.namespace,
    				CreationTimestamp: time.Now(),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/validatingwebhookconfiguration.yaml

        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    webhooks:
      # Webhook handling per-revision validation. Mostly here so we can determine whether webhooks
      # are rejecting invalid configs on a per-revision basis.
      - name: rev.validation.istio.io
        clientConfig:
          # Should change from base but cannot for API compat
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config.go

    // TODO putting this here for now to deal with circular imports, needs to be moved
    type Cluster interface {
    	cluster.Cluster
    
    	CanDeploy(Config) (Config, bool)
    }
    
    // Configurable is and object that has Config.
    type Configurable interface {
    	Config() Config
    
    	// ServiceName is the name of this service within the namespace.
    	ServiceName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			},
    		},
    	}
    
    	configs := []config.Config{}
    	if c.destRule != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: c.destRule,
    		})
    	}
    	if c.sidecar != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.Sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/discovery_test.go

    	pushesMerged := 10
    	// Number of configs per push
    	configs := 1
    
    	for n := 0; n < b.N; n++ {
    		var req *model.PushRequest
    		for i := 0; i < pushesMerged; i++ {
    			trigger := allTriggers[i%len(allTriggers)]
    			nreq := &model.PushRequest{
    				ConfigsUpdated: sets.New[model.ConfigKey](),
    				Reason:         model.NewReasonStats(trigger),
    			}
    			for c := 0; c < configs; c++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    			return
    		}
    	}
    }
    
    func configsUpdated(req *model.PushRequest) string {
    	configs := ""
    	for key := range req.ConfigsUpdated {
    		configs += key.String()
    		break
    	}
    	if len(req.ConfigsUpdated) > 1 {
    		more := fmt.Sprintf(" and %d more configs", len(req.ConfigsUpdated)-1)
    		configs += more
    	}
    	return configs
    }
    
    func reasonsUpdated(req *model.PushRequest) string {
    	var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	config, err := t.delegate.NewConfig(resource)
    	if err != nil {
    		return nil, err
    	}
    
    	configCopy := *config
    	resourceConfig := configCopy.Config
    	resourceConfig.Transformer = t.resourceTransformers.TransformerForResource(resource)
    	configCopy.Config = resourceConfig
    
    	return &configCopy, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier.go

    // - UNSET will be replaced with the setting from the parent. I.e UNSET port-level config will be
    // replaced with config from workload-level, UNSET in workload-level config will be replaced with
    // one in namespace-level and so on.
    func ComposePeerAuthentication(rootNamespace string, configs []*config.Config) MergedPeerAuthentication {
    	var meshCfg, namespaceCfg, workloadCfg *config.Config
    
    	// Initial outputPolicy is set to a PERMISSIVE.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/validatingwebhookconfiguration.yaml

        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    webhooks:
      # Webhook handling per-revision validation. Mostly here so we can determine whether webhooks
      # are rejecting invalid configs on a per-revision basis.
      - name: rev.validation.istio.io
        clientConfig:
          # Should change from base but cannot for API compat
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top