Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for externalDep (0.27 sec)

  1. pkg/proxy/conntrack/cleanup.go

    				err := ct.ClearEntriesForNAT(extIP.String(), endpointIP, v1.ProtocolUDP)
    				if err != nil {
    					klog.ErrorS(err, "Failed to delete endpoint connections for externalIP", "servicePortName", epSvcPair.ServicePortName, "externalIP", extIP)
    				}
    			}
    			for _, lbIP := range svcInfo.LoadBalancerVIPs() {
    				err := ct.ClearEntriesForNAT(lbIP.String(), endpointIP, v1.ProtocolUDP)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/testFixtures/groovy/org/gradle/api/publish/ivy/AbstractIvyPublishIntegTest.groovy

            String dependencyNotation = params.dependency
            if (params.configuration) {
                dependencyNotation = "${dependencyNotation}, configuration: '${sq(params.configuration)}'"
            }
    
            def externalRepo = requiresExternalDependencies?mavenCentralRepositoryDefinition():''
            def optional = params.optionalFeatureCapabilities.collect {
                "resolve($dependencyNotation) { capabilities { requireCapability('$it') } }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. pkg/api/testing/node_example.json

                    "lastTransitionTime": "2015-04-22T11:49:52Z",
                    "reason": "kubelet is posting ready status"
                }
            ],
            "addresses": [
                {
                    "type": "ExternalIP",
                    "address": "104.197.49.213"
                },
                {
                    "type": "LegacyHostIP",
                    "address": "104.197.20.11"
                }
            ],
            "nodeInfo": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 00:36:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. pkg/api/service/warnings.go

    			warnings = append(warnings, getWarningsForIP(field.NewPath("spec").Child("clusterIPs").Index(i), clusterIP)...)
    		}
    	}
    
    	for i, externalIP := range service.Spec.ExternalIPs {
    		warnings = append(warnings, getWarningsForIP(field.NewPath("spec").Child("externalIPs").Index(i), externalIP)...)
    	}
    
    	if len(service.Spec.LoadBalancerIP) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/maven/AbstractMavenPublishIntegTest.groovy

            }
            if (params.ext) {
                dependencyNotation = "${dependencyNotation}, ext: '${sq(params.ext)}'"
            }
    
            def externalRepo = requiresExternalDependencies?mavenCentralRepositoryDefinition():''
            def optional = params.optionalFeatureCapabilities.collect {
                "resolve($dependencyNotation) { capabilities { requireCapability('$it') } }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/SamplesIvyPublishIntegrationTest.groovy

            given:
            sample sampleProject
    
            and:
            def artifactId = "maven-conditional-publishing"
            def version = "1.0"
            def externalRepo = ivy(sampleProject.dir.file("build/repos/external"))
            def binary = externalRepo.module("org.gradle.sample", artifactId, version).withModuleMetadata()
            def internalRepo = ivy(sampleProject.dir.file("build/repos/internal"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/SamplesMavenPublishIntegrationTest.groovy

            inDirectory(sampleDir)
    
            and:
            def artifactId = "maven-conditional-publishing"
            def version = "1.0"
            def externalRepo = maven(sampleDir.file("build/repos/external"))
            def binary = externalRepo.module("org.gradle.sample", artifactId, version).withModuleMetadata()
            def internalRepo = maven(sampleDir.file("build/repos/internal"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. cluster/addons/metrics-server/metrics-server-deployment.yaml

            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
            - --kubelet-preferred-address-types=InternalIP,Hostname,InternalDNS,ExternalDNS,ExternalIP
            - --cert-dir=/tmp
            - --secure-port=10250
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
            readinessProbe:
              httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. prow/config/metrics/metrics.yaml

          labels:
            k8s-app: metrics-server
        spec:
          containers:
          - args:
            - --cert-dir=/tmp
            - --secure-port=10250
            - --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
            - --kubelet-use-node-status-port
            - --metric-resolution=15s
            - --kubelet-insecure-tls
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/util/node/node_test.go

    	testcases := []struct {
    		name      string
    		addresses []v1.NodeAddress
    
    		expectIPs []net.IP
    	}{
    		{
    			name:      "no addresses",
    			expectIPs: nil,
    		},
    		{
    			name: "no InternalIP/ExternalIP",
    			addresses: []v1.NodeAddress{
    				{Type: v1.NodeHostName, Address: "example.com"},
    			},
    			expectIPs: nil,
    		},
    		{
    			name: "IPv4-only, simple",
    			addresses: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top