Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sts_port (0.16 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. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpsToHttpsRedirectResolveIntegrationTest.groovy

        @Rule TestResources resources = new TestResources(temporaryFolder)
        TestKeyStore keyStore
    
        @Override
        String getFrontServerBaseUrl() {
            "https://localhost:${server.sslPort}"
        }
    
        @Override
        boolean defaultAllowInsecureProtocol() {
            return false
        }
    
        void beforeServerStart() {
            keyStore = TestKeyStore.init(resources.dir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpsToHttpRedirectResolveIntegrationTest.groovy

        @Rule
        TestResources resources = new TestResources(temporaryFolder)
        TestKeyStore keyStore
    
        @Override
        String getFrontServerBaseUrl() {
            "https://localhost:${server.sslPort}"
        }
    
        @Override
        boolean defaultAllowInsecureProtocol() {
            return true
        }
    
        void beforeServerStart() {
            keyStore = TestKeyStore.init(resources.dir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

        - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}
      {{- if .Values.global.sts.servicePort }}
        - --stsPort={{ .Values.global.sts.servicePort }}
      {{- end }}
      {{- if .Values.global.logAsJson }}
        - --log_as_json
      {{- end }}
      {{- if .Values.global.proxy.lifecycle }}
        lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

        - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}
      {{- if .Values.global.sts.servicePort }}
        - --stsPort={{ .Values.global.sts.servicePort }}
      {{- end }}
      {{- if .Values.global.logAsJson }}
        - --log_as_json
      {{- end }}
      {{- if .Values.global.proxy.lifecycle }}
        lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top