Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for sysPort (0.12 sec)

  1. 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)
  2. src/cmd/go/internal/work/security.go

    	re(`-pthread`),
    	re(`-?-std=([^@\-].*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`--sysroot=([^@\-].*)`),
    	re(`-w`),
    	re(`-x([^@\-].*)`),
    	re(`-v`),
    }
    
    var validCompilerFlagsWithNextArg = []string{
    	"-arch",
    	"-D",
    	"-U",
    	"-I",
    	"-F",
    	"-framework",
    	"-include",
    	"-isysroot",
    	"-isystem",
    	"--sysroot",
    	"-target",
    	"-x",
    }
    
    var invalidLinkerFlags = []*lazyregexp.Regexp{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. 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)
  4. pkg/bootstrap/instance_test.go

    				ID:          "sidecar~1.2.3.4~foo~bar",
    				Envs:        localEnv,
    				Platform:    plat,
    				InstanceIPs: []string{"10.3.3.3", "10.4.4.4", "10.5.5.5", "10.6.6.6", "10.4.4.4"},
    				StsPort:     c.stsPort,
    				ProxyConfig: proxyConfig,
    				PilotSubjectAltName: []string{
    					"spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account",
    				},
    				OutlierLogPath:      "/dev/stdout",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/deployment.yaml

            {{- end}}
            {{- if .Values.global.logAsJson }}
              - --log_as_json
            {{- end }}
            {{- if .Values.global.sts.servicePort }}
              - --stsPort={{ .Values.global.sts.servicePort }}
            {{- end }}
            {{- if not $gateway.runAsRoot }}
              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

            {{- end}}
            {{- if .Values.global.logAsJson }}
              - --log_as_json
            {{- end }}
            {{- if .Values.global.sts.servicePort }}
              - --stsPort={{ .Values.global.sts.servicePort }}
            {{- end }}
            {{- if not $gateway.runAsRoot }}
              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            - --log_output_level
            - {{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level | quote}}
          {{- 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
    - 11.7K bytes
    - Viewed (0)
  8. 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)
  9. manifests/charts/istio-control/istio-discovery/files/grpc-agent.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 }}
        lifecycle:
          postStart:
            exec:
              command:
              - pilot-agent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    		ID:                          a.cfg.ServiceNode,
    		Envs:                        os.Environ(),
    		Platform:                    a.cfg.Platform,
    		InstanceIPs:                 a.cfg.ProxyIPAddresses,
    		StsPort:                     a.secOpts.STSPort,
    		ProxyConfig:                 a.proxyConfig,
    		PilotSubjectAltName:         pilotSAN,
    		CredentialSocketExists:      credentialSocketExists,
    		OutlierLogPath:              a.envoyOpts.OutlierLogPath,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top