Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 206 for cmconfig (0.09 sec)

  1. pilot/pkg/config/kube/crd/config.go

    func (in *IstioKind) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    
    	return nil
    }
    
    // IstioObject is a k8s wrapper interface for config objects
    type IstioObject interface {
    	runtime.Object
    	GetSpec() json.RawMessage
    	GetStatus() *json.RawMessage
    	GetObjectMeta() metav1.ObjectMeta
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/config.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cluster
    
    import (
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    type Config struct {
    	Name               string     `yaml:"clusterName,omitempty"`
    	Network            string     `yaml:"network,omitempty"`
    	HTTPProxy          string     `yaml:"httpProxy,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/config.yml

    Tim Hockin <******@****.***> 1629416503 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 142 bytes
    - Viewed (0)
  4. 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)
  5. cmd/kube-controller-manager/app/config/config.go

    limitations under the License.
    */
    
    package config
    
    import (
    	apiserver "k8s.io/apiserver/pkg/server"
    	clientset "k8s.io/client-go/kubernetes"
    	restclient "k8s.io/client-go/rest"
    	"k8s.io/client-go/tools/record"
    	kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"
    )
    
    // Config is the main context object for the controller manager.
    type Config struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 31 09:32:21 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. docs_src/settings/app01/config.py

    Sebastián Ramírez <******@****.***> 1688749933 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 183 bytes
    - Viewed (0)
  7. docs_src/settings/app03/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
        items_per_user: int = 50
    
        class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 204 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/config.yml

    Hiro <******@****.***> 1700673635 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 18:12:58 UTC 2023
    - 179 bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/config/config.go

    	kubeschedulerconfig "k8s.io/kubernetes/pkg/scheduler/apis/config"
    )
    
    // Config has all the context to run a Scheduler
    type Config struct {
    	// ComponentConfig is the scheduler server's configuration object.
    	ComponentConfig kubeschedulerconfig.KubeSchedulerConfiguration
    
    	// LoopbackClientConfig is a config for a privileged loopback connection
    	LoopbackClientConfig *restclient.Config
    
    	Authentication apiserver.AuthenticationInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 09:38:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. pkg/bootstrap/config.go

    	} else if config.EnvoyMetricsServiceAddress != "" { // nolint: staticcheck
    		opts = append(opts, option.EnvoyMetricsServiceAddress(config.EnvoyMetricsService.Address))
    	}
    
    	// Add options for Envoy access log.
    	if config.EnvoyAccessLogService != nil && config.EnvoyAccessLogService.Address != "" {
    		opts = append(opts, option.EnvoyAccessLogServiceAddress(config.EnvoyAccessLogService.Address),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top