Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for externalname (0.37 sec)

  1. pilot/pkg/features/pilot.go

    		"If enabled, ExternalName Services will be treated as simple aliases: anywhere where we would match the concrete service, "+
    			"we also match the ExternalName. In general, this mirrors Kubernetes behavior more closely. However, it means that policies (routes and DestinationRule) "+
    			"cannot be applied to the ExternalName service. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    			},
    		})
    	}
    	service := `apiVersion: v1
    kind: Service
    metadata:
      name: alias
      namespace: default
    spec:
      type: ExternalName
      externalName: concrete.default.svc.cluster.local
    ` + `---
    apiVersion: v1
    kind: Service
    metadata:
      name: concrete
      namespace: default
    spec:
      clusterIP: 1.2.3.4
      ports:` + ports
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			// Test ExternalName service
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "test7"},
    				Spec: api.ServiceSpec{
    					Type:         api.ServiceTypeExternalName,
    					ExternalName: "my.database.example.com",
    				},
    			},
    			options: printers.GenerateOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    			return strings.Join(results, ",")
    		}
    		if len(lbIps) > 0 {
    			return lbIps
    		}
    		return "<pending>"
    	case api.ServiceTypeExternalName:
    		return svc.Spec.ExternalName
    	}
    	return "<unknown>"
    }
    
    func makePortString(ports []api.ServicePort) string {
    	pieces := make([]string, len(ports))
    	for ix := range ports {
    		port := &ports[ix]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                }
    
                return result;
            }
    
            private void remapClass(Class<?> classToMap, ZipOutputStream jar) throws IOException {
                String internalName = Type.getInternalName(classToMap);
                String resourceName = internalName.concat(".class");
                URL resource = WorkerProcessClassPathProvider.class.getClassLoader().getResource(resourceName);
                if (resource == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    					// We only care about listeners on the same protocol
    					continue
    				}
    				bannedHostnames.Insert(gw.OriginalHostname)
    			}
    			rpi := routeParentReference{
    				InternalName:      pr.InternalName,
    				InternalKind:      ir.Kind,
    				Hostname:          pr.OriginalHostname,
    				DeniedReason:      referenceAllowed(pr, kind, pk, hostnames, localNamespace),
    				OriginalReference: ref,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - `PodGC` for pods which are in terminal phase now do not add the `DisruptionTarget` condition. ([#115056](https://github.com/kubernetes/kubernetes/pull/115056), [@mimowo](https://github.com/mimowo))
    - `Service` of type `ExternalName` do not create an `Endpoint` anymore. ([#114814](https://github.com/kubernetes/kubernetes/pull/114814), [@panslava](https://github.com/panslava))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top