NAME

Kubernetes::REST::HTTPTinyIO - HTTP client using HTTP::Tiny

VERSION

version 1.000

SYNOPSIS

use Kubernetes::REST::HTTPTinyIO;

my $io = Kubernetes::REST::HTTPTinyIO->new(
    ssl_verify_server => 1,
    ssl_ca_file => '/path/to/ca.crt',
);

DESCRIPTION

HTTP client implementation using HTTP::Tiny for making Kubernetes API requests. Lighter alternative to Kubernetes::REST::LWPIO.

ssl_verify_server

Boolean. Whether to verify the server's SSL certificate. Defaults to true.

ssl_cert_file

Optional. Path to client certificate file for mTLS authentication.

ssl_key_file

Optional. Path to client key file for mTLS authentication.

ssl_ca_file

Optional. Path to CA certificate file for verifying the server certificate.

timeout

Timeout in seconds for HTTP requests. Defaults to 310 (slightly more than the Kubernetes default watch timeout of 300s).

ua

The underlying HTTP::Tiny instance.

call

my $response = $io->call($req);

Execute an HTTP request. Receives a fully prepared Kubernetes::REST::HTTPRequest (URL, headers, content all set). Returns a Kubernetes::REST::HTTPResponse.

call_streaming

my $response = $io->call_streaming($req, sub { my ($chunk) = @_; ... });

Execute an HTTP request with streaming response. The $data_callback is called with each chunk of data as it arrives.

Used internally by "watch" in Kubernetes::REST for the Watch API.

SEE ALSO

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