1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
"""
Python client for Kubernetes
"""
__version__ = "22.9.0"
from .config import KubeConfig # noqa: F401
from .exceptions import KubernetesError, PyKubeError, ObjectDoesNotExist # noqa: F401
from .http import HTTPClient # noqa: F401
from .objects import ( # noqa: F401
object_factory,
ConfigMap,
CronJob,
CustomResourceDefinition,
DaemonSet,
Deployment,
Endpoint,
Event,
HorizontalPodAutoscaler,
Ingress,
Job,
LimitRange,
Namespace,
Node,
PersistentVolume,
PersistentVolumeClaim,
Pod,
PodDisruptionBudget,
PodSecurityPolicy,
ReplicationController,
ReplicaSet,
ResourceQuota,
Secret,
Service,
ServiceAccount,
StatefulSet,
Role,
ClusterRole,
RoleBinding,
ClusterRoleBinding,
)
from .query import now, all_ as all, everything # noqa: F401
|