I hereby claim:
- I am markbnj on github.
- I am markbnj (https://keybase.io/markbnj) on keybase.
- I have a public key ASAurAAcEgjhAvcXHWw1ujCICb_8e98HV3FWERnAIkDu5go
To claim this, I am signing this object:
| get the IP addresses of a pod or pods | |
| kubectl get pods [POD] -o=custom-columns=NAME:.metadata.name,PODIP:.status.podIP | |
| get the name of the node a pod is scheduled on | |
| kubectl get pods [POD] -o=custom-columns=name:.metadata.name,node:.spec.nodeName | |
| get the resource requests and limits for a deployment | |
| kubectl get deployment [DEPLOYMENT] -o go-template --template="{{range .spec.template.spec.containers}}{{printf \"%s %s\n\" .name .resources}}{{end}}" | |
| get pods that have a >0 restart count |
I hereby claim:
To claim this, I am signing this object:
| import json | |
| import os | |
| from bravado_core.spec import Spec | |
| from bravado_core.validate import validate_object | |
| from yaml import load, Loader, dump, Dumper | |
| def validate_car(car): | |
| validate_object(spec, Car, car) |
| import json | |
| import os | |
| import syslog | |
| import validator | |
| from flask import Flask, request, make_response | |
| from jsonschema.exceptions import ValidationError | |
| class BadRequestError(Exception): | |
| """ Signals a malformed request body |
| paths: | |
| /swagger: | |
| get: | |
| summary: Return swagger API specification | |
| description: | | |
| Returns the My Cars API spec as a json swagger doc. | |
| tags: | |
| - Meta | |
| responses: | |
| '200': |
| Car: | |
| type: object | |
| required: | |
| ... | |
| properties: | |
| ... | |
| registration: | |
| $ref: '#/definitions/Registration' |
| definitions: | |
| Registration: | |
| type: object | |
| required: | |
| - state | |
| - plate_number | |
| properties: | |
| state: | |
| type: string | |
| description: Two letter state abbreviation code |
| swagger: '2.0' | |
| info: | |
| title: My Cars API | |
| description: Simple API for demonstrating json validation | |
| version: 1.0.0 | |
| host: localhost | |
| schemes: | |
| - http | |
| produces: | |
| - application/json |
| import threading | |
| from contextlib import closing | |
| import requests | |
| from Queue import Queue | |
| input_file = u"test_input.txt" | |
| def on_download_complete(url, file_name): |
| curl https://raw.githubusercontent.com/docker/docker/master/contrib/check-config.sh | bash | |
| # yes, I know |