Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for externalPort (0.17 sec)

  1. pkg/proxy/winkernel/hns.go

    		return loadBalancerIdentifier{}, err
    	}
    	if len(vip) > 0 {
    		return loadBalancerIdentifier{protocol: protocol, internalPort: internalPort, externalPort: externalPort, vip: vip, endpointsHash: hash}, nil
    	}
    	return loadBalancerIdentifier{protocol: protocol, internalPort: internalPort, externalPort: externalPort, endpointsHash: hash}, nil
    }
    
    func (hns hns) getAllLoadBalancers() (map[loadBalancerIdentifier]*loadBalancerInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/misannotated.yaml

        kubernetes.io/ingress.class: "istio"
        gateway.istio.io/controller-version: "5"
    spec:
      containers:
        - name: "grafana-test"
          command: ['curl']
          args: ['http://grafana:{{ .Values.grafana.service.externalPort }}']
      restartPolicy: Never
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: annotation-set-by-default
      labels:
        app: annotation-set-by-default
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/hns_test.go

    	id := loadBalancerIdentifier{protocol: protocol, internalPort: internalPort, externalPort: externalPort, vip: serviceVip, endpointsHash: hash}
    	lbs[id] = &loadBalancerInfo{hnsID: LoadBalancer.Id}
    
    	lb, err := hns.getLoadBalancer(endpoints, loadBalancerFlags{}, sourceVip, serviceVip, protocol, internalPort, externalPort, lbs)
    
    	if err != nil {
    		t.Error(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    :{},"persist":false,"podAntiAffinityLabelSelector":[],"podAntiAffinityTermLabelSelector":[],"replicaCount":1,"security":{"enabled":false,"passphraseKey":"passphrase","secretName":"grafana","usernameKey":"username"},"service":{"annotations":{},"externalPort":3000,"name":"http","type":"ClusterIP"},"storageClassName":"","tolerations":[]},"istio_cni":{"enabled":false},"istiocoredns":{"coreDNSImage":"coredns/coredns","coreDNSPluginImage":"istio/coredns-plugin:0.2-istio-1.1","coreDNSTag":"1.6.2","enab...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    :{},"persist":false,"podAntiAffinityLabelSelector":[],"podAntiAffinityTermLabelSelector":[],"replicaCount":1,"security":{"enabled":false,"passphraseKey":"passphrase","secretName":"grafana","usernameKey":"username"},"service":{"annotations":{},"externalPort":3000,"name":"http","type":"ClusterIP"},"storageClassName":"","tolerations":[]},"istio_cni":{"enabled":false},"istiocoredns":{"coreDNSImage":"coredns/coredns","coreDNSPluginImage":"istio/coredns-plugin:0.2-istio-1.1","coreDNSTag":"1.6.2","enab...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    :{},"persist":false,"podAntiAffinityLabelSelector":[],"podAntiAffinityTermLabelSelector":[],"replicaCount":1,"security":{"enabled":false,"passphraseKey":"passphrase","secretName":"grafana","usernameKey":"username"},"service":{"annotations":{},"externalPort":3000,"name":"http","type":"ClusterIP"},"storageClassName":"","tolerations":[]},"istio_cni":{"enabled":false},"istiocoredns":{"coreDNSImage":"coredns/coredns","coreDNSPluginImage":"istio/coredns-plugin:0.2-istio-1.1","coreDNSTag":"1.6.2","enab...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    :{},"persist":false,"podAntiAffinityLabelSelector":[],"podAntiAffinityTermLabelSelector":[],"replicaCount":1,"security":{"enabled":false,"passphraseKey":"passphrase","secretName":"grafana","usernameKey":"username"},"service":{"annotations":{},"externalPort":3000,"name":"http","type":"ClusterIP"},"storageClassName":"","tolerations":[]},"istio_cni":{"enabled":false},"istiocoredns":{"coreDNSImage":"coredns/coredns","coreDNSPluginImage":"istio/coredns-plugin:0.2-istio-1.1","coreDNSTag":"1.6.2","enab...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    	hnsID            string
    	healthCheckHnsID string
    }
    
    type loadBalancerInfo struct {
    	hnsID string
    }
    
    type loadBalancerIdentifier struct {
    	protocol      uint16
    	internalPort  uint16
    	externalPort  uint16
    	vip           string
    	endpointsHash [20]byte
    }
    
    type loadBalancerFlags struct {
    	isILB           bool
    	isDSR           bool
    	isVipExternalIP bool
    	localRoutedVIP  bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"List of directives for HSTS, comma separated. If this list is empty, then HSTS directives will not "+
    		"be added. Example: 'max-age=31536000,includeSubDomains,preload'")
    
    	fs.StringVar(&s.ExternalHost, "external-hostname", s.ExternalHost,
    		"The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs or OpenID Discovery).")
    
    	fs.IntVar(&s.MaxRequestsInFlight, "max-requests-inflight", s.MaxRequestsInFlight, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/options/options.go

    		return CompletedOptions{}, fmt.Errorf("error creating self-signed certificates: %v", err)
    	}
    
    	if len(completed.GenericServerRunOptions.ExternalHost) == 0 {
    		if len(completed.GenericServerRunOptions.AdvertiseAddress) > 0 {
    			completed.GenericServerRunOptions.ExternalHost = completed.GenericServerRunOptions.AdvertiseAddress.String()
    		} else {
    			hostname, err := os.Hostname()
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top