Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for config2 (0.29 sec)

  1. 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)
  2. pkg/config/validation/validation.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/gateway"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/security"
    	"istio.io/istio/pkg/config/validation/agent"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/jwt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    			var cfg *config.Config
    			if tt.destRule != nil {
    				cfg = &config.Config{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    						Name:             "acme",
    						Namespace:        "default",
    					},
    					Spec: tt.destRule,
    				}
    			}
    			cg := NewConfigGenTest(t, TestOptions{
    				ConfigPointers: []*config.Config{cfg},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    }
    
    # $1: if 'true', we're rendering config for a master, else a node
    function build-kubelet-config {
      local master="$1"
      local os="$2"
      local file="$3"
    
      rm -f "${file}"
      {
        print-common-kubelet-config
        if [[ "${master}" == "true" ]]; then
          print-master-kubelet-config
        else
          print-common-node-kubelet-config
          if [[ "${os}" == "linux" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    EOF
    }
    
    function create-kube-scheduler-config {
      echo "Creating kube-scheduler config file"
      mkdir -p /etc/srv/kubernetes/kube-scheduler
      cat <<EOF >/etc/srv/kubernetes/kube-scheduler/config
    ${KUBE_SCHEDULER_CONFIG}
    EOF
    }
    
    # TODO(#92143): Remove legacy policy config creation once kube-scheduler config is GA.
    function create-kubescheduler-policy-config {
      echo "Creating kube-scheduler policy config file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// source of all configuration
    	cfg := config.NewPodConfig(config.PodConfigNotificationIncremental, kubeDeps.Recorder, kubeDeps.PodStartupLatencyTracker)
    
    	// TODO:  it needs to be replaced by a proper context in the future
    	ctx := context.TODO()
    
    	// define file config source
    	if kubeCfg.StaticPodPath != "" {
    		klog.InfoS("Adding static pod path", "path", kubeCfg.StaticPodPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		return err
    	}
    
    	// Prepare Go import config.
    	// We start it off with a comment so it can't be empty, so icfg.Bytes() below is never nil.
    	// It should never be empty anyway, but there have been bugs in the past that resulted
    	// in empty configs, which then unfortunately turn into "no config passed to compiler",
    	// and the compiler falls back to looking in pkg itself, which mostly works,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	}
    }
    
    type replicationConfig struct {
    	Config  *replication.Config
    	remotes *madmin.BucketTargets
    }
    
    func (c replicationConfig) Empty() bool {
    	return c.Config == nil
    }
    
    func (c replicationConfig) Replicate(opts replication.ObjectOpts) bool {
    	return c.Config.Replicate(opts)
    }
    
    // Resync returns true if replication reset is requested
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    			featuregatetesting.SetFeatureGateDuringTest(t, feature.DefaultFeatureGate, features.JobPodFailurePolicy, tc.jobPodFailurePolicy)
    			// job manager setup
    			clientSet := clientset.NewForConfigOrDie(&restclient.Config{Host: "", ContentConfig: restclient.ContentConfig{GroupVersion: &schema.GroupVersion{Group: "", Version: "v1"}}})
    
    			var fakeClock clock.WithTicker
    			if tc.controllerTime != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	// in-cluster-config for pod clients
    	if !kubetypes.IsStaticPod(pod) && !kl.serviceHasSynced() {
    		return nil, fmt.Errorf("services have not yet been read at least once, cannot construct envvars")
    	}
    
    	var result []kubecontainer.EnvVar
    	// Note:  These are added to the docker Config, but are not included in the checksum computed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top