Skip to content

Commit

Permalink
Small PKS paths refactoring
Browse files Browse the repository at this point in the history
Small PKS paths refactoring for consistency in the format of the
constants.

Change-Id: I07e85b8c1a9ca6400988862904d8640d3067ef99
Reviewed-on: https://bellevue-ci.eng.vmware.com:8080/45246
Closures-Verified: jenkins <[email protected]>
Upgrade-Verified: jenkins <[email protected]>
PG-Verified: jenkins <[email protected]>
Bellevue-Verified: jenkins <[email protected]>
CS-Verified: jenkins <[email protected]>
Reviewed-by: Lazarin Lazarov <[email protected]>
Sergio Sanchez committed Sep 28, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent eaf8892 commit 8fd5317
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -145,12 +145,12 @@ public interface ManagementUriParts {
+ "/container-description-to-kubernetes-description-converter";
String KUBERNETES_GENERIC_ENTITIES = RESOURCES + "/kubernetes-generic-entities";

String PKS_NAMESPACE = "/pks";
String PKS_ENDPOINTS = RESOURCES + PKS_NAMESPACE + "/endpoints";
String PKS_CREATE_ENDPOINT = RESOURCES + PKS_NAMESPACE + "/create-endpoint";
String PKS_CLUSTERS = RESOURCES + PKS_NAMESPACE + "/clusters";
String PKS_PLANS = RESOURCES + PKS_NAMESPACE + "/plans";
String PKS_CLUSTERS_CONFIG = RESOURCES + PKS_NAMESPACE + "/clusters-config";
String PKS_NAMESPACE = RESOURCES + "/pks";
String PKS_ENDPOINTS = PKS_NAMESPACE + "/endpoints";
String PKS_CREATE_ENDPOINT = PKS_NAMESPACE + "/create-endpoint";
String PKS_CLUSTERS = PKS_NAMESPACE + "/clusters";
String PKS_PLANS = PKS_NAMESPACE + "/plans";
String PKS_CLUSTERS_CONFIG = PKS_NAMESPACE + "/clusters-config";
String PKS_KUBE_CONFIG_CONTENT = RESOURCES + "/kube-config";

// Request tasks:

0 comments on commit 8fd5317

Please sign in to comment.