Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Truong (0.17 sec)

  1. istioctl/pkg/tag/tag_test.go

    						ObjectMeta: metav1.ObjectMeta{
    							Name:   "istio-revision-tag-wrong",
    							Labels: map[string]string{IstioTagLabel: "wrong"},
    						},
    					},
    				},
    			},
    			webhooksAfter: admitv1.MutatingWebhookConfigurationList{
    				Items: []admitv1.MutatingWebhookConfiguration{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name:   "istio-revision-tag-wrong",
    							Labels: map[string]string{IstioTagLabel: "wrong"},
    						},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Nov 17 22:41:06 GMT 2023
    - 8.7K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/informers.go

    			// If PodIPs exists, it is preferred, otherwise fallback to PodIP.
    			//
    			// If we get to this point and have a pod that really and truly has no IP in either of those,
    			// it's not routable at this point and something is wrong/we should discard this event.
    			podIPs := util.GetPodIPsIfPresent(pod)
    			if len(podIPs) == 0 {
    				log.Warnf("pod %s does not appear to have any assigned IPs, not capturing", pod.Name)
    				return nil
    			}
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Feb 08 01:03:24 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  3. common/scripts/kind_provisioner.sh

        kind create cluster --name="${NAME}" -v4 --retain --image "${IMAGE}" ${KIND_WAIT_FLAG:+"$KIND_WAIT_FLAG"} --config -); then
        echo "Could not setup KinD environment. Something wrong with KinD setup. Exporting logs."
        return 9
      fi
      # Workaround kind issue causing taints to not be removed in 1.24
      kubectl taint nodes "${NAME}"-control-plane node-role.kubernetes.io/control-plane- 2>/dev/null || true
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  4. istioctl/pkg/multicluster/remote_secret_test.go

    			},
    			objs: []runtime.Object{
    				makeServiceAccount("wrong-secret"),
    				secret,
    			},
    			wantErrStr: `secrets "wrong-secret" not found`,
    		},
    		{
    			name: "success",
    			opts: RemoteSecretOptions{
    				ServiceAccountName: testServiceAccountName,
    				KubeOptions: KubeOptions{
    					Namespace: testNamespace,
    				},
    				ManifestsPath: filepath.Join(env.IstioSrc, "manifests"),
    			},
    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)
  5. common-protos/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      // Allowed indicates that all images were allowed to be run.
      optional bool allowed = 1;
    
      // Reason should be empty unless Allowed is false in which case it
      // may contain a short description of what is wrong.  Kubernetes
      // may truncate excessively long errors when displaying to the user.
      // +optional
      optional string reason = 2;
    
      // AuditAnnotations will be added to the attributes object of the
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. istioctl/pkg/multicluster/remote_secret.go

    		}
    	} else {
    		if len(serviceAccount.Secrets) == 1 {
    			secretName = serviceAccount.Secrets[0].Name
    			secretNamespace = serviceAccount.Secrets[0].Namespace
    		} else {
    			return nil, fmt.Errorf("wrong number of secrets (%v) in serviceaccount %s/%s, please use --secret-name to specify one",
    				len(serviceAccount.Secrets), opt.Namespace, opt.ServiceAccountName)
    		}
    	}
    
    	if secretNamespace == "" {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  7. cni/pkg/repair/repair_test.go

    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      126,
    			},
    			brokenPodTerminating,
    			true,
    		},
    		{
    			"Testing broken pod with wrong ExitCode",
    			config.RepairConfig{
    				SidecarAnnotation: "sidecar.istio.io/status",
    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      55,
    			},
    			brokenPodWaiting,
    			false,
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Oct 24 03:31:28 GMT 2023
    - 10.6K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    	// There is no point in checking that 'port' uses HTTP (for HTTP route matches)
    	// or uses TCP (for TCP route matches) because if the port has the wrong name
    	// the VirtualService metadata will not appear.
    
    	matches := 0
    	facts := 0
    	mismatchNotes := []string{}
    	for _, httpRoute := range vs.Spec.Http {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
Back to top