Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for networking_v1alpha1 (0.56 sec)

  1. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "networking_v1alpha1"
            ]
          }
        },
        "/apis/networking.k8s.io/v1alpha1/ipaddresses": {
          "delete": {
            "description": "delete collection of IPAddress",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    					Labels: map[string]string{
    						networkingv1alpha1.LabelIPAddressFamily: string(v1.IPv6Protocol),
    						networkingv1alpha1.LabelManagedBy:       ipallocator.ControllerName,
    					},
    					CreationTimestamp: metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    				Spec: networkingv1alpha1.IPAddressSpec{
    					ParentRef: &networkingv1alpha1.ParentReference{
    						Group:     "",
    						Resource:  "services",
    						Name:      "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "schemes": [
              "https"
            ],
            "tags": [
              "networking_v1alpha1"
            ]
          }
        },
        "/apis/networking.k8s.io/v1alpha1/clustercidrs": {
          "delete": {
            "consumes": [
              "*/*"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    func newServiceCIDR(name, cidr string) *networkingv1alpha1.ServiceCIDR {
    	return &networkingv1alpha1.ServiceCIDR{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: networkingv1alpha1.ServiceCIDRSpec{
    			CIDRs: []string{cidr},
    		},
    		Status: networkingv1alpha1.ServiceCIDRStatus{
    			Conditions: []metav1.Condition{
    				{
    					Type:   string(networkingv1alpha1.ServiceCIDRConditionReady),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. pkg/config/schema/kubeclient/resources.gen.go

    	case *apiistioioapinetworkingv1alpha3.EnvoyFilter:
    		return c.Istio().NetworkingV1alpha3().EnvoyFilters(namespace).(ktypes.WriteAPI[T])
    	case *sigsk8siogatewayapiapisv1.GRPCRoute:
    		return c.GatewayAPI().GatewayV1().GRPCRoutes(namespace).(ktypes.WriteAPI[T])
    	case *apiistioioapinetworkingv1alpha3.Gateway:
    		return c.Istio().NetworkingV1alpha3().Gateways(namespace).(ktypes.WriteAPI[T])
    	case *sigsk8siogatewayapiapisv1beta1.GatewayClass:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "schemes": [
              "https"
            ],
            "tags": [
              "networking_v1alpha1"
            ]
          }
        },
        "/apis/networking.k8s.io/v1alpha1/ipaddresses": {
          "delete": {
            "consumes": [
              "*/*"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repairip.go

    func newIPAddress(name string, svc *v1.Service) *networkingv1alpha1.IPAddress {
    	family := string(v1.IPv4Protocol)
    	if netutils.IsIPv6String(name) {
    		family = string(v1.IPv6Protocol)
    	}
    	return &networkingv1alpha1.IPAddress{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    			Labels: map[string]string{
    				networkingv1alpha1.LabelIPAddressFamily: family,
    				networkingv1alpha1.LabelManagedBy:       ipallocator.ControllerName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.DestinationRule:
    		return c.Istio().NetworkingV1alpha3().DestinationRules(cfg.Namespace).Create(context.TODO(), &apiistioioapinetworkingv1alpha3.DestinationRule{
    			ObjectMeta: objMeta,
    			Spec:       *(cfg.Spec.(*istioioapinetworkingv1alpha3.DestinationRule)),
    		}, metav1.CreateOptions{})
    	case gvk.EnvoyFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  9. pkg/apis/networking/v1alpha1/register.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1alpha1
    
    import (
    	networkingv1alpha1 "k8s.io/api/networking/v1alpha1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package.
    const GroupName = "networking.k8s.io"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 05 00:54:00 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/cidrallocator.go

    		return err
    	}
    	return allocator.Release(ip)
    
    }
    func (c *MetaAllocator) ForEach(f func(ip net.IP)) {
    	ipLabelSelector := labels.Set(map[string]string{
    		networkingv1alpha1.LabelIPAddressFamily: string(c.IPFamily()),
    		networkingv1alpha1.LabelManagedBy:       ControllerName,
    	}).AsSelectorPreValidated()
    	ips, err := c.ipAddressLister.List(ipLabelSelector)
    	if err != nil {
    		return
    	}
    	for _, ip := range ips {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top