Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 171 for dnsConfig (0.21 sec)

  1. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

          - name: lightstep-certs
            secret:
              optional: true
              secretName: lightstep.cacert
          {{- end }}
          {{- if .Values.global.podDNSSearchNamespaces }}
          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

          - name: lightstep-certs
            secret:
              optional: true
              secretName: lightstep.cacert
          {{- end }}
          {{- if .Values.global.podDNSSearchNamespaces }}
          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    	testCases := []struct {
    		desc          string
    		dnsConfig     *core.PodDNSConfig
    		dnsPolicy     *core.DNSPolicy
    		opts          PodValidationOptions
    		expectedError bool
    	}{{
    		desc:          "valid: empty DNSConfig",
    		dnsConfig:     &core.PodDNSConfig{},
    		expectedError: false,
    	}, {
    		desc: "valid: 1 option",
    		dnsConfig: &core.PodDNSConfig{
    			Options: []core.PodDNSConfigOption{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    end }} {{ end }} {{- if and (eq .Values.global.proxy.tracer "lightstep") .ProxyConfig.GetTracing.GetTlsSettings }} - name: lightstep-certs secret: optional: true secretName: lightstep.cacert {{- end }} {{- if .Values.global.podDNSSearchNamespac }} dnsConfig: searches: {{- range .Values.global.podDNSSearchNamespac }} - {{ render . }} {{- end }} {{- end }} podRedirectAnnot: {{- if and (.Values.istio_cni.enabled) (not .Values.istio_cni.chained) }} {{ if isset .ObjectMeta.Annotations `k8s.v1.cni.cncf.io/networks`...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  5. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.PreemptionPolicy != nil {
    		in, out := &in.PreemptionPolicy, &out.PreemptionPolicy
    		*out = new(PreemptionPolicy)
    		**out = **in
    	}
    	if in.DNSConfig != nil {
    		in, out := &in.DNSConfig, &out.DNSConfig
    		*out = new(PodDNSConfig)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ReadinessGates != nil {
    		in, out := &in.ReadinessGates, &out.ReadinessGates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Priority != nil {
    		in, out := &in.Priority, &out.Priority
    		*out = new(int32)
    		**out = **in
    	}
    	if in.DNSConfig != nil {
    		in, out := &in.DNSConfig, &out.DNSConfig
    		*out = new(PodDNSConfig)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ReadinessGates != nil {
    		in, out := &in.ReadinessGates, &out.ReadinessGates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// Specifies the DNS parameters of a pod.
    	// Parameters specified here will be merged to the generated DNS
    	// configuration based on DNSPolicy.
    	// +optional
    	DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" protobuf:"bytes,26,opt,name=dnsConfig"`
    	// If specified, all readiness gates will be evaluated for pod readiness.
    	// A pod is ready when all its containers are ready AND
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    	out.HostAliases = *(*[]core.HostAlias)(unsafe.Pointer(&in.HostAliases))
    	out.PriorityClassName = in.PriorityClassName
    	out.Priority = (*int32)(unsafe.Pointer(in.Priority))
    	out.DNSConfig = (*core.PodDNSConfig)(unsafe.Pointer(in.DNSConfig))
    	out.ReadinessGates = *(*[]core.PodReadinessGate)(unsafe.Pointer(&in.ReadinessGates))
    	out.RuntimeClassName = (*string)(unsafe.Pointer(in.RuntimeClassName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	DNSDefault DNSPolicy = "Default"
    
    	// DNSNone indicates that the pod should use empty DNS settings. DNS
    	// parameters such as nameservers and search paths should be defined via
    	// DNSConfig.
    	DNSNone DNSPolicy = "None"
    )
    
    // NodeSelector represents the union of the results of one or more label queries
    // over a set of nodes; that is, it represents the OR of the selectors represented
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. tests/integration/helm/upgrade/util.go

    			nsConfig.Get(helmtest.CniReleaseName), overrideValuesFile, helmtest.Timeout)
    		if err != nil {
    			ctx.Fatalf("failed to upgrade istio %s chart", helmtest.CniReleaseName)
    		}
    	}
    
    	if isAmbient {
    		// Upgrade ztunnel chart
    		err = h.UpgradeChart(helmtest.ZtunnelReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.ZtunnelChartsDir),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top