Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for root1 (0.04 sec)

  1. cmd/iam.go

    		if err != nil && err != errNoSuchUser {
    			return
    		}
    		if isTemp {
    			err = errIAMActionNotAllowed
    			return
    		}
    
    		// When the user is root credential you are not allowed to
    		// add policies for root user.
    		if userOrGroup == globalActiveCred.AccessKey {
    			err = errIAMActionNotAllowed
    			return
    		}
    
    		// Validate that user exists.
    		var userExists bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    	// Note: Secrets that are not referenced by any Gateway, but are in the same namespace as the pod, are explicitly *not*
    	// included. This ensures we don't give permission to unexpected secrets, such as the citadel root key/cert.
    	VerifiedCertificateReferences sets.String
    }
    
    func (g *MergedGateway) HasAutoPassthroughGateways() bool {
    	if g != nil {
    		return g.ContainsAutoPassthroughGateways
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    	tlsClientCertChain string
    	// tlsClientKey is the absolute path to client private key file
    	tlsClientKey string
    	// tlsClientRootCert is the absolute path to client root cert file
    	tlsClientRootCert string
    }
    
    // ClusterBuilder interface provides an abstraction for building Envoy Clusters.
    type ClusterBuilder struct {
    	// Proxy related information used to build clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	}
    
    	for _, span := range runtimeServiceSpans {
    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("runtime service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    	if err != nil {
    		secretKey, err := getTokenSigningKey()
    		if err != nil {
    			return nil, err
    		}
    		// Session tokens for STS creds will be generated with root secret or site-replicator-0 secret
    		jwtClaims, err = auth.ExtractClaims(u.Credentials.SessionToken, secretKey)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return jwtClaims, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    		g.Expect(tlsContext).NotTo(BeNil())
    
    		rootSdsConfig := tlsContext.CommonTlsContext.GetCombinedValidationContext().GetValidationContextSdsSecretConfig()
    		g.Expect(rootSdsConfig.GetName()).To(Equal("file-root:/clientRootCertFromNodeMetadata.pem"))
    
    		certSdsConfig := tlsContext.CommonTlsContext.GetTlsCertificateSdsSecretConfigs()
    		g.Expect(certSdsConfig).To(HaveLen(1))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

        * Add new `root_path` parameter for `FastAPI` applications to provide it in cases where it can be set with the command line (e.g. for Uvicorn and Hypercorn, with the parameter `--root-path`).
        * Deprecate `openapi_prefix` parameter in favor of the new `root_path` parameter.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top