Skip to content

Commit

Permalink
fix(provider/kubernetes): kinds are now capitalized (#1571)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwander committed Apr 14, 2017
1 parent a63b028 commit 9c0dcf2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class KubernetesUtil {
static String SECURITY_GROUP_LABEL_PREFIX = "security-group-"
static String LOAD_BALANCER_LABEL_PREFIX = "load-balancer-"
static String SERVER_GROUP_LABEL = "replication-controller"
static String SERVER_GROUP_KIND = "replicaSet"
static String DEPLOYMENT_KIND = "deployment"
static String SERVER_GROUP_KIND = "ReplicaSet"
static String DEPLOYMENT_KIND = "Deployment"
static String JOB_LABEL = "job"
@Value("kubernetes.defaultRegistry:gcr.io")
static String DEFAULT_REGISTRY
Expand Down

0 comments on commit 9c0dcf2

Please sign in to comment.