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 43 44
|
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _K8S
class _Compute(_K8S):
_type = "compute"
_icon_dir = "resources/k8s/compute"
class Cronjob(_Compute):
_icon = "cronjob.png"
class Deploy(_Compute):
_icon = "deploy.png"
class DS(_Compute):
_icon = "ds.png"
class Job(_Compute):
_icon = "job.png"
class Pod(_Compute):
_icon = "pod.png"
class RS(_Compute):
_icon = "rs.png"
class STS(_Compute):
_icon = "sts.png"
# Aliases
Deployment = Deploy
DaemonSet = DS
ReplicaSet = RS
StatefulSet = STS
|