Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for UID (0.14 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    }} labels: {{- toJsonMap .InfrastructureLabels (strdict "gateway.networking.k8s.io/gateway-name" .Name "istio.io/gateway-name" .Name ) | nindent 4 }} ownerReferences: - apiVersion: gateway.networking.k8s.io/v1beta1 kind: Gateway name: {{.Name}} uid: "{{.UID}}" spec: selector: matchLabels: "{{.GatewayNameLabel}}": {{.Name}} template: metadata: annotations: {{- toJsonMap (omit .InfrastructureAnnota "kubectl.kubernetes.io/last-applied-configuration" "gateway.istio.io/name-override" "gateway.istio.io/service-account"...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  2. istioctl/pkg/describe/describe.go

    			if container.SecurityContext != nil && container.SecurityContext.RunAsUser != nil {
    				if *container.SecurityContext.RunAsUser == UserID {
    					fmt.Fprintf(writer, "WARNING: User ID (UID) 1337 is reserved for the sidecar proxy.\n")
    				}
    			}
    		}
    	}
    
    	fmt.Fprintf(writer, "Pod: %s\n", kname(pod.ObjectMeta))
    	fmt.Fprintf(writer, "   Pod Revision: %s\n", revision)
    	if len(ports) > 0 {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/fakes_test.go

    type fakeZtunnel struct {
    	deletedPods atomic.Int32
    	addedPods   atomic.Int32
    	addError    error
    }
    
    func (f *fakeZtunnel) Run(ctx context.Context) {
    }
    
    func (f *fakeZtunnel) PodDeleted(ctx context.Context, uid string) error {
    	f.deletedPods.Add(1)
    	return nil
    }
    
    func (f *fakeZtunnel) PodAdded(ctx context.Context, pod *corev1.Pod, netns Netns) error {
    	f.addedPods.Add(1)
    	return f.addError
    }
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. istioctl/pkg/multicluster/remote_secret_test.go

    	"istio.io/istio/pkg/kube/multicluster"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    )
    
    var (
    	kubeSystemNamespaceUID = types.UID("54643f96-eca0-11e9-bb97-42010a80000a")
    	kubeSystemNamespace    = &v1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "kube-system",
    			UID:  kubeSystemNamespaceUID,
    		},
    	}
    )
    
    const (
    	testNamespace          = "istio-system-test"
    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)
  5. istioctl/pkg/multicluster/remote_secret.go

    	// generate the clusterName if not specified
    	if opt.ClusterName == "" {
    		uid, err := clusterUID(client.Kube())
    		if err != nil {
    			return nil, nil, err
    		}
    		opt.ClusterName = string(uid)
    	}
    
    	var secretName string
    	switch opt.Type {
    	case SecretTypeRemote:
    		secretName = remoteSecretNameFromClusterName(opt.ClusterName)
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // rule is the strategy that will dictate the allowable RunAsUser values that may be set.
      optional string rule = 1;
    
      // ranges are the allowed ranges of uids that may be used. If you would like to force a single uid
      // then supply a single range with the same start and end. Required for MustRunAs.
      // +optional
      repeated IDRange ranges = 2;
    }
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.6K bytes
    - Viewed (0)
Back to top