kube-lint
kube-lint copied to clipboard
Support for Deployments
Most of our kubernetes specifications are of kind Deployment or Service. Therefore the containers are actually in the deployment yamls.
For example:
kind: Deployment
metadata:
name: heapster
namespace: kube-system
spec:
replicas: 1
template:
metadata:
labels:
task: monitoring
k8s-app: heapster
spec:
containers:
- name: heapster
resources:
limits:
cpu: 100m
memory: 100Mi
requests:
cpu: 100m
memory: 100Mi
image: gcr.io/google_containers/heapster-amd64:v1.3.0-beta.1
imagePullPolicy: IfNotPresent
command:
- /heapster
- --source=kubernetes:https://kubernetes.default
- --sink=influxdb:http://monitoring-influxdb:8086```
This will be next to be implemented for sure. Thanks for the feedback.
Ingress is high up on my list as well.. thanks for the tool @viglesiasce!