Last active
July 3, 2017 19:00
-
-
Save jefflaplante/e85db3acffbefa46b86ab6a593ac072b to your computer and use it in GitHub Desktop.
Revisions
-
jefflaplante revised this gist
Jul 3, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ kubectl get pods --all-namespaces -o go-template='{{ range .items }}{{- printf "%-5s\t%-45s\t%-20v\t" .metadata.namespace .metadata.name .status.startTime}}{{- range .spec.containers }}{{- printf "%s " .image }}{{- end }}{{- printf "\n" }}{{- end }}' -
jefflaplante revised this gist
Jul 3, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ kubectl get pods --all-namespaces -o go-template='{{ range .items }}{{- printf "%-10s\t" .metadata.namespace }}{{- printf "%-35s\t" .metadata.name }}{{- printf "%-20v\t" .status.startTime }}{{- range .spec.containers }}{{- printf "%s " .image }}{{- end }}{{- printf "\n" }}{{- end }}' -
jefflaplante created this gist
Jul 3, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ kubectl get pods -n dev1 -o go-template='{{ range .items }}{{- printf "%-10s\t" .metadata.namespace }}{{- printf "%-35s\t" .metadata.name }}{{- printf "%-20v\t" .status.startTime }}{{- range .spec.containers }}{{- printf "%s " .image }}{{- end }}{{- printf "\n" }}{{- end }}'