Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for sts_port (0.13 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

                  }
                },
                "call_credentials": [{
                {{ if .sts }}
                  "sts_service": {
                    "token_exchange_service_uri": "http://localhost:{{ .sts_port }}/token",
                    "subject_token_path": "./var/run/secrets/tokens/istio-token",
                    "subject_token_type": "urn:ietf:params:oauth:token-type:jwt",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances.go

    	return newOption("envoy_status_port", value)
    }
    
    func EnvoyPrometheusPort(value int) Instance {
    	return newOption("envoy_prometheus_port", value)
    }
    
    func STSPort(value int) Instance {
    	return newOption("sts_port", value)
    }
    
    func GCPProjectID(value string) Instance {
    	return newOption("gcp_project_id", value)
    }
    
    func GCPProjectNumber(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances_test.go

    		},
    		{
    			testName: "sts enabled",
    			key:      "sts",
    			option:   option.STSEnabled(true),
    			expected: true,
    		},
    		{
    			testName: "sts port",
    			key:      "sts_port",
    			option:   option.STSPort(5555),
    			expected: 5555,
    		},
    		{
    			testName: "project id",
    			key:      "gcp_project_id",
    			option:   option.GCPProjectID("project"),
    			expected: "project",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. pkg/model/proxy.go

    	// PlatformMetadata contains any platform specific metadata
    	PlatformMetadata map[string]string `json:"PLATFORM_METADATA,omitempty"`
    
    	// StsPort specifies the port of security token exchange server (STS).
    	// Used by envoy filters
    	StsPort string `json:"STS_PORT,omitempty"`
    
    	// Envoy status port redirecting to agent status port.
    	EnvoyStatusPort int `json:"ENVOY_STATUS_PORT,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/options/security.go

    		SecretTTL:                      secretTTLEnv,
    		FileDebounceDuration:           fileDebounceDuration,
    		SecretRotationGracePeriodRatio: secretRotationGracePeriodRatioEnv,
    		STSPort:                        stsPort,
    		CertSigner:                     certSigner.Get(),
    		CARootPath:                     cafile.CACertFilePath,
    		CertChainFilePath:              security.DefaultCertChainFilePath,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * @author shinsuke
     *
     */
    public class FtpClientTest extends PlainTestCase {
        private static final int FTP_PORT = 10021;
    
        public FtpClient ftpClient;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    		opts = append(opts, option.GCPProjectNumber(projectNumber))
    	}
    
    	if cfg.Metadata.StsPort != "" {
    		stsPort, err := strconv.Atoi(cfg.Metadata.StsPort)
    		if err == nil && stsPort > 0 {
    			opts = append(opts,
    				option.STSEnabled(true),
    				option.STSPort(stsPort))
    			md := cfg.Metadata.PlatformMetadata
    			if projectID, found := md[platform.GCPProject]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/options/agent_proxy.go

    package options
    
    import (
    	istioagent "istio.io/istio/pkg/istio-agent"
    )
    
    // ProxyArgs provides all of the configuration parameters for the Pilot proxy.
    type ProxyArgs struct {
    	istioagent.Proxy
    
    	StsPort            int
    	TokenManagerPlugin string
    
    	MeshConfigFile string
    
    	// proxy config flags (named identically)
    	ServiceCluster         string
    	ProxyLogLevel          string
    	ProxyComponentLogLevel string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/cmd.go

    			"PROXY_CONFIG environment variable or proxy.istio.io/config annotation.")
    	proxyCmd.PersistentFlags().IntVar(&proxyArgs.StsPort, "stsPort", 0,
    		"HTTP Port on which to serve Security Token Service (STS). If zero, STS service will not be provided.")
    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.TokenManagerPlugin, "tokenManagerPlugin", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpsProxyResolveIntegrationTest.groovy

        TestKeyStore keyStore
    
        @Override
        String getProxyScheme() {
            return 'https'
        }
    
        @Override
        String getRepoServerUrl() {
            "https://localhost:${server.sslPort}/repo"
        }
    
        @Override
        boolean isTunnel() { true }
    
        @Override
        void setupServer() {
            keyStore = TestKeyStore.init(resources.dir)
            keyStore.enableSslWithServerCert(server)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top