mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2026-08-28 10:04:57 -05:00
17 lines
375 B
Python
17 lines
375 B
Python
"""Kubernetes module."""
|
|
|
|
from ...core.module import Module
|
|
from ...core.registry import registry
|
|
from ...core.validation import KubernetesValidator
|
|
|
|
|
|
class KubernetesModule(Module):
|
|
"""Kubernetes module."""
|
|
|
|
name = "kubernetes"
|
|
description = "Manage Kubernetes configurations"
|
|
kind_validator_class = KubernetesValidator
|
|
|
|
|
|
registry.register(KubernetesModule)
|