renoki-co/php-k8s

View on GitHub
src/Contracts/Dnsable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace RenokiCo\PhpK8s\Contracts;

interface Dnsable
{
    /**
     * Get the DNS name within the cluster.
     *
     * @return string|null
     */
    public function getClusterDns();
}