Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Kissling (0.31 sec)

  1. istioctl/pkg/multicluster/remote_secret_test.go

    		wantRemoteSecret   *v1.Secret
    		wantErrStr         string
    	}{
    		{
    			name:            "missing caData",
    			haveTokenSecret: makeSecret("", "", "token"),
    			context:         "c0",
    			clusterName:     fakeClusterName,
    			wantErrStr:      errMissingRootCAKey.Error(),
    		},
    		{
    			name:            "missing token",
    			haveTokenSecret: makeSecret("", "caData", ""),
    			context:         "c0",
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 20.6K bytes
    - Viewed (0)
  2. istioctl/pkg/version/version.go

    		}
    		*outXDS = xdsResponse
    		if xdsResponse.ControlPlane == nil {
    			return &istioVersion.MeshInfo{
    				istioVersion.ServerInfo{
    					Component: "MISSING CP ID",
    					Info: istioVersion.BuildInfo{
    						Version: "MISSING CP ID",
    					},
    					Revision: "MISSING CP ID",
    				},
    			}, nil
    		}
    		cpID := xds.IstioControlPlaneInstance{}
    		err = json.Unmarshal([]byte(xdsResponse.ControlPlane.Identifier), &cpID)
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  3. istioctl/pkg/injector/injector-list.go

    	if newRev == "" && (ok && oldLabel == "disabled" || !ok) {
    		return ""
    	}
    	if newRev != "" {
    		return fmt.Sprintf("MISSING/%s", newRev)
    	}
    	return fmt.Sprintf("MISSING/%s", analyzer_util.InjectionLabelName)
    }
    
    func getMatchingNamespaces(hook *admitv1.MutatingWebhookConfiguration, namespaces []corev1.Namespace) []corev1.Namespace {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jan 04 03:08:06 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  4. architecture/networking/controllers.md

    Functionality offered by `kclient` includes:
    * Typed clients (via generics) and more ergonomic APIs
    * Ability to make a _delayed_ client. This is used when making clients based on CRDs that may not exist.
      In general, Istio does not fail on missing CRDs and prefers to treat these as if there were just zero resources for that client.
      The `NewDelayedInformer` abstracts that entirely, offering the same API as normal `kclient.Client`.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    								} else {
    									t.Fatalf("expected webhook to go to service %q, found %q", w.match, found)
    								}
    							}
    							return
    						}
    					}
    					// If none match, a test case is missing for the label set.
    					t.Fatalf("no assertion for namespace=%v pod=%v", s.namespace, s.pod)
    				})
    			}
    		})
    	}
    }
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
Back to top