renoki-co/php-k8s

View on GitHub
src/Contracts/Podable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace RenokiCo\PhpK8s\Contracts;

interface Podable
{
    /**
     * Get the selector for the pods that are owned by this resource.
     *
     * @return array
     */
    public function podsSelector(): array;
}