NAME
IO::K8s::GatewayAPI - Gateway API CRD resource map provider for IO::K8s
VERSION
version 1.105
SYNOPSIS
my $k8s = IO::K8s->new(with => ['IO::K8s::GatewayAPI']);
my $gw = $k8s->new_object('Gateway',
metadata => { name => 'my-gateway', namespace => 'default' },
spec => {
gatewayClassName => 'istio',
listeners => [{ name => 'http', port => 80, protocol => 'HTTP' }],
},
);
print $gw->to_yaml;
DESCRIPTION
Resource map provider for the Kubernetes Gateway API Custom Resource Definitions. Registers 11 CRD classes covering gateway.networking.k8s.io/v1 (GA/Standard channel) and gateway.networking.k8s.io/v1beta1 (still the storage version for ReferenceGrant).
The Gateway API is an official Kubernetes SIG-Network project that provides expressive, extensible, and role-oriented interfaces for service networking.
Not loaded by default — opt in via the with constructor parameter of IO::K8s or by calling $k8s->add('IO::K8s::GatewayAPI') at runtime.
Included CRDs (gateway.networking.k8s.io/v1)
GatewayClass (cluster-scoped), Gateway (namespaced), HTTPRoute (namespaced), GRPCRoute (namespaced), BackendTLSPolicy (namespaced), ListenerSet (namespaced), TLSRoute (namespaced), TCPRoute (namespaced), UDPRoute (namespaced), ReferenceGrant (namespaced; reachable only via the domain-qualified name gateway.networking.k8s.io/v1/ReferenceGrant since the short name ReferenceGrant resolves to the v1beta1 storage version)
Included CRDs (gateway.networking.k8s.io/v1beta1)
ReferenceGrant (namespaced) - the storage version; the short name ReferenceGrant resolves here
SEE ALSO
SUPPORT
Issues
Please report bugs and feature requests on GitHub at https://github.com/pplu/io-k8s-p5/issues.
IRC
Join #kubernetes on irc.perl.org or message Getty directly.
CONTRIBUTING
Contributions are welcome! Please fork the repository and submit a pull request.
AUTHORS
Torsten Raudssus <torsten@raudssus.de>
Jose Luis Martinez Torres <jlmartin@cpan.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2018-2026 by Jose Luis Martinez Torres <jlmartin@cpan.org>.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004