Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 206 for cmconfig (0.1 sec)

  1. pkg/config/analysis/analyzers/util/config.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"istio.io/istio/pkg/config/resource"
    )
    
    // IsIstioControlPlane returns true for resources that are part of the Istio control plane
    func IsIstioControlPlane(r *resource.Instance) bool {
    	if _, ok := r.Metadata.Labels["istio"]; ok {
    		return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:58 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/config/config.go

    // BugReportConfig controls what is captured and Include in the kube-capture tool
    // archive.
    type BugReportConfig struct {
    	// KubeConfigPath is the path to kube config file.
    	KubeConfigPath string `json:"kubeConfigPath,omitempty"`
    	// Context is the cluster Context in the kube config
    	Context string `json:"context,omitempty"`
    
    	// IstioNamespace is the namespace where the istio control plane is installed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. tools/istio-clean-iptables/pkg/config/config.go

    // limitations under the License.
    
    package config
    
    import (
    	"encoding/json"
    	"fmt"
    	"os/user"
    
    	"github.com/miekg/dns"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	types "istio.io/istio/tools/istio-iptables/pkg/config"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func DefaultConfig() *Config {
    	return &Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. internal/config/lambda/config.go

    // Config - lambda target configuration structure, holds
    // information about various lambda targets.
    type Config struct {
    	Webhook map[string]target.WebhookArgs `json:"webhook"`
    }
    
    const (
    	defaultTarget = "1"
    )
    
    // NewConfig - initialize lambda config.
    func NewConfig() Config {
    	// Make sure to initialize lambda targets
    	cfg := Config{
    		Webhook: make(map[string]target.WebhookArgs),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. internal/config/subnet/config.go

    		}
    	}
    }
    
    // LookupConfig - lookup config and override with valid environment settings if any.
    func LookupConfig(kvs config.KVS, transport http.RoundTripper) (cfg Config, err error) {
    	if err = config.CheckValidKeys(config.SubnetSubSys, kvs, DefaultKVS); err != nil {
    		return cfg, err
    	}
    
    	var proxyURL *xnet.URL
    	proxy := env.Get(config.EnvMinIOSubnetProxy, kvs.Get(config.Proxy))
    	if len(proxy) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. internal/event/config.go

    	var config Config
    
    	if err := xml.NewDecoder(reader).Decode(&config); err != nil {
    		return nil, err
    	}
    
    	if err := config.Validate(region, targetList); err != nil {
    		return nil, err
    	}
    
    	config.SetRegion(region)
    	// If xml namespace is empty, set a default value before returning.
    	if config.XMLNS == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/config.go

    )
    
    func init() {
    	install.Install(scheme)
    }
    
    // LoadConfiguration loads the provided configuration.
    func LoadConfiguration(config io.Reader) (*resourcequotaapi.Configuration, error) {
    	// if no config is provided, return a default configuration
    	if config == nil {
    		externalConfig := &resourcequotav1.Configuration{}
    		scheme.Default(externalConfig)
    		internalConfig := &resourcequotaapi.Configuration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    	}
    	return allErrs
    }
    
    func validateTCPConnection(tcpConfig *apiserver.TCPTransport, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if strings.HasPrefix(tcpConfig.URL, "http://") {
    		if tcpConfig.TLSConfig != nil {
    			allErrs = append(allErrs, field.Invalid(
    				fldPath.Child("tlsConfig"),
    				"nil",
    				"TLSConfig config should not be present when using HTTP"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/config.yml

    Sebastián Ramírez <******@****.***> 1675173772 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 31 14:02:52 UTC 2023
    - 930 bytes
    - Viewed (0)
  10. docs_src/settings/app02/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
    - 159 bytes
    - Viewed (0)
Back to top