Skip to content

Commit

Permalink
feat(provider/kubernetes): register batchv1 api (#2473)
Browse files Browse the repository at this point in the history
Note, this isn't totally necessary since once you have jobs in your k8s
cluster, Spinnaker will register this. But since we do it for other APIs
that we support "out of the box", we may as well be consistent.
  • Loading branch information
lwander authored Mar 30, 2018
1 parent bcc87a9 commit a1f22b3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class KubernetesApiVersion {
public static KubernetesApiVersion NETWORKING_K8S_IO_V1 = new KubernetesApiVersion("network.k8s.io/v1");
public static KubernetesApiVersion APPS_V1BETA1 = new KubernetesApiVersion("apps/v1beta1");
public static KubernetesApiVersion APPS_V1BETA2 = new KubernetesApiVersion("apps/v1beta2");
public static KubernetesApiVersion BATCH_V1 = new KubernetesApiVersion("batch/v1");

private final String name;

Expand Down

0 comments on commit a1f22b3

Please sign in to comment.