Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for sysPort (0.12 sec)

  1. 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)
  2. manifests/charts/istiod-remote/files/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.outlierLogPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/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.outlierLogPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	// The ratio of cert lifetime to refresh a cert. For example, at 0.10 and 1 hour TTL,
    	// we would refresh 6 minutes before expiration.
    	SecretRotationGracePeriodRatio float64
    
    	// STS port
    	STSPort int
    
    	// credential fetcher.
    	CredFetcher CredFetcher
    
    	// credential identity provider
    	CredIdentityProvider string
    
    	// Namespace corresponding to workload
    	WorkloadNamespace string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            // when
            try {
                cli.cli(cliRequest);
            } catch (MavenCli.ExitException exitException) {
                // expected
            } finally {
                // restore sysout
                System.setOut(oldOut);
            }
            String versionOut = new String(systemOut.toByteArray(), StandardCharsets.UTF_8);
    
            // then
            assertEquals(stripAnsiCodes(versionOut), versionOut);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top