Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Kissling (0.17 sec)

  1. common/scripts/lint_copyright_banner.sh

    # limitations under the License.
    
    set -e
    
    ec=0
    for fn in "$@"; do
      if ! grep -L -q -e "Apache License, Version 2" "${fn}"; then
        echo "Missing license: ${fn}"
        ec=1
      fi
    
      if ! grep -L -q -e "Copyright" "${fn}"; then
        echo "Missing copyright: ${fn}"
        ec=1
      fi
    done
    
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Sep 11 23:32:21 GMT 2019
    - 1.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator-init.go

    	kubeClient, client, err := kubeClients(cliClient, l)
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    	if oiArgs.common.revision == "default" {
    		oiArgs.common.revision = ""
    	}
    	// Error here likely indicates Deployment is missing. If some other K8s error, we will hit it again later.
    	already, _ := isControllerInstalled(kubeClient.Kube(), oiArgs.common.operatorNamespace, oiArgs.common.revision)
    	if already {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate.go

    	}
    	objects, err := object.ParseK8sObjectsFromYAMLManifest(strings.Join(rawOutput, helm.YAMLSeparator))
    	if err != nil {
    		return nil, err
    	}
    	// For a given group of objects, sort in order to avoid missing dependencies, such as creating CRDs first
    	objects.Sort(object.DefaultObjectOrder())
    	for _, obj := range objects {
    		yml, err := obj.YAML()
    		if err != nil {
    			return nil, err
    		}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/storage/v1/generated.proto

    // automatically populate the CSINode object for the CSI driver as part of
    // kubelet plugin registration.
    // CSINode has the same name as a node. If the object is missing, it means either
    // there are no CSI Drivers available on the node, or the Kubelet version is low
    // enough that it doesn't create this object.
    // CSINode has an OwnerReference that points to the corresponding node object.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  5. 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 01 22:53:12 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 20.6K bytes
    - Viewed (0)
  6. 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 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  7. 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 01 22:53:12 GMT 2024
    - Last Modified: Thu Jan 04 03:08:06 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  8. 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 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  9. 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 Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  10. istioctl/pkg/workload/workload_test.go

    	cases := []testcase{
    		{
    			description:       "Invalid command args - missing service name and namespace",
    			args:              strings.Split("group create", " "),
    			expectedException: true,
    			expectedOutput:    "Error: expecting a workload name\n",
    		},
    		{
    			description:       "Invalid command args - missing service name",
    			args:              strings.Split("group create -n bar", " "),
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Mar 27 16:59:05 GMT 2024
    - 14.6K bytes
    - Viewed (0)
Back to top