Skip to content

Commit

Permalink
Adding support for getting all configmaps (kubeflow#2941)
Browse files Browse the repository at this point in the history
* Adding support for configmap

* changing Enum to GET_CONFIG_MAPS
  • Loading branch information
SinaChavoshi authored and Jeffwan committed Dec 9, 2020
1 parent ab15333 commit 19688f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdk/python/kfp/cli/diagnose_me/kubernetes_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class Commands(enum.Enum):
GET_SECRETS = 5
GET_SERVICES = 6
GET_KUBECTL_VERSION = 7
GET_CONFIG_MAPS = 8


_command_string = {
Expand All @@ -38,6 +39,7 @@ class Commands(enum.Enum):
Commands.GET_SECRETS: 'get secrets',
Commands.GET_SERVICES: 'get services',
Commands.GET_KUBECTL_VERSION: 'version',
Commands.GET_CONFIG_MAPS: 'get configmaps',
}


Expand Down

0 comments on commit 19688f9

Please sign in to comment.