Conversation
Terraform Plan OutputClick to expandNo changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration
and found no differences, so no changes are needed. |
Adds declarative Kyverno setup with four security/best-practice policies: - restrict-image-registries: Block images from unapproved registries (Enforce) - require-resource-limits: Block pods without resource limits (Enforce) - disallow-privileged-containers: Block privileged containers (Enforce) - require-probes: Block web services without readiness probes (Enforce) Exclusions for legitimate cases: - System namespaces (kube-system, kyverno, kube-flannel, grafana) - CronJob pods (short-lived) - Background workers (discord bots, pubsub daemons, amqp processors) Includes Helm values for minimal resource footprint on small clusters. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Terraform Plan OutputClick to expandNo changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration
and found no differences, so no changes are needed. |
Use names-based exclusions instead of preconditions for background workers. Preconditions don't support glob patterns, but the names field in exclude does. Excludes: - *-discord-bot-* - *-pubsub-daemon-* - *-amqp-processor-* - *-processor-production-* - *-cleanup-cron-* Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Terraform Plan OutputClick to expandNo changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration
and found no differences, so no changes are needed. |
Remove failurePolicy config that was causing Helm template errors. Use default blocking behavior when Kyverno is unavailable. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Terraform Plan OutputClick to expandNo changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration
and found no differences, so no changes are needed. |
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 characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
restrict-image-registries: Block images from unapproved registries (Enforce mode)require-resource-limits: Warn on missing resource limits (Audit mode)disallow-privileged-containers: Block privileged containers (Enforce mode)require-probes: Warn on missing health probes (Audit mode)Approved Registries
osuakatsuki/*- Application imagesregistry.k8s.io/*- Kubernetes system componentsdocker.io/flannel/*- CNIdocker.io/grafana/*,ghcr.io/grafana/*- Monitoringquay.io/prometheus/*- Monitoringmyoung34/github-runner*- CI runnersphpmyadmin/phpmyadmin*- Database adminInstallation
Test plan
🤖 Generated with Claude Code