├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Client.php ├── Collections │ ├── CertificateCollection.php │ ├── Collection.php │ ├── ConfigMapCollection.php │ ├── CronJobCollection.php │ ├── DaemonSetCollection.php │ ├── DeploymentCollection.php │ ├── EndpointCollection.php │ ├── EventCollection.php │ ├── HorizontalPodAutoscalerCollection.php │ ├── IngressCollection.php │ ├── IssuerCollection.php │ ├── JobCollection.php │ ├── NamespaceCollection.php │ ├── NetworkPolicyCollection.php │ ├── NodeCollection.php │ ├── PersistentVolumeClaimCollection.php │ ├── PersistentVolumeCollection.php │ ├── PodCollection.php │ ├── QuotaCollection.php │ ├── ReplicaSetCollection.php │ ├── ReplicationControllerCollection.php │ ├── RoleBindingCollection.php │ ├── RoleCollection.php │ ├── SecretCollection.php │ ├── ServiceAccountCollection.php │ └── ServiceCollection.php ├── Exceptions │ ├── ApiServerException.php │ ├── BadRequestException.php │ └── MissingOptionException.php ├── Models │ ├── Certificate.php │ ├── ConfigMap.php │ ├── CronJob.php │ ├── DaemonSet.php │ ├── DeleteOptions.php │ ├── Deployment.php │ ├── Endpoint.php │ ├── Event.php │ ├── HorizontalPodAutoscaler.php │ ├── Ingress.php │ ├── Issuer.php │ ├── Job.php │ ├── Model.php │ ├── NamespaceModel.php │ ├── NetworkPolicy.php │ ├── Node.php │ ├── PersistentVolume.php │ ├── PersistentVolumeClaim.php │ ├── Pod.php │ ├── QuotaModel.php │ ├── ReplicaSet.php │ ├── ReplicationController.php │ ├── Role.php │ ├── RoleBinding.php │ ├── Secret.php │ ├── Service.php │ └── ServiceAccount.php ├── Repositories │ ├── CertificateRepository.php │ ├── ConfigMapRepository.php │ ├── CronJobRepository.php │ ├── DaemonSetRepository.php │ ├── DeploymentRepository.php │ ├── EndpointRepository.php │ ├── EventRepository.php │ ├── HorizontalPodAutoscalerRepository.php │ ├── IngressRepository.php │ ├── IssuerRepository.php │ ├── JobRepository.php │ ├── NamespaceRepository.php │ ├── NetworkPolicyRepository.php │ ├── NodeRepository.php │ ├── PersistentVolumeClaimRepository.php │ ├── PersistentVolumeRepository.php │ ├── PodRepository.php │ ├── QuotaRepository.php │ ├── ReplicaSetRepository.php │ ├── ReplicationControllerRepository.php │ ├── Repository.php │ ├── RoleBindingRepository.php │ ├── RoleRepository.php │ ├── SecretRepository.php │ ├── ServiceAccountRepository.php │ ├── ServiceRepository.php │ ├── Strategy │ │ └── PatchMergeTrait.php │ └── Utils │ │ ├── JSONStreamingListener.php │ │ ├── JSONStreamingParser.php │ │ └── JSONStreamingParserHelper.php └── RepositoryRegistry.php └── tests ├── ClientTest.php ├── RepositoryRegistryTest.php ├── TestCase.php ├── collections ├── CertificateCollectionTest.php ├── ConfigMapCollectionTest.php ├── DeploymentCollectionTest.php ├── EndpointCollectionTest.php ├── EventCollectionTest.php ├── IngressCollectionTest.php ├── IssuerCollectionTest.php ├── JobCollectionTest.php ├── NamespaceCollectionTest.php ├── NetworkPolicyCollectionTest.php ├── NodeCollectionTest.php ├── PodCollectionTest.php ├── ReplicaSetCollectionTest.php ├── ReplicationControllerCollectionTest.php ├── RoleBindingCollectionTest.php ├── RoleCollectionTest.php ├── SecretCollectionTest.php ├── ServiceAccountCollectionTest.php └── ServiceCollectionTest.php ├── fixtures ├── certificates │ └── empty.json ├── config-maps │ └── empty.json ├── cron-jobs │ └── empty.json ├── deployments │ └── empty.json ├── endpoints │ └── empty.json ├── events │ └── empty.json ├── ingresses │ └── empty.json ├── issuers │ └── empty.json ├── jobs │ └── empty.json ├── namespaces │ └── empty.json ├── network-policies │ └── empty.json ├── nodes │ └── empty.json ├── pods │ └── empty.json ├── replica-sets │ └── empty.json ├── replication-controllers │ └── empty.json ├── roles-bindings │ └── empty.json ├── roles │ └── empty.json ├── secrets │ └── empty.json ├── services-accounts │ └── empty.json └── services │ └── empty.json ├── helpers └── HttpMethodsMockClient.php └── models ├── CertificateTest.php ├── ConfigMapTest.php ├── CronJobTest.php ├── DeploymentTest.php ├── EndpointTest.php ├── EventTest.php ├── IngressTest.php ├── IssuerTest.php ├── JobTest.php ├── ModelTest.php ├── NamespaceTest.php ├── NetworkPolicyTest.php ├── NodeTest.php ├── PodTest.php ├── ReplicaSetTest.php ├── ReplicationControllerTest.php ├── RoleBindingTest.php ├── RoleTest.php ├── SecretTest.php ├── ServiceAccountTest.php └── ServiceTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Collections/CertificateCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/CertificateCollection.php -------------------------------------------------------------------------------- /src/Collections/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/Collection.php -------------------------------------------------------------------------------- /src/Collections/ConfigMapCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/ConfigMapCollection.php -------------------------------------------------------------------------------- /src/Collections/CronJobCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/CronJobCollection.php -------------------------------------------------------------------------------- /src/Collections/DaemonSetCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/DaemonSetCollection.php -------------------------------------------------------------------------------- /src/Collections/DeploymentCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/DeploymentCollection.php -------------------------------------------------------------------------------- /src/Collections/EndpointCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/EndpointCollection.php -------------------------------------------------------------------------------- /src/Collections/EventCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/EventCollection.php -------------------------------------------------------------------------------- /src/Collections/HorizontalPodAutoscalerCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/HorizontalPodAutoscalerCollection.php -------------------------------------------------------------------------------- /src/Collections/IngressCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/IngressCollection.php -------------------------------------------------------------------------------- /src/Collections/IssuerCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/IssuerCollection.php -------------------------------------------------------------------------------- /src/Collections/JobCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/JobCollection.php -------------------------------------------------------------------------------- /src/Collections/NamespaceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/NamespaceCollection.php -------------------------------------------------------------------------------- /src/Collections/NetworkPolicyCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/NetworkPolicyCollection.php -------------------------------------------------------------------------------- /src/Collections/NodeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/NodeCollection.php -------------------------------------------------------------------------------- /src/Collections/PersistentVolumeClaimCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/PersistentVolumeClaimCollection.php -------------------------------------------------------------------------------- /src/Collections/PersistentVolumeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/PersistentVolumeCollection.php -------------------------------------------------------------------------------- /src/Collections/PodCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/PodCollection.php -------------------------------------------------------------------------------- /src/Collections/QuotaCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/QuotaCollection.php -------------------------------------------------------------------------------- /src/Collections/ReplicaSetCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/ReplicaSetCollection.php -------------------------------------------------------------------------------- /src/Collections/ReplicationControllerCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/ReplicationControllerCollection.php -------------------------------------------------------------------------------- /src/Collections/RoleBindingCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/RoleBindingCollection.php -------------------------------------------------------------------------------- /src/Collections/RoleCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/RoleCollection.php -------------------------------------------------------------------------------- /src/Collections/SecretCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/SecretCollection.php -------------------------------------------------------------------------------- /src/Collections/ServiceAccountCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/ServiceAccountCollection.php -------------------------------------------------------------------------------- /src/Collections/ServiceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Collections/ServiceCollection.php -------------------------------------------------------------------------------- /src/Exceptions/ApiServerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Exceptions/ApiServerException.php -------------------------------------------------------------------------------- /src/Exceptions/BadRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Exceptions/BadRequestException.php -------------------------------------------------------------------------------- /src/Exceptions/MissingOptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Exceptions/MissingOptionException.php -------------------------------------------------------------------------------- /src/Models/Certificate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Certificate.php -------------------------------------------------------------------------------- /src/Models/ConfigMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/ConfigMap.php -------------------------------------------------------------------------------- /src/Models/CronJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/CronJob.php -------------------------------------------------------------------------------- /src/Models/DaemonSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/DaemonSet.php -------------------------------------------------------------------------------- /src/Models/DeleteOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/DeleteOptions.php -------------------------------------------------------------------------------- /src/Models/Deployment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Deployment.php -------------------------------------------------------------------------------- /src/Models/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Endpoint.php -------------------------------------------------------------------------------- /src/Models/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Event.php -------------------------------------------------------------------------------- /src/Models/HorizontalPodAutoscaler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/HorizontalPodAutoscaler.php -------------------------------------------------------------------------------- /src/Models/Ingress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Ingress.php -------------------------------------------------------------------------------- /src/Models/Issuer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Issuer.php -------------------------------------------------------------------------------- /src/Models/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Job.php -------------------------------------------------------------------------------- /src/Models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Model.php -------------------------------------------------------------------------------- /src/Models/NamespaceModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/NamespaceModel.php -------------------------------------------------------------------------------- /src/Models/NetworkPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/NetworkPolicy.php -------------------------------------------------------------------------------- /src/Models/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Node.php -------------------------------------------------------------------------------- /src/Models/PersistentVolume.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/PersistentVolume.php -------------------------------------------------------------------------------- /src/Models/PersistentVolumeClaim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/PersistentVolumeClaim.php -------------------------------------------------------------------------------- /src/Models/Pod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Pod.php -------------------------------------------------------------------------------- /src/Models/QuotaModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/QuotaModel.php -------------------------------------------------------------------------------- /src/Models/ReplicaSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/ReplicaSet.php -------------------------------------------------------------------------------- /src/Models/ReplicationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/ReplicationController.php -------------------------------------------------------------------------------- /src/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Role.php -------------------------------------------------------------------------------- /src/Models/RoleBinding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/RoleBinding.php -------------------------------------------------------------------------------- /src/Models/Secret.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Secret.php -------------------------------------------------------------------------------- /src/Models/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/Service.php -------------------------------------------------------------------------------- /src/Models/ServiceAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Models/ServiceAccount.php -------------------------------------------------------------------------------- /src/Repositories/CertificateRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/CertificateRepository.php -------------------------------------------------------------------------------- /src/Repositories/ConfigMapRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/ConfigMapRepository.php -------------------------------------------------------------------------------- /src/Repositories/CronJobRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/CronJobRepository.php -------------------------------------------------------------------------------- /src/Repositories/DaemonSetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/DaemonSetRepository.php -------------------------------------------------------------------------------- /src/Repositories/DeploymentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/DeploymentRepository.php -------------------------------------------------------------------------------- /src/Repositories/EndpointRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/EndpointRepository.php -------------------------------------------------------------------------------- /src/Repositories/EventRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/EventRepository.php -------------------------------------------------------------------------------- /src/Repositories/HorizontalPodAutoscalerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/HorizontalPodAutoscalerRepository.php -------------------------------------------------------------------------------- /src/Repositories/IngressRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/IngressRepository.php -------------------------------------------------------------------------------- /src/Repositories/IssuerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/IssuerRepository.php -------------------------------------------------------------------------------- /src/Repositories/JobRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/JobRepository.php -------------------------------------------------------------------------------- /src/Repositories/NamespaceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/NamespaceRepository.php -------------------------------------------------------------------------------- /src/Repositories/NetworkPolicyRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/NetworkPolicyRepository.php -------------------------------------------------------------------------------- /src/Repositories/NodeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/NodeRepository.php -------------------------------------------------------------------------------- /src/Repositories/PersistentVolumeClaimRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/PersistentVolumeClaimRepository.php -------------------------------------------------------------------------------- /src/Repositories/PersistentVolumeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/PersistentVolumeRepository.php -------------------------------------------------------------------------------- /src/Repositories/PodRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/PodRepository.php -------------------------------------------------------------------------------- /src/Repositories/QuotaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/QuotaRepository.php -------------------------------------------------------------------------------- /src/Repositories/ReplicaSetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/ReplicaSetRepository.php -------------------------------------------------------------------------------- /src/Repositories/ReplicationControllerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/ReplicationControllerRepository.php -------------------------------------------------------------------------------- /src/Repositories/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/Repository.php -------------------------------------------------------------------------------- /src/Repositories/RoleBindingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/RoleBindingRepository.php -------------------------------------------------------------------------------- /src/Repositories/RoleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/RoleRepository.php -------------------------------------------------------------------------------- /src/Repositories/SecretRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/SecretRepository.php -------------------------------------------------------------------------------- /src/Repositories/ServiceAccountRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/ServiceAccountRepository.php -------------------------------------------------------------------------------- /src/Repositories/ServiceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/ServiceRepository.php -------------------------------------------------------------------------------- /src/Repositories/Strategy/PatchMergeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/Strategy/PatchMergeTrait.php -------------------------------------------------------------------------------- /src/Repositories/Utils/JSONStreamingListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/Utils/JSONStreamingListener.php -------------------------------------------------------------------------------- /src/Repositories/Utils/JSONStreamingParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/Utils/JSONStreamingParser.php -------------------------------------------------------------------------------- /src/Repositories/Utils/JSONStreamingParserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/Repositories/Utils/JSONStreamingParserHelper.php -------------------------------------------------------------------------------- /src/RepositoryRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/src/RepositoryRegistry.php -------------------------------------------------------------------------------- /tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/ClientTest.php -------------------------------------------------------------------------------- /tests/RepositoryRegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/RepositoryRegistryTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/collections/CertificateCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/CertificateCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/ConfigMapCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/ConfigMapCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/DeploymentCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/DeploymentCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/EndpointCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/EndpointCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/EventCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/EventCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/IngressCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/IngressCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/IssuerCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/IssuerCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/JobCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/JobCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/NamespaceCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/NamespaceCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/NetworkPolicyCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/NetworkPolicyCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/NodeCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/NodeCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/PodCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/PodCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/ReplicaSetCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/ReplicaSetCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/ReplicationControllerCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/ReplicationControllerCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/RoleBindingCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/RoleBindingCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/RoleCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/RoleCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/SecretCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/SecretCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/ServiceAccountCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/ServiceAccountCollectionTest.php -------------------------------------------------------------------------------- /tests/collections/ServiceCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/collections/ServiceCollectionTest.php -------------------------------------------------------------------------------- /tests/fixtures/certificates/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/certificates/empty.json -------------------------------------------------------------------------------- /tests/fixtures/config-maps/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/config-maps/empty.json -------------------------------------------------------------------------------- /tests/fixtures/cron-jobs/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/cron-jobs/empty.json -------------------------------------------------------------------------------- /tests/fixtures/deployments/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/deployments/empty.json -------------------------------------------------------------------------------- /tests/fixtures/endpoints/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/endpoints/empty.json -------------------------------------------------------------------------------- /tests/fixtures/events/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/events/empty.json -------------------------------------------------------------------------------- /tests/fixtures/ingresses/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/ingresses/empty.json -------------------------------------------------------------------------------- /tests/fixtures/issuers/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/issuers/empty.json -------------------------------------------------------------------------------- /tests/fixtures/jobs/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/jobs/empty.json -------------------------------------------------------------------------------- /tests/fixtures/namespaces/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/namespaces/empty.json -------------------------------------------------------------------------------- /tests/fixtures/network-policies/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/network-policies/empty.json -------------------------------------------------------------------------------- /tests/fixtures/nodes/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/nodes/empty.json -------------------------------------------------------------------------------- /tests/fixtures/pods/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/pods/empty.json -------------------------------------------------------------------------------- /tests/fixtures/replica-sets/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/replica-sets/empty.json -------------------------------------------------------------------------------- /tests/fixtures/replication-controllers/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/replication-controllers/empty.json -------------------------------------------------------------------------------- /tests/fixtures/roles-bindings/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/roles-bindings/empty.json -------------------------------------------------------------------------------- /tests/fixtures/roles/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/roles/empty.json -------------------------------------------------------------------------------- /tests/fixtures/secrets/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/secrets/empty.json -------------------------------------------------------------------------------- /tests/fixtures/services-accounts/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/services-accounts/empty.json -------------------------------------------------------------------------------- /tests/fixtures/services/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/fixtures/services/empty.json -------------------------------------------------------------------------------- /tests/helpers/HttpMethodsMockClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/helpers/HttpMethodsMockClient.php -------------------------------------------------------------------------------- /tests/models/CertificateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/CertificateTest.php -------------------------------------------------------------------------------- /tests/models/ConfigMapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/ConfigMapTest.php -------------------------------------------------------------------------------- /tests/models/CronJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/CronJobTest.php -------------------------------------------------------------------------------- /tests/models/DeploymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/DeploymentTest.php -------------------------------------------------------------------------------- /tests/models/EndpointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/EndpointTest.php -------------------------------------------------------------------------------- /tests/models/EventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/EventTest.php -------------------------------------------------------------------------------- /tests/models/IngressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/IngressTest.php -------------------------------------------------------------------------------- /tests/models/IssuerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/IssuerTest.php -------------------------------------------------------------------------------- /tests/models/JobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/JobTest.php -------------------------------------------------------------------------------- /tests/models/ModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/ModelTest.php -------------------------------------------------------------------------------- /tests/models/NamespaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/NamespaceTest.php -------------------------------------------------------------------------------- /tests/models/NetworkPolicyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/NetworkPolicyTest.php -------------------------------------------------------------------------------- /tests/models/NodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/NodeTest.php -------------------------------------------------------------------------------- /tests/models/PodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/PodTest.php -------------------------------------------------------------------------------- /tests/models/ReplicaSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/ReplicaSetTest.php -------------------------------------------------------------------------------- /tests/models/ReplicationControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/ReplicationControllerTest.php -------------------------------------------------------------------------------- /tests/models/RoleBindingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/RoleBindingTest.php -------------------------------------------------------------------------------- /tests/models/RoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/RoleTest.php -------------------------------------------------------------------------------- /tests/models/SecretTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/SecretTest.php -------------------------------------------------------------------------------- /tests/models/ServiceAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/ServiceAccountTest.php -------------------------------------------------------------------------------- /tests/models/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maclof/kubernetes-client/HEAD/tests/models/ServiceTest.php --------------------------------------------------------------------------------