This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Converts passed slug to capitalized display value. Not super clever, just | |
| * intended to deal with lowercase, dashed slugs. Ex.: bananas-in-pajamas --> | |
| * Bananas In Pajamas | |
| * | |
| * @param {String} slug Slug to convert to display text | |
| * | |
| * @return {String} Returns formatted text | |
| */ | |
| function slugToDisplay ( slug ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################### | |
| # Kubernetes Shortcuts ######################################################## | |
| ############################################################################### | |
| # Shell functions and aliases for common things I do with kubectl (Kubernetes, | |
| # K8s) | |
| # | |
| # A lot of the below makes the following assumptions: | |
| # - That you have separate staging and production clusters or a similar | |
| # arrangement |
OlderNewer