Skip to content

Commit

Permalink
feat: expose pvc
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-ni committed Jul 7, 2024
1 parent 4f49108 commit 4b6e681
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion transpire/resources/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from .configmap import ConfigMap
from .deployment import Deployment
from .ingress import Ingress
from .pvc import PersistentVolumeClaim
from .secret import Secret
from .service import Service
from .statefulset import StatefulSet

__all__ = ["Deployment", "Ingress", "Service", "Secret", "ConfigMap"]
__all__ = ["Deployment", "Ingress", "Service", "Secret", "ConfigMap", "PersistentVolumeClaim"]

0 comments on commit 4b6e681

Please sign in to comment.