28
28
29
29
abstract class Links
30
30
{
31
- public static function configMap (ConfigMap $ configMap ): Url
31
+ public static function configmap (ConfigMap $ configMap ): Url
32
32
{
33
33
return Url::fromPath ('kubernetes/configmap ' , ['id ' => (string ) Uuid::fromBytes ($ configMap ->uuid )]);
34
34
}
@@ -38,12 +38,12 @@ public static function container(Container $container): Url
38
38
return Url::fromPath ('kubernetes/container ' , ['id ' => (string ) Uuid::fromBytes ($ container ->uuid )]);
39
39
}
40
40
41
- public static function cronJob (CronJob $ cronjob ): Url
41
+ public static function cronjob (CronJob $ cronjob ): Url
42
42
{
43
43
return Url::fromPath ('kubernetes/cronjob ' , ['id ' => (string ) Uuid::fromBytes ($ cronjob ->uuid )]);
44
44
}
45
45
46
- public static function daemonSet (DaemonSet $ daemonSet ): Url
46
+ public static function daemonset (DaemonSet $ daemonSet ): Url
47
47
{
48
48
return Url::fromPath ('kubernetes/daemonset ' , ['id ' => (string ) Uuid::fromBytes ($ daemonSet ->uuid )]);
49
49
}
@@ -83,7 +83,7 @@ public static function node(Node $node): Url
83
83
return Url::fromPath ('kubernetes/node ' , ['id ' => (string ) Uuid::fromBytes ($ node ->uuid )]);
84
84
}
85
85
86
- public static function persistentVolume (PersistentVolume $ persistentVolume ): Url
86
+ public static function persistentvolume (PersistentVolume $ persistentVolume ): Url
87
87
{
88
88
return Url::fromPath (
89
89
'kubernetes/persistentvolume ' ,
@@ -96,15 +96,15 @@ public static function pod(Pod $pod): Url
96
96
return Url::fromPath ('kubernetes/pod ' , ['id ' => (string ) Uuid::fromBytes ($ pod ->uuid )]);
97
97
}
98
98
99
- public static function pvc (PersistentVolumeClaim $ persistentVolumeClaim ): Url
99
+ public static function persistentvolumeclaim (PersistentVolumeClaim $ persistentVolumeClaim ): Url
100
100
{
101
101
return Url::fromPath (
102
102
'kubernetes/persistentvolumeclaim ' ,
103
103
['id ' => (string ) Uuid::fromBytes ($ persistentVolumeClaim ->uuid )]
104
104
);
105
105
}
106
106
107
- public static function replicaSet (ReplicaSet $ replicaSet ): Url
107
+ public static function replicaset (ReplicaSet $ replicaSet ): Url
108
108
{
109
109
return Url::fromPath ('kubernetes/replicaset ' , ['id ' => (string ) Uuid::fromBytes ($ replicaSet ->uuid )]);
110
110
}
@@ -127,7 +127,7 @@ public static function sidecarContainer(SidecarContainer $sidecarContainer): Url
127
127
);
128
128
}
129
129
130
- public static function statefulSet (StatefulSet $ statefulSet ): Url
130
+ public static function statefulset (StatefulSet $ statefulSet ): Url
131
131
{
132
132
return Url::fromPath ('kubernetes/statefulset ' , ['id ' => (string ) Uuid::fromBytes ($ statefulSet ->uuid )]);
133
133
}
0 commit comments