Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for dnsConfig (0.3 sec)

  1. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

          # the application will first try to resolve the hostname (a, a.ns, etc.) as is
          # before attempting to add the search namespaces.
          dnsPolicy: None
          dnsConfig:
            nameservers:
            - "8.8.8.8"
            options:
            - name: "ndots"
              value: "1"
    {{- if $.VM.IstioHost }}
          # Override the istiod host to force traffic through east-west gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tests/integration/helm/install_test.go

    }
    
    func TestAmbientInstallMultiNamespace(t *testing.T) {
    	tests := []struct {
    		name     string
    		nsConfig NamespaceConfig
    	}{{
    		name: "isolated-istio-cni",
    		nsConfig: NewNamespaceConfig(types.NamespacedName{
    			Name: CniReleaseName, Namespace: "istio-cni",
    		}),
    	}, {
    		name: "isolated-istio-cni-and-ztunnel",
    		nsConfig: NewNamespaceConfig(types.NamespacedName{
    			Name: CniReleaseName, Namespace: "istio-cni",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/namespace/namespace.go

    	return newKube(ctx, cfg)
    }
    
    // NewOrFail calls New and fails test if it returns error
    func NewOrFail(t test.Failer, ctx resource.Context, nsConfig Config) Instance {
    	t.Helper()
    	i, err := New(ctx, nsConfig)
    	if err != nil {
    		t.Fatalf("namespace.NewOrFail: %v", err)
    	}
    	return i
    }
    
    // GetAll returns all namespaces that have exist in the context.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top