Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for msvc (0.27 sec)

  1. cmd/sts-handlers_test.go

    	}
    	userAdmClient.SetCustomTransport(s.TestSuiteCommon.client.Transport)
    
    	// Create svc acc
    	cr := c.mustCreateSvcAccount(ctx, value.AccessKeyID, userAdmClient)
    
    	// 1. Check that svc account appears in listing
    	c.assertSvcAccAppearsInListing(ctx, userAdmClient, value.AccessKeyID, cr.AccessKey)
    
    	// 2. Check that svc account info can be queried
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    	svcs, err := cli.Kube().CoreV1().Services(metav1.NamespaceAll).List(context.Background(), metav1.ListOptions{})
    	if err != nil {
    		return err
    	}
    	for _, svc := range svcs.Items {
    		if svc.Spec.Type != corev1.ServiceTypeExternalName {
    			continue
    		}
    		res := ObjectToInstance(&svc)
    		messages.Add(msg.NewUpdateIncompatibility(res,
    			"ENABLE_EXTERNAL_NAME_ALIAS", "1.20",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. istioctl/pkg/workload/workload.go

    	}
    
    	if isRevisioned(revision) {
    		overrides["CA_ADDR"] = IstiodAddr(istioNamespace, revision)
    	}
    	if len(internalIP) > 0 {
    		overrides["ISTIO_SVC_IP"] = internalIP
    	} else if len(externalIP) > 0 {
    		overrides["ISTIO_SVC_IP"] = externalIP
    		overrides["REWRITE_PROBE_LEGACY_LOCALHOST_DESTINATION"] = "true"
    	}
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  4. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

      # Retrieve full certificate dump of workloads for a given Ztunnel instance.
      istioctl x ztunnel-config services <ztunnel-name[.namespace]> -o json
    `,
    		Aliases: []string{"services", "s", "svc"},
    		Args:    common.validateArgs,
    		RunE: runConfigDump(ctx, common, func(cw *ztunnelDump.ConfigWriter) error {
    			filter := ztunnelDump.ServiceFilter{
    				Namespace: serviceNamespace,
    			}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 13:11:40 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    		store.loadUser(ctx, accessKey, svcUser, cache.iamUsersMap)
    		var svc UserIdentity
    		svc, found = cache.iamUsersMap[accessKey]
    		if found {
    			// Load parent user and mapped policies.
    			if store.getUsersSysType() == MinIOUsersSysType {
    				store.loadUser(ctx, svc.Credentials.ParentUser, regUser, cache.iamUsersMap)
    				store.loadMappedPolicyWithRetry(ctx, svc.Credentials.ParentUser, regUser, false, cache.iamUserPolicyMap, 3)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  6. istioctl/pkg/describe/describe.go

    				return err
    			}
    
    			matchingServices := make([]corev1.Service, 0, len(svcs.Items))
    			for _, svc := range svcs.Items {
    				if len(svc.Spec.Selector) > 0 {
    					svcSelector := klabels.SelectorFromSet(svc.Spec.Selector)
    					if svcSelector.Matches(podLabels) {
    						matchingServices = append(matchingServices, svc)
    					}
    				}
    			}
    			// Validate Istio's "Service association" requirement
    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)
  7. cmd/admin-handlers-idp-ldap.go

    			return
    		}
    	}
    
    	var serviceAccountList []madmin.ServiceAccountInfo
    	var stsKeyList []madmin.ServiceAccountInfo
    
    	for _, svc := range serviceAccounts {
    		expiryTime := svc.Expiration
    		serviceAccountList = append(serviceAccountList, madmin.ServiceAccountInfo{
    			AccessKey:  svc.AccessKey,
    			Expiration: &expiryTime,
    		})
    	}
    	for _, sts := range stsKeys {
    		expiryTime := sts.Expiration
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users_test.go

    	// 1.2 Check that svc account appears in listing
    	c.assertSvcAccAppearsInListing(ctx, s.adm, accessKey, cr.AccessKey)
    
    	// 1.3 Check that svc account info can be queried
    	c.assertSvcAccInfoQueryable(ctx, s.adm, accessKey, cr.AccessKey, false)
    
    	// 2. Check that svc account can access the bucket
    	c.assertSvcAccS3Access(ctx, s, cr, bucket)
    
    	// 3. Check that svc account can restrict the policy, and that the
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 12 16:36:16 GMT 2024
    - 45.7K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/route.go

    	unique := sets.New(domains...)
    	shouldDelete := sets.New[string]()
    	for _, h := range domains {
    		stripFull := strings.TrimSuffix(h, ".svc.cluster.local")
    		if unique.Contains(stripFull) && stripFull != h {
    			shouldDelete.Insert(h)
    		}
    		stripPartial := strings.TrimSuffix(h, ".svc")
    		if unique.Contains(stripPartial) && stripPartial != h {
    			shouldDelete.Insert(h)
    		}
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    	for _, svc := range serviceAccounts {
    		expiryTime := svc.Expiration
    		serviceAccountList = append(serviceAccountList, madmin.ServiceAccountInfo{
    			Description:   svc.Description,
    			ParentUser:    svc.ParentUser,
    			Name:          svc.Name,
    			AccountStatus: svc.Status,
    			AccessKey:     svc.AccessKey,
    			ImpliedPolicy: svc.IsImpliedPolicy(),
    			Expiration:    &expiryTime,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
Back to top