Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 192 for KubeConfig (1.15 sec)

  1. tools/bug-report/pkg/config/config.go

    	RequestConcurrency int `json:"requestConcurrency,omitempty"`
    }
    
    func (b *BugReportConfig) String() string {
    	out := ""
    	if b.KubeConfigPath != "" {
    		out += fmt.Sprintf("kubeconfig: %s\n", b.KubeConfigPath)
    	}
    	if b.Context != "" {
    		out += fmt.Sprintf("context: %s\n", b.Context)
    	}
    	out += fmt.Sprintf("istio-namespace: %s\n", b.IstioNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/types.go

    	UnsafeSkipCAVerification bool
    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string
    }
    
    // GetControlPlaneImageRepository returns name of image repository
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	UnsafeSkipCAVerification bool `json:"unsafeSkipCAVerification,omitempty"`
    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string `json:"kubeConfigPath"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    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 kubeconfig
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"reflect"
    	"testing"
    
    	clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
    )
    
    const (
    	configOut1 = `apiVersion: v1
    clusters:
    - cluster:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. cni/test/install_cni.go

    			K8sServicePort:        "443",
    			K8sServiceHost:        "10.110.0.1",
    			MonitoringPort:        0,
    			LogUDSAddress:         "",
    			KubeconfigFilename:    "ZZZ-istio-cni-kubeconfig",
    			CNINetDir:             "/etc/cni/net.d",
    			ChainedCNIPlugin:      chainedCNIPlugin,
    			PluginLogLevel:        "debug",
    			ExcludeNamespaces:     "istio-system",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    	InsecureKubeConfigOptions = func() sets.String {
    		v := env.Register(
    			"PILOT_INSECURE_MULTICLUSTER_KUBECONFIG_OPTIONS",
    			"",
    			"Comma separated list of potentially insecure kubeconfig authentication options that are allowed for multicluster authentication."+
    				"Support values: all authProviders (`gcp`, `azure`, `exec`, `openstack`), "+
    				"`clientKey`, `clientCertificate`, `tokenFile`, and `exec`.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/plan.go

    }
    
    var upgradePlanLongDesc = cmdutil.LongDesc(`
    	Check which versions are available to upgrade to and validate whether your current cluster is upgradeable.
    	This command can only run on the control plane nodes where the kubeconfig file "admin.conf" exists.
    	To skip the internet check, pass in the optional [version] parameter.
    `)
    
    // newCmdPlan returns the cobra command for `kubeadm upgrade plan`
    func newCmdPlan(apf *applyPlanFlags) *cobra.Command {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/server.go

    		cc.Client,
    		cc.InformerFactory,
    		cc.DynInformerFactory,
    		recorderFactory,
    		scheduler.WithComponentConfigVersion(cc.ComponentConfig.TypeMeta.APIVersion),
    		scheduler.WithKubeConfig(cc.KubeConfig),
    		scheduler.WithProfiles(cc.ComponentConfig.Profiles...),
    		scheduler.WithPercentageOfNodesToScore(cc.ComponentConfig.PercentageOfNodesToScore),
    		scheduler.WithFrameworkOutOfTreeRegistry(outOfTreeRegistry),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		}
    	}
    
    	// if controller-manager, renew the certificate embedded in the controller-manager kubeConfig file
    	if component == constants.KubeControllerManager {
    		certificates = []string{
    			constants.ControllerManagerKubeConfigFileName,
    		}
    	}
    
    	// if scheduler, renew the certificate embedded in the scheduler kubeConfig file
    	if component == constants.KubeScheduler {
    		certificates = []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/types.go

    	metav1.TypeMeta
    
    	// featureGates is a map of feature names to bools that enable or disable alpha/experimental features.
    	FeatureGates map[string]bool
    
    	// clientConnection specifies the kubeconfig file and client connection settings for the proxy
    	// server to use when communicating with the apiserver.
    	ClientConnection componentbaseconfig.ClientConnectionConfiguration
    	// logging specifies the options of logging.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top