Deprecated.
NAME
Kubernetes::REST::RbacAuthorization - DEPRECATED - v0 API group for RBAC resources
VERSION
version 1.001
SYNOPSIS
# DEPRECATED API - use the new v1 API instead
# Old way (deprecated):
my $roles = $api->RbacAuthorization->ListNamespacedRole(namespace => 'default');
# New way:
my $roles = $api->list('Role', namespace => 'default');
DESCRIPTION
This module is DEPRECATED. It provides backwards compatibility for the v0 API (Kubernetes::REST 0.01/0.02 by JLMARTIN) which used method names like $api->RbacAuthorization->ListNamespacedRole(...).
The new v1 API uses simple methods directly on the main Kubernetes::REST object:
$api->list('Role', ...)
$api->list('RoleBinding', ...)
$api->list('ClusterRole')
$api->create($role)
See "UPGRADING FROM 0.02" in Kubernetes::REST for migration guide.
SEE ALSO
Kubernetes::REST - Main module with v1 API
Kubernetes::REST::V0Group - Base class for v0 compatibility layer
SUPPORT
Issues
Please report bugs and feature requests on GitHub at https://github.com/pplu/kubernetes-rest/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> (JLMARTIN, original author, inactive)
COPYRIGHT AND LICENSE
This software is Copyright (c) 2019 by Jose Luis Martinez.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004