Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 266 for clusterIPs (0.22 sec)

  1. api/openapi-spec/swagger.json

              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  2. tests/integration/operator/install_test.go

    				}
    			}
    		})
    }
    
    func TestReInstallAfterFailure(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			cs := t.Clusters().Default()
    			t.Cleanup(func() {
    				cleanupIstioResources(t, cs, istioCtl)
    			})
    
    			// Install with a fake tag to make the installation fail
    			_, _, err := istioCtl.Invoke([]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 14:30:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    			for _, d := range dashboards {
    				d := d
    				t.NewSubTest(d.name).Run(func(t framework.TestContext) {
    					for _, cl := range t.Clusters() {
    						if !cl.IsPrimary() && d.requirePrimary {
    							// Skip verification of dashboards that won't be present on non primary(remote) clusters.
    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    //
    // STS accounts are replicated, but only if the session token is verifiable
    // using the local cluster's root credential.
    func (c *SiteReplicationSys) IAMChangeHook(ctx context.Context, item madmin.SRIAMItem) error {
    	// The IAM item has already been applied to the local cluster at this
    	// point, and only needs to be updated on all remote peer clusters.
    
    	c.RLock()
    	defer c.RUnlock()
    	if !c.enabled {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. cmd/kubemark/app/hollow_node_test.go

    import (
    	"fmt"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"path/filepath"
    	"testing"
    	"time"
    
    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    const fakeKubeconfig = `
    apiVersion: v1
    kind: Config
    clusters:
    - cluster:
        insecure-skip-tls-verify: true
        server: %s
      name: default
    contexts:
    - context:
        cluster: default
        user: default
      name: default
    current-context: default
    users:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    	if !exists {
    		t.Fatal("failed to find CurrentContext in Contexts of the kubeconfig")
    	}
    	if configWithSameClusterCaByExternalFile.Clusters[currentCtx.Cluster] == nil {
    		t.Fatal("failed to find the given CurrentContext Cluster in Clusters of the kubeconfig")
    	}
    	tmpfile, err := os.CreateTemp("", "external-ca.crt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.Remove(tmpfile.Name())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. pkg/kube/version.go

    	clusterVersion, err := client.GetKubernetesVersion()
    	if err != nil {
    		return -1
    	}
    	v, err := strconv.Atoi(clusterVersion.Major + clusterVersion.Minor)
    	if err != nil {
    		// Apparently some clusters don't put proper numbers here. Try GitVersion
    		vp, err := version.ParseGeneric(clusterVersion.GitVersion)
    		if err != nil {
    			// no good
    			return -1
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tools/packaging/common/gcp_envoy_bootstrap.json

              "rtds_config": {
    	    "resource_api_version": "V3",
                "ads": {}
               }
           }
          }
         ]
      },
      "static_resources": {
        "clusters": [
          {
            "name": "agent",
            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "agent",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    			configTmpl: `
    clusters:
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://authz.example.com
      name: foobar
    users:
    - name: a cluster
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    `,
    			wantErr: true,
    		},
    		{
    			msg: "multiple clusters with no context",
    			configTmpl: `
    clusters:
    - cluster:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

          TF::BuildAllClusters(block, side_effect_info,
                               get_inference_device_type_string, op_can_be_ignored);
      for (const auto& [device, clusters] : all_clusters) {
        for (const TF::Cluster& cluster : clusters) {
          extract(cluster.ops);
        }
      }
      if (skip_cpu) {
        for (auto& op : block) {
          auto op_device = GetInferenceDeviceTypeForOp(&op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top