Skip to content

KubeLinter errors #5589

@vitorfloriano

Description

@vitorfloriano

I was testing this new tool called KubeLinter to see what it could catch in the Helm charts and manifests in the Kubebuilder repo.

So, I ran it in root and it caught some (actually, quite a lot of) errors.

My question is: should those errors be addressed? Or are they false-positives (non-issues)?

In the case of those being indeed issues that need fix, perhaps KubeLinter could be added to CI, couldn't it?

kube-linter errors

~/go/src/github.com/vitorfloriano/kubebuilder$ kube-linter lint . 
KubeLinter development

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:project control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/cronjob-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/getting-started/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:project control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/book/multiversion-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:project control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/cronjob-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/getting-started/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:project control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/dist/install.yaml: (object: project-system/project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/docs/book/src/multiversion-tutorial/testdata/project/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/manager/manager.yaml: (object: e2e-hdrg-system/e2e-hdrg-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/manager/manager.yaml: (object: e2e-hdrg-system/e2e-hdrg-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/manager/manager.yaml: (object: e2e-hdrg-system/e2e-hdrg-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/test/e2e/v4/e2e-hdrg/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:e2e-hdrg control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/manager/manager.yaml: (object: project-v4-multigroup-system/project-v4-multigroup-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/manager/manager.yaml: (object: project-v4-multigroup-system/project-v4-multigroup-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/manager/manager.yaml: (object: project-v4-multigroup-system/project-v4-multigroup-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:project-v4-multigroup control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/dist/install.yaml: (object: project-v4-multigroup-system/project-v4-multigroup-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/dist/install.yaml: (object: project-v4-multigroup-system/project-v4-multigroup-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-multigroup/dist/install.yaml: (object: project-v4-multigroup-system/project-v4-multigroup-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/manager/manager.yaml: (object: project-v4-with-plugins-system/project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/manager/manager.yaml: (object: project-v4-with-plugins-system/project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/manager/manager.yaml: (object: project-v4-with-plugins-system/project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:project-v4-with-plugins control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/dist/install.yaml: (object: project-v4-with-plugins-system/project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/dist/install.yaml: (object: project-v4-with-plugins-system/project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/dist/install.yaml: (object: project-v4-with-plugins-system/project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4-with-plugins/dist/chart/templates/manager/manager.yaml: (object: default/test-release-project-v4-with-plugins-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/manager/manager.yaml: (object: project-v4-system/project-v4-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/manager/manager.yaml: (object: project-v4-system/project-v4-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/manager/manager.yaml: (object: project-v4-system/project-v4-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) serviceAccount "controller-manager" not found (check: non-existent-service-account, remediation: Create the missing service account, or refer to an existing service account.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/manager/manager.yaml: (object: system/controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/config/webhook/service.yaml: (object: system/webhook-service /v1, Kind=Service) no pods found matching service labels (map[app.kubernetes.io/name:project-v4 control-plane:controller-manager]) (check: dangling-service, remediation: Confirm that your service's selector correctly matches the labels on one of your deployments.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/dist/install.yaml: (object: project-v4-system/project-v4-controller-manager apps/v1, Kind=Deployment) The container "manager" is using an invalid container image, "controller:latest". Please use images that are not blocked by the `BlockList` criteria : [".*:(latest)$" "^[^:]*$" "(.*/[^:]+)$"] (check: latest-tag, remediation: Use a container image with a specific tag other than latest.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/dist/install.yaml: (object: project-v4-system/project-v4-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: liveness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the liveness probe.)

/home/vitor/go/src/github.com/vitorfloriano/kubebuilder/testdata/project-v4/dist/install.yaml: (object: project-v4-system/project-v4-controller-manager apps/v1, Kind=Deployment) container "manager" does not expose port 8081 for the HTTPGet (check: readiness-port, remediation: Check which ports you've exposed and ensure they match what you have specified in the readiness probe.)

Error: found 126 lint errors

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions