kube-lint icon indicating copy to clipboard operation
kube-lint copied to clipboard

Support for Deployments

Open jleonar opened this issue 9 years ago • 2 comments

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```

jleonar avatar Feb 15 '17 12:02 jleonar

This will be next to be implemented for sure. Thanks for the feedback.

viglesiasce avatar Mar 03 '17 21:03 viglesiasce

Ingress is high up on my list as well.. thanks for the tool @viglesiasce!

pieterlange avatar Mar 06 '17 09:03 pieterlange