Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for endpointconfig (0.36 sec)

  1. pkg/controller/endpoint/config/v1alpha1/conversion.go

    limitations under the License.
    */
    
    package v1alpha1
    
    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kube-controller-manager/config/v1alpha1"
    	endpointconfig "k8s.io/kubernetes/pkg/controller/endpoint/config"
    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/endpointcontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	endpointconfig "k8s.io/kubernetes/pkg/controller/endpoint/config"
    )
    
    // EndpointControllerOptions holds the EndPointController options.
    type EndpointControllerOptions struct {
    	*endpointconfig.EndpointControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. pkg/controller/apis/config/types.go

    	cronjobconfig "k8s.io/kubernetes/pkg/controller/cronjob/config"
    	daemonconfig "k8s.io/kubernetes/pkg/controller/daemon/config"
    	deploymentconfig "k8s.io/kubernetes/pkg/controller/deployment/config"
    	endpointconfig "k8s.io/kubernetes/pkg/controller/endpoint/config"
    	endpointsliceconfig "k8s.io/kubernetes/pkg/controller/endpointslice/config"
    	endpointslicemirroringconfig "k8s.io/kubernetes/pkg/controller/endpointslicemirroring/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	for _, e := range dump.GetDynamicEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    	for _, e := range dump.GetStaticEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pilot/pkg/xds/debug.go

    	if includeEds {
    		endpointConfig := make([]*admin.EndpointsConfigDump_DynamicEndpointConfig, 0)
    		for _, endpoint := range dump[v3.EndpointType] {
    			endpointConfig = append(endpointConfig, &admin.EndpointsConfigDump_DynamicEndpointConfig{
    				VersionInfo:    version,
    				EndpointConfig: endpoint.Resource,
    			})
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    	cronjobconfig "k8s.io/kubernetes/pkg/controller/cronjob/config"
    	daemonconfig "k8s.io/kubernetes/pkg/controller/daemon/config"
    	deploymentconfig "k8s.io/kubernetes/pkg/controller/deployment/config"
    	endpointconfig "k8s.io/kubernetes/pkg/controller/endpoint/config"
    	endpointsliceconfig "k8s.io/kubernetes/pkg/controller/endpointslice/config"
    	endpointslicemirroringconfig "k8s.io/kubernetes/pkg/controller/endpointslicemirroring/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

    {
        "configs": [
            {
                "@type": "type.googleapis.com/envoy.admin.v3.EndpointsConfigDump",
                "static_endpoint_configs": [
                    {
                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "zipkin",
                            "policy": {
                                "overprovisioning_factor": 140
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/testdata/config_dump.json

            }
          ]
        },
        {
          "@type": "type.googleapis.com/envoy.admin.v3.EndpointsConfigDump",
          "static_endpoint_configs": [
            {
              "endpoint_config": {
                "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                "cluster_name": "prometheus_stats",
                "endpoints": [
                  {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
Back to top