Skip to content

Commit

Permalink
fix(aliases): Add missing object aliases (#54)
Browse files Browse the repository at this point in the history
* configmaps (aka 'cm')
* deployments (aka 'deploy')
* endpoints (aka 'ep')
  • Loading branch information
silasbw authored and jcrugzz committed Dec 24, 2016
1 parent dc1476c commit 3cf1e3a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ module.exports.aliasResources = function (resourceObject) {
// and anything else we think is useful.
const resourceAliases = {
componentstatuses: ['cs'],
configmaps: [],
configmaps: ['cm'],
daemonsets: ['ds'],
deployments: [],
deployments: ['deploy'],
events: ['ev'],
endpoints: ['ep'],
horizontalpodautoscalers: ['hpa'],
ingresses: ['ing'],
jobs: [],
Expand Down

0 comments on commit 3cf1e3a

Please sign in to comment.