Skip to content

Commit

Permalink
chore(kubernetes): Adding csidriver and csinode kubernetes kinds (bac…
Browse files Browse the repository at this point in the history
…kport #5552) (#5559)

Co-authored-by: Digital On Us <digitalonus@Digitals-MacBook-Pro.local>
Co-authored-by: AdanUrbanReyesArmory <90003238+AdanUrbanReyesArmory@users.noreply.github.com>
  • Loading branch information
3 people committed Oct 19, 2021
1 parent eb09c7b commit 982d9df
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ public class KubernetesKind {
createWithAlias("customResourceDefinition", "crd", KubernetesApiGroup.EXTENSIONS);
public static final KubernetesKind CRON_JOB =
createWithAlias("cronJob", null, KubernetesApiGroup.BATCH);
public static final KubernetesKind CSI_DRIVERS =
createWithAlias("csiDriver", null, KubernetesApiGroup.STORAGE_K8S_IO);
public static final KubernetesKind CSI_NODES =
createWithAlias("csiNode", null, KubernetesApiGroup.STORAGE_K8S_IO);
public static final KubernetesKind DAEMON_SET =
createWithAlias("daemonSet", "ds", KubernetesApiGroup.APPS);
public static final KubernetesKind DEPLOYMENT =
Expand Down

0 comments on commit 982d9df

Please sign in to comment.